]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0QAChecker.cxx
Fixed error with trigger name at method SetInput
[u/mrichter/AliRoot.git] / T0 / AliT0QAChecker.cxx
CommitLineData
c03351ac 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16
17
18
19//...
20// Checks the quality assurance.
21// By comparing with reference data
22// Skeleton for T0
23//...
24
25// --- ROOT system ---
26#include <TClass.h>
27#include <TH1F.h>
28#include <TH1I.h>
29#include <TIterator.h>
30#include <TKey.h>
31#include <TFile.h>
446d6ec4 32#include <TMath.h>
c03351ac 33
34// --- Standard library ---
35
36// --- AliRoot header files ---
37#include "AliLog.h"
38#include "AliQA.h"
39#include "AliQAChecker.h"
40#include "AliT0QAChecker.h"
c724dd64 41#include "iostream.h"
c03351ac 42
43ClassImp(AliT0QAChecker)
44
45//__________________________________________________________________
46AliT0QAChecker& AliT0QAChecker::operator = (const AliT0QAChecker& qac )
47{
48 // Equal operator.
49 this->~AliT0QAChecker();
50 new(this) AliT0QAChecker(qac);
51 return *this;
52}
3685c21c 53//__________________________________________________________________
54
c724dd64 55const Double_t AliT0QAChecker::Check(AliQA::ALITASK_t index,TObjArray * list)
3685c21c 56{
57
58 // Super-basic check on the QA histograms on the input list:
59 // look whether they are empty!
446d6ec4 60
c724dd64 61 cout<<" GetAliTaskName "<<AliQA::GetAliTaskName(index)<<" index "<<index<<endl;
62
63
3685c21c 64 Double_t test = 0.0 ;
65 Int_t count = 0 ;
446d6ec4 66 Double_t nent[100];
67 memset(nent,0,100*sizeof(Double_t));
68 Double_t w[100];
69 memset(w,1.,100*sizeof(Double_t));
c724dd64 70 TH1 *fhRecLEDAmp[24]; TH1 * fhRecQTC[24];
71 TH1 *fhOnlineMean; TH1 * fhRecMean;
72 TString dataType = AliQA::GetAliTaskName(index);
c03351ac 73
3685c21c 74 if (list->GetEntries() == 0){
75 test = 1. ; // nothing to check
3685c21c 76 }
77 else {
446d6ec4 78
3685c21c 79 TIter next(list) ;
80 TH1 * hdata ;
c724dd64 81
3685c21c 82 count = 0 ;
83 while ( (hdata = dynamic_cast<TH1 *>(next())) ) {
84 if (hdata) {
446d6ec4 85 nent[count] = hdata->GetEntries();
c724dd64 86 AliDebug(10,Form("count %i %s -> %f",count, hdata->GetName(),nent[count])) ;
446d6ec4 87
c724dd64 88 if(index==2){
89 if(count>23 && count<48)fhRecLEDAmp[count-24] = hdata;
90 if(count>47 && count<72)fhRecQTC[count-48] = hdata;
91 if(count == 72) fhOnlineMean = hdata;
92 if(count == 73) fhRecMean = hdata;
93 }
94 count++ ;
3685c21c 95 Double_t rv = 0.;
96 if(hdata->GetEntries()>0) rv = 1;
c724dd64 97 // AliInfo(Form("%s -> %f", hdata->GetName(), rv)) ;
3685c21c 98 test += rv ;
c724dd64 99 }
3685c21c 100 else{
101 AliError("Data type cannot be processed") ;
102 }
103
104 }
446d6ec4 105
3685c21c 106 if (count != 0) {
107 if (test==0) {
108 AliWarning("Histograms are there, but they are all empty: setting flag to kWARNING");
109 test = 0.5; //upper limit value to set kWARNING flag for a task
110 }
111 else {
c724dd64 112
113 if(index == 2){
114 if ( TMath::Abs(fhRecMean->GetMean() - fhOnlineMean->GetMean()) > 5)
115 AliWarning(Form("rec mean %f -> online mean %f",fhRecMean->GetMean(), fhOnlineMean->GetMean())) ;
116 Double_t meanLED, meanQTC;
117 for (Int_t idet=0; idet<24; idet++) {
118 meanLED = fhRecLEDAmp[idet]->GetMean();
119 meanQTC = fhRecQTC[idet]->GetMean();
120 if (TMath::Abs(meanLED-meanQTC)> 1.)
121 AliWarning(Form("Amplitude measurements are different in channel %i : Amp LED %f -> Amp QTC %f",idet,meanLED, meanQTC)) ;
122 }
123 }
124 else
446d6ec4 125 {
c724dd64 126 AliDebug(10,Form(" MaxElement %f ", TMath::MaxElement(count,nent)));
127 if(TMath::MaxElement(count,nent) > 1000) {
128 Double_t mean = TMath::Mean(count,nent,w);
129 AliDebug(10,Form(" Mean %f ", mean));
130 for (Int_t i=0; i<count; i++)
131 {
132 Double_t diff = TMath::Abs(nent[i]-mean);
133 if (diff > 0.1*mean )
134 AliWarning(Form("Problem in Number of entried in hist %i is %f\n", i, nent[i])) ;
446d6ec4 135 }
136 }
c724dd64 137 }
3685c21c 138 }
139 }
c724dd64 140 } // if (list->GetEntries() != 0
3685c21c 141 AliInfo(Form("Test Result = %f", test)) ;
142 return test ;
143}