]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliQADataMaker.cxx
Added AddTrackParams() method for convenience + some comments
[u/mrichter/AliRoot.git] / STEER / AliQADataMaker.cxx
... / ...
CommitLineData
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/* $Id$ */
18
19//
20// Base Class
21// Produces the data needed to calculate the quality assurance.
22// All data must be mergeable objects.
23// Y. Schutz CERN July 2007
24//
25
26// --- ROOT system ---
27#include <TSystem.h>
28#include <TFile.h>
29#include <TList.h>
30#include <TTree.h>
31#include <TClonesArray.h>
32#include <TParameter.h>
33#include <TH1K.h>
34#include <TH2C.h>
35#include <TH2D.h>
36#include <TH2F.h>
37#include <TH2I.h>
38#include <TH3C.h>
39#include <TH3D.h>
40#include <TH3F.h>
41#include <TH3I.h>
42#include <TH3S.h>
43
44// --- Standard library ---
45
46// --- AliRoot header files ---
47#include "AliLog.h"
48#include "AliQADataMaker.h"
49#include "AliQAChecker.h"
50#include "AliESDEvent.h"
51#include "AliRawReader.h"
52
53ClassImp(AliQADataMaker)
54
55//____________________________________________________________________________
56AliQADataMaker::AliQADataMaker(const char * name, const char * title) :
57 TNamed(name, title),
58 fOutput(0x0),
59 fDetectorDir(0x0),
60 fDetectorDirName(""),
61 fCurrentCycle(0),
62 fCycle(9999999),
63 fCycleCounter(0),
64 fWriteExpert(kFALSE),
65 fParameterList(new TList*[AliRecoParam::kNSpecies]),
66 fRun(0),
67 fEventSpecie(AliRecoParam::kDefault)
68{
69 // ctor
70 fDetectorDirName = GetName() ;
71 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++)
72 fParameterList[specie] = NULL ;
73}
74
75//____________________________________________________________________________
76AliQADataMaker::AliQADataMaker(const AliQADataMaker& qadm) :
77 TNamed(qadm.GetName(), qadm.GetTitle()),
78 fOutput(qadm.fOutput),
79 fDetectorDir(qadm.fDetectorDir),
80 fDetectorDirName(qadm.fDetectorDirName),
81 fCurrentCycle(qadm.fCurrentCycle),
82 fCycle(qadm.fCycle),
83 fCycleCounter(qadm.fCycleCounter),
84 fWriteExpert(qadm.fWriteExpert),
85 fParameterList(qadm.fParameterList),
86 fRun(qadm.fRun),
87 fEventSpecie(qadm.fEventSpecie)
88{
89 //copy ctor
90 fDetectorDirName = GetName() ;
91}
92
93//____________________________________________________________________________
94Int_t AliQADataMaker::Add2List(TH1 * hist, const Int_t index, TObjArray ** list, const Bool_t expert, const Bool_t saveForCorr)
95{
96 // Set histograms memory resident and add to the list
97 // Maximm allowed is 10000
98
99 Int_t rv = -1 ;
100 TClass * classType = hist->Class() ;
101 TString className(classType->GetName()) ;
102 if( ! className.BeginsWith("T") && ! classType->InheritsFrom("TH1") ) {
103 AliError(Form("QA data Object must be a generic ROOT object and derive fom TH1 and not %s", className.Data())) ;
104 } else if ( index > 10000 ) {
105 AliError("Max number of authorized QA objects is 10000") ;
106 } else {
107 if (expert)
108 hist->SetBit(AliQA::GetExpertBit()) ;
109 TH1 * histClone[AliRecoParam::kNSpecies] ;
110 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
111 histClone[specie] = CloneMe(hist, specie) ;
112 histClone[specie]->SetDirectory(0) ;
113 list[specie]->AddAtAndExpand(histClone[specie], index) ;
114 if(saveForCorr) {
115 char * name = Form("%s_%s", list[AliRecoParam::kDefault]->GetName(), hist->GetName()) ;
116 TParameter<double> * p = new TParameter<double>(name, 9999.9999) ;
117 if ( fParameterList[specie] == NULL )
118 fParameterList[specie] = new TList() ;
119 fParameterList[specie]->Add(p) ;
120 }
121 }
122 rv = list[AliRecoParam::kDefault]->GetLast() ;
123 }
124 delete hist ;
125 return rv ;
126}
127
128//____________________________________________________________________________
129TH1 * AliQADataMaker::CloneMe(TH1 * hist, Int_t specie) const
130{
131 // clones a histogram
132 char * name = Form("%s_%s", AliRecoParam::GetEventSpecieName(specie), hist->GetName()) ;
133 return dynamic_cast<TH1 *>(hist->Clone(name)) ;
134}
135
136//____________________________________________________________________________
137void AliQADataMaker::DefaultEndOfDetectorCycle(AliQA::TASKINDEX_t task)
138{
139 // this method must be oveloaded by detectors
140 // sets the QA result to Fatal
141 AliQA::Instance(AliQA::GetDetIndex(GetName())) ;
142 AliQA * qa = AliQA::Instance(task) ;
143 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++)
144 qa->Set(AliQA::kFATAL, specie) ;
145 AliQA::GetQAResultFile()->cd() ;
146 qa->Write(AliQA::GetQAName(), kWriteDelete) ;
147 AliQA::GetQAResultFile()->Close() ;
148}
149
150//____________________________________________________________________________
151void AliQADataMaker::Finish() const
152{
153 // write to the output File
154 if (fOutput)
155 fOutput->Close() ;
156}
157
158//____________________________________________________________________________
159TObject * AliQADataMaker::GetData(TObjArray ** list, const Int_t index)
160{
161 // Returns the QA object at index. Limit is 100.
162 if ( ! list ) {
163 AliError("Data list is NULL !!") ;
164 return NULL ;
165 }
166 if (list[AliRecoParam::AConvert(fEventSpecie)]) {
167 if ( index > 10000 ) {
168 AliError("Max number of authorized QA objects is 10000") ;
169 return NULL ;
170 } else {
171 Int_t esindex = AliRecoParam::AConvert(fEventSpecie) ;
172 return list[esindex]->At(index) ;
173 }
174 } else {
175 AliError("Data list is NULL !!") ;
176 return NULL ;
177 }
178}