]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0QAChecker.cxx
Fixed a bug in the function MakeRaws
[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 ---
b09247a2 26#include <Riostream.h>
c03351ac 27#include <TClass.h>
28#include <TH1F.h>
29#include <TH1I.h>
30#include <TIterator.h>
31#include <TKey.h>
32#include <TFile.h>
446d6ec4 33#include <TMath.h>
c03351ac 34
35// --- Standard library ---
36
37// --- AliRoot header files ---
38#include "AliLog.h"
39#include "AliQA.h"
40#include "AliQAChecker.h"
41#include "AliT0QAChecker.h"
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
4e67e173 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
5ed41460 64 Double_t test = 10.0 ;
65
3685c21c 66 Int_t count = 0 ;
5ed41460 67 Double_t nent[200], nentraw[200];
68 TString hname[200];
69 const char *cname;
70 memset(nent,0,200*sizeof(Double_t));
71 Double_t w[200];
72 memset(w,1,200*sizeof(Double_t));
c724dd64 73 TH1 *fhRecLEDAmp[24]; TH1 * fhRecQTC[24];
c2337900 74 TH1 *fhOnlineMean = 0x0;
75 TH1 * fhRecMean = 0x0;
c724dd64 76 TString dataType = AliQA::GetAliTaskName(index);
c03351ac 77
3685c21c 78 if (list->GetEntries() == 0){
79 test = 1. ; // nothing to check
3685c21c 80 }
81 else {
446d6ec4 82
3685c21c 83 TIter next(list) ;
84 TH1 * hdata ;
c724dd64 85
3685c21c 86 count = 0 ;
87 while ( (hdata = dynamic_cast<TH1 *>(next())) ) {
88 if (hdata) {
446d6ec4 89 nent[count] = hdata->GetEntries();
5ed41460 90 cname = hdata->GetName();
91 hname[count] = cname;
92 AliDebug(10,Form("count %i %s -> %f",count, hname[count].Data(),nent[count])) ;
93
c724dd64 94 if(index==2){
95 if(count>23 && count<48)fhRecLEDAmp[count-24] = hdata;
96 if(count>47 && count<72)fhRecQTC[count-48] = hdata;
c2337900 97 if(count == 72) fhOnlineMean = hdata;
98 if(count == 73) fhRecMean = hdata;
c724dd64 99 }
5ed41460 100
c724dd64 101 count++ ;
5ed41460 102
3685c21c 103 Double_t rv = 0.;
104 if(hdata->GetEntries()>0) rv = 1;
c724dd64 105 // AliInfo(Form("%s -> %f", hdata->GetName(), rv)) ;
3685c21c 106 test += rv ;
5ed41460 107
c724dd64 108 }
3685c21c 109 else{
110 AliError("Data type cannot be processed") ;
111 }
112
113 }
5ed41460 114
3685c21c 115 if (count != 0) {
116 if (test==0) {
117 AliWarning("Histograms are there, but they are all empty: setting flag to kWARNING");
118 test = 0.5; //upper limit value to set kWARNING flag for a task
119 }
120 else {
c724dd64 121
122 if(index == 2){
123 if ( TMath::Abs(fhRecMean->GetMean() - fhOnlineMean->GetMean()) > 5)
124 AliWarning(Form("rec mean %f -> online mean %f",fhRecMean->GetMean(), fhOnlineMean->GetMean())) ;
125 Double_t meanLED, meanQTC;
126 for (Int_t idet=0; idet<24; idet++) {
127 meanLED = fhRecLEDAmp[idet]->GetMean();
128 meanQTC = fhRecQTC[idet]->GetMean();
129 if (TMath::Abs(meanLED-meanQTC)> 1.)
5ed41460 130 AliWarning(Form("Amplitude measurements are different in channel %i : Amp LED %f -> Amp QTC %f",idet,meanLED, meanQTC)) ;
c724dd64 131 }
132 }
5ed41460 133
134
135 if (index == 0) {
136 Int_t realNumber = Int_t(nent[0]);
137 for (Int_t i=77; i<count; i++)
138 {
139 Double_t diff = TMath::Abs(nent[i]-realNumber);
140 if (diff > 0.1*realNumber )
141 AliWarning(Form("Problem in Number of entried in hist %s is %f\n",hname[i].Data() , nent[i])) ;
142 }
446d6ec4 143 }
3685c21c 144 }
5ed41460 145
3685c21c 146 }
5ed41460 147
148
c724dd64 149 } // if (list->GetEntries() != 0
5ed41460 150
3685c21c 151 AliInfo(Form("Test Result = %f", test)) ;
5ed41460 152
3685c21c 153 return test ;
154}
5ed41460 155