]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliQADataMakerRec.cxx
f862071148782c31906ccd1ee7d4410215cad75c
[u/mrichter/AliRoot.git] / STEER / AliQADataMakerRec.cxx
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 notifce   *
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 for Reconstruction
22 //  All data must be mergeable objects.
23 //  Y. Schutz CERN July 2007
24 //
25
26 // --- ROOT system ---
27 #include <TCanvas.h>
28 #include <TFile.h>
29 #include <TTree.h>
30 #include <TNtupleD.h>
31 #include <TObjArray.h>
32
33 // --- Standard library ---
34
35 // --- AliRoot header files ---
36 #include "AliCDBPath.h"
37 #include "AliCDBEntry.h"
38 #include "AliDetectorRecoParam.h"
39 #include "AliCDBManager.h"
40
41 #include "AliLog.h"
42 #include "AliQADataMakerRec.h"
43 #include "AliESDEvent.h"
44 #include "AliRawReader.h"
45
46 ClassImp(AliQADataMakerRec)
47              
48 //____________________________________________________________________________ 
49 AliQADataMakerRec::AliQADataMakerRec(const char * name, const char * title) : 
50   AliQADataMaker(name, title), 
51   fDigitsQAList(NULL),
52   fESDsQAList(NULL), 
53   fRawsQAList(NULL), 
54   fRecPointsQAList(NULL),
55   fCorrNt(NULL), 
56   fRecoParam(NULL) 
57 {
58   // ctor
59         fDetectorDirName = GetName() ; 
60 }
61
62 //____________________________________________________________________________ 
63 AliQADataMakerRec::AliQADataMakerRec(const AliQADataMakerRec& qadm) :
64   AliQADataMaker(qadm.GetName(), qadm.GetTitle()), 
65   fDigitsQAList(qadm.fDigitsQAList),
66   fESDsQAList(qadm.fESDsQAList),
67   fRawsQAList(qadm.fRawsQAList),
68   fRecPointsQAList(qadm.fRecPointsQAList),
69   fCorrNt(qadm.fCorrNt),  
70   fRecoParam(qadm.fRecoParam) 
71 {
72   //copy ctor
73         SetName(qadm.GetName()) ; 
74         SetTitle(qadm.GetTitle()) ; 
75         fDetectorDirName = GetName() ; 
76 }
77
78 //____________________________________________________________________________ 
79 AliQADataMakerRec::~AliQADataMakerRec()
80 {
81         //dtor: delete the TObjArray and thei content
82         if ( fESDsQAList ) {
83     for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
84       if ( fESDsQAList[specie] ) {
85         if ( fESDsQAList[specie]->IsOwner() ) 
86           fESDsQAList[specie]->Delete() ;     
87       }
88     }
89     delete[] fESDsQAList ;
90         }
91         if ( fRawsQAList ) {
92     for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
93       if ( fRawsQAList[specie] ) {
94         if ( fRawsQAList[specie]->IsOwner() ) 
95           fRawsQAList[specie]->Delete() ;
96       }
97     }
98     delete[] fRawsQAList ;
99   }
100         if ( fDigitsQAList ) {
101     for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
102       if ( fDigitsQAList[specie] ) {
103         if ( fDigitsQAList[specie]->IsOwner() ) 
104           fDigitsQAList[specie]->Delete() ;
105       }
106     }
107                 delete[] fDigitsQAList ; 
108   }
109         if ( fRecPointsQAList ) {
110     for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
111       if ( fRecPointsQAList[specie] ) {
112         if ( fRecPointsQAList[specie]->IsOwner() ) 
113           fRecPointsQAList[specie]->Delete() ;
114       }
115     }
116                 delete[] fRecPointsQAList ; 
117         }
118 }
119
120 //__________________________________________________________________
121 AliQADataMakerRec& AliQADataMakerRec::operator = (const AliQADataMakerRec& qadm )
122 {
123   // Assignment operator.
124   this->~AliQADataMakerRec();
125   new(this) AliQADataMakerRec(qadm);
126   return *this;
127 }
128
129 //____________________________________________________________________________
130 void AliQADataMakerRec::EndOfCycle() 
131 {
132   // Finishes a cycle of QA for all the tasks
133   EndOfCycle(AliQAv1::kRAWS) ; 
134   EndOfCycle(AliQAv1::kDIGITSR) ; 
135   EndOfCycle(AliQAv1::kRECPOINTS) ; 
136   EndOfCycle(AliQAv1::kESDS) ; 
137   ResetCycle() ; 
138 }
139
140 //____________________________________________________________________________
141 void AliQADataMakerRec::EndOfCycle(AliQAv1::TASKINDEX_t task) 
142 {
143         // Finishes a cycle of QA 
144         
145         TObjArray ** list = NULL ; 
146         
147         if ( task == AliQAv1::kRAWS )     
148                 list = fRawsQAList ; 
149         else if ( task == AliQAv1::kDIGITSR ) 
150                 list = fDigitsQAList ; 
151         else if ( task == AliQAv1::kRECPOINTS ) 
152                 list = fRecPointsQAList ; 
153         else if ( task == AliQAv1::kESDS )
154                 list = fESDsQAList ; 
155
156  
157         if ( ! list && ! fCorrNt ) 
158     return ; 
159   //DefaultEndOfDetectorCycle(task) ;
160         EndOfDetectorCycle(task, list) ;
161         TDirectory * subDir = NULL ;
162         if (fDetectorDir) 
163                 subDir = fDetectorDir->GetDirectory(AliQAv1::GetTaskName(task)) ; 
164         if ( subDir ) {
165                 subDir->cd() ; 
166     for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
167       TDirectory * eventSpecieDir = subDir->GetDirectory(AliRecoParam::GetEventSpecieName(specie)) ;
168       if (eventSpecieDir) {
169         eventSpecieDir->cd() ;    
170         if (list[specie]) {
171           TIter next(list[specie]) ; 
172           TObject * obj ; 
173           while( (obj = next()) ) {
174             if (!obj->TestBit(AliQAv1::GetExpertBit()))
175               obj->Write() ;
176           }
177           if (WriteExpert()) {
178             TDirectory * expertDir = eventSpecieDir->GetDirectory(AliQAv1::GetExpert()) ; 
179             if ( expertDir ) { // Write only if requested
180               expertDir->cd() ;
181               next.Reset() ; 
182               while( (obj = next()) ) {
183                 if (!obj->TestBit(AliQAv1::GetExpertBit()))
184                   continue ; 
185                 obj->Write() ;
186               }      
187             }
188           }
189         }
190         if ( !fCorrNt )
191           continue ; 
192         if (fCorrNt[specie] && AliQAv1::GetDetIndex(GetName()) == AliQAv1::kCORR) {
193           eventSpecieDir->cd() ; 
194           fCorrNt[specie]->Write() ; 
195         }
196       }
197     }
198     fOutput->Save() ; 
199         }
200     MakeImage(task) ; 
201 }
202
203 //____________________________________________________________________________ 
204 void AliQADataMakerRec::MakeImage(AliQAv1::TASKINDEX_t task)
205 {
206   // create a drawing of detetor defined histograms
207   TObjArray ** list = NULL ;  
208   switch (task) {
209     case AliQAv1::kRAWS:
210       list = fRawsQAList ; 
211       break;
212     case AliQAv1::kHITS:
213       break;
214     case AliQAv1::kSDIGITS:
215       break;  
216     case AliQAv1::kDIGITS:
217       break;  
218     case AliQAv1::kDIGITSR:
219       list = fDigitsQAList ; 
220       break;  
221     case AliQAv1::kRECPOINTS:
222       list = fRecPointsQAList ; 
223       break;
224     case AliQAv1::kTRACKSEGMENTS:
225       break;
226     case AliQAv1::kRECPARTICLES:
227       break;
228     case AliQAv1::kESDS:
229       list = fESDsQAList ; 
230       break;
231     case AliQAv1::kNTASKINDEX:
232       break;
233     default:
234       break;
235   }
236   if ( !list) {
237     AliError("data not initialized, call AliQADataMaker::Init"); 
238     return ; 
239   }
240   MakeTheImage(list, task, "Rec") ; 
241 }
242
243 //____________________________________________________________________________
244 void AliQADataMakerRec::Exec(AliQAv1::TASKINDEX_t task, TObject * data) 
245
246   // creates the quality assurance data for the various tasks (Hits, SDigits, Digits, ESDs)
247         
248         if ( task == AliQAv1::kRAWS ) {
249                 AliDebug(AliQAv1::GetQADebugLevel(), "Processing Raws QA") ; 
250                 AliRawReader * rawReader = dynamic_cast<AliRawReader *>(data) ; 
251                 if (rawReader) 
252                         MakeRaws(rawReader) ;
253                 else
254       AliDebug(AliQAv1::GetQADebugLevel(), "Raw data are not processed") ;     
255         } else if ( task == AliQAv1::kDIGITSR ) {
256                 AliDebug(AliQAv1::GetQADebugLevel(), "Processing Digits QA") ; 
257                 TTree * tree = dynamic_cast<TTree *>(data) ; 
258                 if (tree) {
259                         MakeDigits(tree) ; 
260                 } else {
261                         AliWarning("data are not a TTree") ; 
262                 }
263         } else if ( task == AliQAv1::kRECPOINTS ) {
264                 AliDebug(AliQAv1::GetQADebugLevel(), "Processing RecPoints QA") ; 
265                 TTree * tree = dynamic_cast<TTree *>(data) ; 
266                 if (tree) {
267                         MakeRecPoints(tree) ; 
268                 } else {
269                         AliWarning("data are not a TTree") ; 
270                 }
271         } else if ( task == AliQAv1::kESDS ) {
272                 AliDebug(AliQAv1::GetQADebugLevel(), "Processing ESDs QA") ; 
273                 AliESDEvent * esd = dynamic_cast<AliESDEvent *>(data) ; 
274                 if (esd) 
275                         MakeESDs(esd) ;
276                 else 
277                         AliError("Wrong type of esd container") ; 
278         }  
279 }
280
281 //____________________________________________________________________________ 
282 TObjArray **  AliQADataMakerRec::Init(AliQAv1::TASKINDEX_t task, Int_t cycles)
283 {
284   // general intialisation
285   InitRecoParams() ;
286         TObjArray ** rv = NULL ; 
287   
288         if (cycles > 0)
289                 SetCycle(cycles) ;  
290         
291         if ( task == AliQAv1::kRAWS ) {
292                 if (! fRawsQAList ) { 
293       fRawsQAList = new TObjArray *[AliRecoParam::kNSpecies] ; 
294       for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
295         fRawsQAList[specie] = new TObjArray(100) ;       
296         fRawsQAList[specie]->SetName(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(task).Data(), AliRecoParam::GetEventSpecieName(specie))) ;
297       }
298                         InitRaws() ;
299                 }
300                 rv = fRawsQAList ;
301         } else if ( task == AliQAv1::kDIGITSR ) {
302                 if ( ! fDigitsQAList ) {
303       fDigitsQAList = new TObjArray *[AliRecoParam::kNSpecies] ; 
304       for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
305         fDigitsQAList[specie] = new TObjArray(100) ; 
306         fDigitsQAList[specie]->SetName(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(task).Data(), AliRecoParam::GetEventSpecieName(specie))) ; 
307       }
308       InitDigits() ;
309                 }
310                 rv = fDigitsQAList ;
311         } else if ( task == AliQAv1::kRECPOINTS ) {
312                 if ( ! fRecPointsQAList ) {
313       fRecPointsQAList = new TObjArray *[AliRecoParam::kNSpecies] ; 
314       for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
315         fRecPointsQAList[specie] = new TObjArray(100) ; 
316         fRecPointsQAList[specie]->SetName(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(task).Data(), AliRecoParam::GetEventSpecieName(specie))) ; 
317       }
318       InitRecPoints() ;
319                 }
320                 rv = fRecPointsQAList ;
321         } else if ( task == AliQAv1::kESDS ) {
322                 if ( ! fESDsQAList ) {
323       fESDsQAList = new TObjArray *[AliRecoParam::kNSpecies] ; 
324       for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
325         fESDsQAList[specie] = new TObjArray(100) ;
326         fESDsQAList[specie]->SetName(Form("%s_%s", GetName(), AliQAv1::GetTaskName(task).Data(), AliRecoParam::GetEventSpecieName(specie))) ; 
327       }
328                         InitESDs() ;
329                 }
330                 rv = fESDsQAList ;
331         }
332         return rv ; 
333 }
334
335 //____________________________________________________________________________ 
336 void AliQADataMakerRec::Init(AliQAv1::TASKINDEX_t task, TObjArray ** list, Int_t run, Int_t cycles)
337 {
338   // Intialisation by passing the list of QA data booked elsewhere
339   
340   InitRecoParams() ;
341   fRun = run ;
342         if (cycles > 0)
343                 SetCycle(cycles) ;  
344         
345         if ( task == AliQAv1::kRAWS ) {
346                 fRawsQAList = list ;     
347         } else if ( task == AliQAv1::kDIGITSR ) {
348                 fDigitsQAList = list ; 
349         } else if ( task == AliQAv1::kRECPOINTS ) {
350                 fRecPointsQAList = list ; 
351         } else if ( task == AliQAv1::kESDS ) {
352                 fESDsQAList = list ; 
353         }
354 }
355
356 //____________________________________________________________________________
357 void AliQADataMakerRec::InitRecoParams() 
358 {
359   if (!fRecoParam) {
360     AliDebug(AliQAv1::GetQADebugLevel(), Form("Loading reconstruction parameter objects for detector %s", GetName()));
361     AliCDBPath path(GetName(),"Calib","RecoParam");
362     AliCDBEntry *entry=AliCDBManager::Instance()->Get(path.GetPath());
363     if(!entry) {
364       fRecoParam = NULL ; 
365       AliWarning(Form("Couldn't find RecoParam entry in OCDB for detector %s",GetName()));
366     }
367     else {
368       TObject * recoParamObj = entry->GetObject() ; 
369       if (dynamic_cast<TObjArray*>(recoParamObj)) {
370         // The detector has only one set of reco parameters
371         AliDebug(AliQAv1::GetQADebugLevel(), Form("Array of reconstruction parameters found for detector %s",GetName()));
372         TObjArray *recoParamArray = dynamic_cast<TObjArray*>(recoParamObj) ;
373         for (Int_t iRP=0; iRP<recoParamArray->GetEntriesFast(); iRP++) {
374           fRecoParam = dynamic_cast<AliDetectorRecoParam*>(recoParamArray->At(iRP)) ;
375           if (fRecoParam->IsDefault()) break;
376         }
377       }
378       else if (dynamic_cast<AliDetectorRecoParam*>(recoParamObj)) {
379         // The detector has only onse set of reco parameters
380         // Registering it in AliRecoParam
381         AliDebug(AliQAv1::GetQADebugLevel(), Form("Single set of reconstruction parameters found for detector %s",GetName()));
382         dynamic_cast<AliDetectorRecoParam*>(recoParamObj)->SetAsDefault();
383         fRecoParam = dynamic_cast<AliDetectorRecoParam*>(recoParamObj) ;
384       } else { 
385         AliError(Form("No valid RecoParam object found in the OCDB for detector %s",GetName()));
386       }
387     }
388     AliCDBManager::Instance()->UnloadFromCache(path.GetPath());
389   }
390 }
391
392 //____________________________________________________________________________
393 void AliQADataMakerRec::StartOfCycle(Int_t run) 
394 {
395   // Finishes a cycle of QA for all the tasks
396   Bool_t samecycle = kFALSE ; 
397   StartOfCycle(AliQAv1::kRAWS,      run, samecycle) ;
398   samecycle = kTRUE ; 
399   StartOfCycle(AliQAv1::kDIGITSR,   run, samecycle) ; 
400   StartOfCycle(AliQAv1::kRECPOINTS, run, samecycle) ; 
401   StartOfCycle(AliQAv1::kESDS,      run, samecycle) ; 
402 }
403
404 //____________________________________________________________________________
405 void AliQADataMakerRec::StartOfCycle(AliQAv1::TASKINDEX_t task, Int_t run, const Bool_t sameCycle) 
406
407   // Finishes a cycle of QA data acquistion
408   if ( run > 0 ) 
409     fRun = run ; 
410         if ( !sameCycle || fCurrentCycle == -1) {
411                 ResetCycle() ;
412                 if (fOutput) 
413                         fOutput->Close() ; 
414                 fOutput = AliQAv1::GetQADataFile(GetName(), fRun) ;     
415         }       
416         AliDebug(AliQAv1::GetQADebugLevel(), Form(" Run %d Cycle %d task %s file %s", 
417                                  fRun, fCurrentCycle, AliQAv1::GetTaskName(task).Data(), fOutput->GetName() )) ;
418
419         fDetectorDir = fOutput->GetDirectory(GetDetectorDirName()) ; 
420         if (!fDetectorDir)
421                 fDetectorDir = fOutput->mkdir(GetDetectorDirName()) ; 
422
423         TDirectory * subDir = fDetectorDir->GetDirectory(AliQAv1::GetTaskName(task)) ; 
424         if (!subDir)
425                 subDir = fDetectorDir->mkdir(AliQAv1::GetTaskName(task)) ;  
426   
427   for ( Int_t specie = AliRecoParam::kDefault ; specie < AliRecoParam::kNSpecies ; specie++ ) {
428     TDirectory * eventSpecieDir = subDir->GetDirectory(AliRecoParam::GetEventSpecieName(specie)) ; 
429     if (!eventSpecieDir) 
430       eventSpecieDir = subDir->mkdir(AliRecoParam::GetEventSpecieName(specie)) ; 
431     TDirectory * expertDir = eventSpecieDir->GetDirectory(AliQAv1::GetExpert()) ; 
432     if (!expertDir)
433       expertDir = eventSpecieDir->mkdir(AliQAv1::GetExpert()) ; 
434   } 
435         StartOfDetectorCycle() ; 
436 }