Salome HOME
Add preprocess feature.
[tools/libbatch.git] / src / SGE / BatchManager_SGE.cxx
index 3eee6b43ecbd2f13042da196b067531ea1b640b1..f89e2fb2e4e8c7f0074a6522065dce80357c3742 100644 (file)
@@ -72,7 +72,7 @@ namespace Batch {
   }
 
   // Methode pour le controle des jobs : soumet un job au gestionnaire
-  const JobId BatchManager_SGE::submitJob(const Job & job)
+  const JobId BatchManager_SGE::runJob(const Job & job)
   {
     Parametre params = job.getParametre();
     const std::string workDir = params[WORKDIR];
@@ -81,9 +81,6 @@ namespace Batch {
     string::size_type p2 = fileToExecute.find_last_of(".");
     std::string fileNameToExecute = fileToExecute.substr(p1+1,p2-p1-1);
 
-    // export input files on cluster
-    exportInputFiles(job);
-
     // build batch script for job
     buildBatchScript(job);