Salome HOME
Add preprocess feature.
[tools/libbatch.git] / src / CCC / BatchManager_CCC.cxx
index d2f05d2b66caefa0b19b98dfed17f2ce1e223196..03912ba82470b1d0fc0d402e4986b1500c3e8310 100644 (file)
@@ -73,7 +73,7 @@ namespace Batch {
   }
 
   // Methode pour le controle des jobs : soumet un job au gestionnaire
-  const JobId BatchManager_CCC::submitJob(const Job & job)
+  const JobId BatchManager_CCC::runJob(const Job & job)
   {
     Parametre params = job.getParametre();
     const std::string workDir = params[WORKDIR];
@@ -82,10 +82,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
-    LOG("Export des fichiers en entree");
-    exportInputFiles(job);
-
     // build batch script for job
     LOG("Construction du script de batch");
     buildBatchScript(job);