]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
12-oct-2005 NvE CleanTasks() invoked before execution of sub-tasks in IceConvert...
authornick <nick@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 12 Oct 2005 10:25:33 +0000 (10:25 +0000)
committernick <nick@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 12 Oct 2005 10:25:33 +0000 (10:25 +0000)
                to ensure proper execution of all the sub-tasks for each new event.

RALICE/icepack/iceconvert/IceCal2Root.cxx
RALICE/icepack/iceconvert/IceF2k.cxx
RALICE/icepack/iceconvert/history.txt

index 29f4463e6431d67e0e4d012f4fcc0a3187567d97..13ea8b933933a3ea6321123d09ddd796e25b6629 100644 (file)
@@ -291,6 +291,7 @@ void IceCal2Root::Exec(Option_t* opt)
  GetCalibData();
 
  // Invoke all available sub-tasks (if any)
+ CleanTasks();
  ExecuteTasks(opt);
 
  // Write the datastructures to the output file
index bb1291703d371b51c9c883f1997f052173102a4e..c2a86b6ebc86e8015366bd443f98a897c186e95f 100644 (file)
@@ -320,6 +320,7 @@ void IceF2k::Exec(Option_t* opt)
   PutHits();
 
   // Invoke all available sub-tasks (if any)
+  CleanTasks();
   ExecuteTasks(opt);
 
   if (fPrintfreq)
index e3abadefe4d919339261fda3fa9317e92fd3f0e2..f1687a7a3aecbdb11ca6882dbac1ae112f7c5827 100644 (file)
@@ -31,4 +31,6 @@
                 to stay in line with the F2K data structures.
                 Also ADC dependent LE (de)calibration parameter set to 1e20 in IceF2k
                 for adc<=0 values. This setting eliminates the ADC dependent TDC correction.
+12-oct-2005 NvE CleanTasks() invoked before execution of sub-tasks in IceConvert and IceCalibrate
+                to ensure proper execution of all the sub-tasks for each new event.