From 0f46609e2b2d6bba7f0840259e5c1a82e744c4c2 Mon Sep 17 00:00:00 2001 From: dibari Date: Fri, 1 Aug 2008 15:54:46 +0000 Subject: [PATCH] Minimum number of entries in Checker --- HMPID/AliHMPIDQAChecker.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/HMPID/AliHMPIDQAChecker.cxx b/HMPID/AliHMPIDQAChecker.cxx index e51cfee8922..e5f98542d61 100644 --- a/HMPID/AliHMPIDQAChecker.cxx +++ b/HMPID/AliHMPIDQAChecker.cxx @@ -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(next())) ) { - if( histo->GetEntries() == 0 ) counter++; + if( histo->GetEntries() < 3 ) counter++; else { TString h = histo->GetTitle(); if(h.Contains("Zoom")){ -- 2.39.3