removed reset of histograms in StartOfCycle (Online request)
authorschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 27 Mar 2008 11:46:31 +0000 (11:46 +0000)
committerschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 27 Mar 2008 11:46:31 +0000 (11:46 +0000)
STEER/AliQADataMakerRec.cxx
STEER/AliQADataMakerSim.cxx

index e2a2d6164ca220371063460ae8253196c7628c07..daf57da567ea3f0673b41dc57e606418a7c48c9a 100644 (file)
@@ -203,11 +203,12 @@ void AliQADataMakerRec::StartOfCycle(AliQA::TASKINDEX_t task, const Bool_t sameC
          list = fRecPointsQAList ;
   else if ( task == AliQA::kESDS )  
          list = fESDsQAList ;
-
-       TIter next(list) ;
-       TH1 * h ; 
-       while ( (h = dynamic_cast<TH1 *>(next())) )
-               h->Reset() ;  
+       
+// Should be the choice of detectors
+//     TIter next(list) ;
+//     TH1 * h ; 
+//     while ( (h = dynamic_cast<TH1 *>(next())) )
+//             h->Reset() ;  
 
        StartOfDetectorCycle() ; 
 }
index b601caeb742c8381d9eec2d87cdcc271c52f34b6..2174f24f258dff5cbdd2a2e40354a7c3d8dfc7de 100644 (file)
@@ -210,11 +210,12 @@ void AliQADataMakerSim::StartOfCycle(AliQA::TASKINDEX_t task, const Bool_t sameC
                list = fSDigitsQAList ;
        else  if ( task == AliQA::kDIGITS ) 
                list = fDigitsQAList ;
-
-       TIter next(list) ;
-       TH1 * h ; 
-       while ( (h = dynamic_cast<TH1 *>(next())) )
-               h->Reset() ;  
-
+       
+// Should be the choice of detectors
+//     TIter next(list) ;
+//     TH1 * h ; 
+//     while ( (h = dynamic_cast<TH1 *>(next())) )
+//             h->Reset() ;  
+//
        StartOfDetectorCycle() ; 
 }