[cig-commits] r6726 - cs/pythia/trunk/mpi

leif at geodynamics.org leif at geodynamics.org
Fri Apr 27 23:48:28 PDT 2007


Author: leif
Date: 2007-04-27 23:48:27 -0700 (Fri, 27 Apr 2007)
New Revision: 6726

Modified:
   cs/pythia/trunk/mpi/Application.py
Log:
Renamed some methods to avoid name conflict with CitcomS ('launch').


Modified: cs/pythia/trunk/mpi/Application.py
===================================================================
--- cs/pythia/trunk/mpi/Application.py	2007-04-28 01:15:44 UTC (rev 6725)
+++ cs/pythia/trunk/mpi/Application.py	2007-04-28 06:48:27 UTC (rev 6726)
@@ -36,10 +36,10 @@
 
 
     def onLoginNode(self, *args, **kwds):
-        self.schedule(*args, **kwds)
+        self.scheduleJob(*args, **kwds)
 
 
-    def schedule(self, *args, **kwds):
+    def scheduleJob(self, *args, **kwds):
         import sys
         
         path = self.pathString()
@@ -91,10 +91,10 @@
 
 
     def onLauncherNode(self, *args, **kwds):
-        self.launch(*args, **kwds)
+        self.launchParallelRun(*args, **kwds)
 
 
-    def launch(self, *args, **kwds):
+    def launchParallelRun(self, *args, **kwds):
 
         argv = self.getArgv(*args, **kwds)
         launcher = self.prepareLauncher(argv)



More information about the cig-commits mailing list