]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Remove code to dump Job IDs and stages until merged into trunk of AliAnalysisAlien
authorcholm <cholm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 26 Jan 2013 23:08:37 +0000 (23:08 +0000)
committercholm <cholm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 26 Jan 2013 23:08:37 +0000 (23:08 +0000)
PWGLF/FORWARD/trains/GridHelper.C
PWGLF/FORWARD/trains/GridTerminate.C

index 24e9b6aa6291efb9a3a35fab7698c069d3907816..67c2f9af1e7fce485082a5aba92ee5f9c3e850e5 100644 (file)
@@ -445,6 +445,7 @@ struct GridHelper : public PluginHelper
     if (nEvents == 0) return 0;
     Long64_t ret = mgr->StartAnalysis("grid", nEvents);
 
+#if 0
     std::ofstream outJobs(Form("%s.jobid", mgr->GetName()));
     //outJobs << fHandler->GetGridJobIDs() << std::endl;
     outJobs.close();
@@ -452,7 +453,7 @@ struct GridHelper : public PluginHelper
     std::ofstream outStages(Form("%s.stage", mgr->GetName()));
    // outStages << fHandler->GetGridStages() << std::endl;
     outStages.close();
-
+#endif
     return ret;
   }
   /** 
index 7c5fa1e3d7afdf97e1a58ae3b81cfa0531117d88..ee240f33da1b8529a8f532945a3e2e38f8af34ec 100644 (file)
@@ -175,6 +175,7 @@ Bool_t GridTerminate(const TString& name,
   Info("GridTerminate","Starting terminate job");
   if (mgr->StartAnalysis("grid") < 0) return false;
 
+#if 0
   std::ofstream outJobs(Form("%s_merge.jobid", mgr->GetName()));
   outJobs << handler->GetGridJobIDs() << std::endl;
   outJobs.close();
@@ -182,7 +183,7 @@ Bool_t GridTerminate(const TString& name,
   std::ofstream outStages(Form("%s_merge.stage", mgr->GetName()));
   outStages << handler->GetGridStages() << std::endl;
   outStages.close();
-
+#endif
 
   return true;
 }