]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Minimum number of entries in Checker
authordibari <dibari@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 1 Aug 2008 15:54:46 +0000 (15:54 +0000)
committerdibari <dibari@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 1 Aug 2008 15:54:46 +0000 (15:54 +0000)
HMPID/AliHMPIDQAChecker.cxx

index e51cfee89223fb4369d6ec69504e31b2b06b3c8a..e5f98542d61570f85a980b73340b30c0776e39d8 100644 (file)
@@ -119,6 +119,9 @@ Double_t AliHMPIDQAChecker::CheckEntries(TObjArray * list) const
 
 Double_t AliHMPIDQAChecker::CheckRecPoints(TObjArray *listrec, TObjArray *listref) const
 {
+  //
+  //  check on the HMPID RecPoints by using expo fit and Kolmogorov Test: 
+  // 
 
    Float_t checkresponse = 0;
 
@@ -126,7 +129,7 @@ Double_t AliHMPIDQAChecker::CheckRecPoints(TObjArray *listrec, TObjArray *listre
    TIter next(listrec) ;
    TH1* histo;
    while ( (histo = dynamic_cast<TH1 *>(next())) ) {
-   if( histo->GetEntries() == 0 ) counter++;
+   if( histo->GetEntries() < 3 ) counter++;
    else {
     TString h = histo->GetTitle();
     if(h.Contains("Zoom")){