]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliQADataMakerSim.cxx
Fix for Savannah bug report 59287
[u/mrichter/AliRoot.git] / STEER / AliQADataMakerSim.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 <TFile.h>
28#include <TTree.h>
29#include <TClonesArray.h>
30
31// --- Standard library ---
32
33// --- AliRoot header files ---
34#include "AliLog.h"
35#include "AliQADataMakerSim.h"
36
37ClassImp(AliQADataMakerSim)
38
39//____________________________________________________________________________
40AliQADataMakerSim::AliQADataMakerSim(const char * name, const char * title) :
41 AliQADataMaker(name, title),
42 fDigitsQAList(NULL),
43 fHitsQAList(NULL),
44 fSDigitsQAList(NULL),
45 fHitsArray(NULL),
46 fSDigitsArray(NULL)
47{
48 // ctor
49 fDetectorDirName = GetName() ;
50}
51
52//____________________________________________________________________________
53AliQADataMakerSim::AliQADataMakerSim(const AliQADataMakerSim& qadm) :
54 AliQADataMaker(qadm.GetName(), qadm.GetTitle()),
55 fDigitsQAList(qadm.fDigitsQAList),
56 fHitsQAList(qadm.fHitsQAList),
57 fSDigitsQAList(qadm.fSDigitsQAList),
58 fHitsArray(NULL),
59 fSDigitsArray(NULL)
60{
61 //copy ctor
62 fDetectorDirName = GetName() ;
63}
64
65//____________________________________________________________________________
66AliQADataMakerSim::~AliQADataMakerSim()
67{
68 //dtor: delete the TObjArray and thei content
69 if ( fDigitsQAList ) {
70 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
71 if ( fDigitsQAList[specie]->IsOwner() )
72 fDigitsQAList[specie]->Delete() ;
73 }
74 delete[] fDigitsQAList ;
75 }
76 if ( fHitsQAList ) {
77 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
78 if ( fHitsQAList[specie]->IsOwner() )
79 fHitsQAList[specie]->Delete() ;
80 }
81 delete[] fHitsQAList ;
82 }
83 if ( fSDigitsQAList ) {
84 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
85 if ( fSDigitsQAList[specie]->IsOwner() )
86 fSDigitsQAList[specie]->Delete() ;
87 }
88 delete[] fSDigitsQAList ;
89 }
90 if (fHitsArray) {
91 fHitsArray->Clear() ;
92 delete fHitsArray ;
93 }
94 if (fSDigitsArray) {
95 fSDigitsArray->Clear() ;
96 delete fSDigitsArray ;
97 }
98}
99
100//__________________________________________________________________
101AliQADataMakerSim& AliQADataMakerSim::operator = (const AliQADataMakerSim& qadm )
102{
103 // Assignment operator.
104 this->~AliQADataMakerSim();
105 new(this) AliQADataMakerSim(qadm);
106 return *this;
107}
108
109//____________________________________________________________________________
110void AliQADataMakerSim::EndOfCycle()
111{
112 // Finishes a cycle of QA for all tasks
113 EndOfCycle(AliQAv1::kHITS) ;
114 EndOfCycle(AliQAv1::kSDIGITS) ;
115 EndOfCycle(AliQAv1::kDIGITS) ;
116 ResetCycle() ;
117}
118
119//____________________________________________________________________________
120void AliQADataMakerSim::EndOfCycle(AliQAv1::TASKINDEX_t task)
121{
122 // Finishes a cycle of QA data acquistion
123 TObjArray ** list = NULL ;
124
125 if ( task == AliQAv1::kHITS )
126 list = fHitsQAList ;
127 else if ( task == AliQAv1::kSDIGITS )
128 list = fSDigitsQAList ;
129 else if ( task == AliQAv1::kDIGITS )
130 list = fDigitsQAList ;
131
132 if ( ! list )
133 return ;
134 EndOfDetectorCycle(task, list) ;
135 fDetectorDir = fOutput->GetDirectory(GetDetectorDirName()) ;
136 if (!fDetectorDir)
137 fDetectorDir = fOutput->mkdir(GetDetectorDirName()) ;
138 TDirectory * subDir = fDetectorDir->GetDirectory(AliQAv1::GetTaskName(task)) ;
139 if (!subDir)
140 subDir = fDetectorDir->mkdir(AliQAv1::GetTaskName(task)) ;
141 subDir->cd() ;
142 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
143 if (! AliQAv1::Instance(AliQAv1::GetDetIndex(GetName()))->IsEventSpecieSet(AliRecoParam::ConvertIndex(specie)) )
144 continue ;
145 if (list[specie]->GetEntries() != 0 ) {
146 TDirectory * eventSpecieDir = subDir->GetDirectory(AliRecoParam::GetEventSpecieName(specie)) ;
147 if (!eventSpecieDir)
148 eventSpecieDir = subDir->mkdir(AliRecoParam::GetEventSpecieName(specie)) ;
149 eventSpecieDir->cd() ;
150 TIter next(list[specie]) ;
151 TObject * obj ;
152 while ( (obj = next()) ) {
153 if (!obj->TestBit(AliQAv1::GetExpertBit()))
154 obj->Write() ;
155 }
156 if (WriteExpert()) {
157 TDirectory * expertDir = eventSpecieDir->GetDirectory(AliQAv1::GetExpert()) ;
158 if (!expertDir)
159 expertDir = eventSpecieDir->mkdir(AliQAv1::GetExpert()) ;
160 expertDir->cd() ;
161 next.Reset() ;
162 while ( (obj = next()) ) {
163 if (!obj->TestBit(AliQAv1::GetExpertBit()))
164 continue ;
165 obj->Write() ;
166 }
167 }
168 }
169 fOutput->Save() ;
170 }
171}
172
173//____________________________________________________________________________
174void AliQADataMakerSim::Exec(AliQAv1::TASKINDEX_t task, TObject * data)
175{
176 // creates the quality assurance data for the various tasks (Hits, SDigits, Digits, ESDs)
177
178 if ( task == AliQAv1::kHITS ) {
179 AliDebug(AliQAv1::GetQADebugLevel(), "Processing Hits QA") ;
180 if (strcmp(data->ClassName(), "TClonesArray") == 0) {
181 fHitsArray = static_cast<TClonesArray *>(data) ;
182 MakeHits() ;
183 } else if (strcmp(data->ClassName(), "TTree") == 0) {
184 TTree * tree = static_cast<TTree *>(data) ;
185 MakeHits(tree) ;
186 } else {
187 AliWarning("data are neither a TClonesArray nor a TTree") ;
188 }
189 } else if ( task == AliQAv1::kSDIGITS ) {
190 AliDebug(AliQAv1::GetQADebugLevel(), "Processing SDigits QA") ;
191 if (strcmp(data->ClassName(), "TClonesArray") == 0) {
192 fSDigitsArray = static_cast<TClonesArray *>(data) ;
193 MakeSDigits() ;
194 } else if (strcmp(data->ClassName(), "TTree") == 0) {
195 TTree * tree = static_cast<TTree *>(data) ;
196 MakeSDigits(tree) ;
197 } else {
198 AliWarning("data are neither a TClonesArray nor a TTree") ;
199 }
200 } else if ( task == AliQAv1::kDIGITS ) {
201 AliDebug(AliQAv1::GetQADebugLevel(), "Processing Digits QA") ;
202 if (strcmp(data->ClassName(), "TClonesArray") == 0) {
203 fDigitsArray = static_cast<TClonesArray *>(data) ;
204 MakeDigits() ;
205 } else if (strcmp(data->ClassName(), "TTree") == 0) {
206 TTree * tree = static_cast<TTree *>(data) ;
207 MakeDigits(tree) ;
208 } else {
209 AliWarning("data are neither a TClonesArray nor a TTree") ;
210 }
211 }
212}
213
214//____________________________________________________________________________
215TObjArray ** AliQADataMakerSim::Init(AliQAv1::TASKINDEX_t task, Int_t cycles)
216{
217 // general intialisation
218
219 if (cycles > 0)
220 SetCycle(cycles) ;
221 TObjArray ** rv = NULL ;
222 if ( task == AliQAv1::kHITS ) {
223 if ( ! fHitsQAList ) {
224 fHitsQAList = new TObjArray *[AliRecoParam::kNSpecies] ;
225 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
226 fHitsQAList[specie] = new TObjArray(AliQAv1::GetMaxQAObj()) ;
227 fHitsQAList[specie]->SetName(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(task).Data(), AliRecoParam::GetEventSpecieName(specie))) ;
228 }
229 }
230 rv = fHitsQAList ;
231 } else if ( task == AliQAv1::kSDIGITS ) {
232 if ( ! fSDigitsQAList ) {
233 fSDigitsQAList = new TObjArray *[AliRecoParam::kNSpecies] ;
234 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
235 fSDigitsQAList[specie] = new TObjArray(AliQAv1::GetMaxQAObj()) ;
236 fSDigitsQAList[specie]->SetName(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(task).Data(), AliRecoParam::GetEventSpecieName(specie))) ;
237 }
238 }
239 rv = fSDigitsQAList ;
240 } else if ( task == AliQAv1::kDIGITS ) {
241 if ( ! fDigitsQAList ) {
242 fDigitsQAList = new TObjArray *[AliRecoParam::kNSpecies] ;
243 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
244 fDigitsQAList[specie] = new TObjArray(AliQAv1::GetMaxQAObj()) ;
245 fDigitsQAList[specie]->SetName(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(task).Data(), AliRecoParam::GetEventSpecieName(specie))) ;
246 }
247 }
248 rv = fDigitsQAList ;
249 }
250
251 return rv ;
252}
253
254//____________________________________________________________________________
255void AliQADataMakerSim::Init(AliQAv1::TASKINDEX_t task, TObjArray ** list, Int_t run, Int_t cycles)
256{
257 // Intialisation by passing the list of QA data booked elsewhere
258
259 fRun = run ;
260 if (cycles > 0)
261 SetCycle(cycles) ;
262
263 if ( task == AliQAv1::kHITS ) {
264 fHitsQAList = list ;
265 } else if ( task == AliQAv1::kSDIGITS) {
266 fSDigitsQAList = list ;
267 } else if ( task == AliQAv1::kDIGITS ) {
268 fDigitsQAList = list ;
269 }
270}
271
272//____________________________________________________________________________
273void AliQADataMakerSim::StartOfCycle(Int_t run)
274{
275 // Finishes a cycle of QA for all tasks
276 Bool_t samecycle = kFALSE ;
277 StartOfCycle(AliQAv1::kHITS, run, samecycle) ;
278 samecycle = kTRUE ;
279 StartOfCycle(AliQAv1::kSDIGITS, run, samecycle) ;
280 StartOfCycle(AliQAv1::kDIGITS, run, samecycle) ;
281}
282
283//____________________________________________________________________________
284void AliQADataMakerSim::StartOfCycle(AliQAv1::TASKINDEX_t task, Int_t run, const Bool_t sameCycle)
285{
286 // Finishes a cycle of QA data acquistion
287 if ( run > 0 )
288 fRun = run ;
289 if ( !sameCycle || fCurrentCycle == -1) {
290 ResetCycle() ;
291 if (fOutput)
292 fOutput->Close() ;
293 fOutput = AliQAv1::GetQADataFile(GetName(), fRun) ;
294 }
295
296 AliDebug(AliQAv1::GetQADebugLevel(), Form(" Run %d Cycle %d task %s file %s",
297 fRun, fCurrentCycle, AliQAv1::GetTaskName(task).Data(), fOutput->GetName() )) ;
298
299 //fDetectorDir = fOutput->GetDirectory(GetDetectorDirName()) ;
300// if (!fDetectorDir)
301// fDetectorDir = fOutput->mkdir(GetDetectorDirName()) ;
302//
303// TDirectory * subDir = fDetectorDir->GetDirectory(AliQAv1::GetTaskName(task)) ;
304// if (!subDir)
305// subDir = fDetectorDir->mkdir(AliQAv1::GetTaskName(task)) ;
306//
307// for ( Int_t index = AliRecoParam::kDefault ; index < AliRecoParam::kNSpecies ; index++ ) {
308// TDirectory * eventSpecieDir = subDir->GetDirectory(AliRecoParam::GetEventSpecieName(index)) ;
309// if (!eventSpecieDir)
310// eventSpecieDir = subDir->mkdir(AliRecoParam::GetEventSpecieName(index)) ;
311// TDirectory * expertDir = eventSpecieDir->GetDirectory(AliQAv1::GetExpert()) ;
312// if (!expertDir)
313// expertDir = eventSpecieDir->mkdir(AliQAv1::GetExpert()) ;
314// }
315 StartOfDetectorCycle() ;
316}