From: nick Date: Wed, 12 Oct 2005 10:25:33 +0000 (+0000) Subject: 12-oct-2005 NvE CleanTasks() invoked before execution of sub-tasks in IceConvert... X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=225085baee562b354b1447ddbcd0a8d137011ae1;hp=d6dd7a27c2f3cfc1cabf57c05d8a1219484b808f 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. --- diff --git a/RALICE/icepack/iceconvert/IceCal2Root.cxx b/RALICE/icepack/iceconvert/IceCal2Root.cxx index 29f4463e643..13ea8b93393 100644 --- a/RALICE/icepack/iceconvert/IceCal2Root.cxx +++ b/RALICE/icepack/iceconvert/IceCal2Root.cxx @@ -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 diff --git a/RALICE/icepack/iceconvert/IceF2k.cxx b/RALICE/icepack/iceconvert/IceF2k.cxx index bb1291703d3..c2a86b6ebc8 100644 --- a/RALICE/icepack/iceconvert/IceF2k.cxx +++ b/RALICE/icepack/iceconvert/IceF2k.cxx @@ -320,6 +320,7 @@ void IceF2k::Exec(Option_t* opt) PutHits(); // Invoke all available sub-tasks (if any) + CleanTasks(); ExecuteTasks(opt); if (fPrintfreq) diff --git a/RALICE/icepack/iceconvert/history.txt b/RALICE/icepack/iceconvert/history.txt index e3abadefe4d..f1687a7a3ae 100644 --- a/RALICE/icepack/iceconvert/history.txt +++ b/RALICE/icepack/iceconvert/history.txt @@ -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.