]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQADataMakerRec.cxx
No optimization with gcc 4.3.0
[u/mrichter/AliRoot.git] / ITS / AliITSQADataMakerRec.cxx
CommitLineData
04236e67 1/**************************************************************************
2 * Copyright(c) 2007-2009, 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/* $Id$ */
17
18// *************************************************************
19// Checks the quality assurance
20// by comparing with reference data
21// contained in a DB
22// -------------------------------------------------------------
8c823e5a 23// W. Ferrarese + P. Cerello Feb 2008
04236e67 24// INFN Torino
25
26// --- ROOT system ---
04236e67 27#include <TTree.h>
04236e67 28// --- Standard library ---
29
30// --- AliRoot header files ---
31#include "AliITSQADataMakerRec.h"
8c823e5a 32#include "AliITSQASPDDataMakerRec.h"
33#include "AliITSQASDDDataMakerRec.h"
34#include "AliITSQASSDDataMakerRec.h"
04236e67 35#include "AliLog.h"
36#include "AliQA.h"
37#include "AliQAChecker.h"
c71529b0 38#include "AliITSQAChecker.h"
04236e67 39#include "AliRawReader.h"
04236e67 40
41ClassImp(AliITSQADataMakerRec)
42
43//____________________________________________________________________________
8c823e5a 44AliITSQADataMakerRec::AliITSQADataMakerRec(Bool_t kMode, Short_t subDet, Short_t ldc) :
45AliQADataMakerRec(AliQA::GetDetName(AliQA::kITS), "ITS Quality Assurance Data Maker"),
1aa7c4f5 46fkOnline(kMode),
8c823e5a 47fSubDetector(subDet),
1aa7c4f5 48fLDC(ldc),
8c823e5a 49fSPDDataMaker(NULL),
50fSDDDataMaker(NULL),
51fSSDDataMaker(NULL)
1aa7c4f5 52{
1aa7c4f5 53 //ctor used to discriminate OnLine-Offline analysis
8c823e5a 54 if(fSubDetector < 0 || fSubDetector > 3) {
55 AliError("Error: fSubDetector number out of range; return\n");
56 }
57
58 // Initialization for RAW data
59 if(fSubDetector == 0 || fSubDetector == 1) {
60 AliDebug(1,"AliITSQADM::Create SPD DataMakerRec\n");
61 fSPDDataMaker = new AliITSQASPDDataMakerRec(this,fkOnline);
62 }
63 if(fSubDetector == 0 || fSubDetector == 2) {
64 AliDebug(1,"AliITSQADM::Create SDD DataMakerRec\n");
65 fSDDDataMaker = new AliITSQASDDDataMakerRec(this,fkOnline);
66 }
67 if(fSubDetector == 0 || fSubDetector == 3) {
68 AliDebug(1,"AliITSQADM::Create SSD DataMakerRec\n");
69 fSSDDataMaker = new AliITSQASSDDataMakerRec(this,fkOnline);
70 }
1aa7c4f5 71}
72
04236e67 73//____________________________________________________________________________
8c823e5a 74AliITSQADataMakerRec::~AliITSQADataMakerRec(){
75 // destructor
76 if(fSPDDataMaker)delete fSPDDataMaker;
77 if(fSDDDataMaker)delete fSDDDataMaker;
78 if(fSSDDataMaker)delete fSSDDataMaker;
04236e67 79}
80
81//____________________________________________________________________________
82AliITSQADataMakerRec::AliITSQADataMakerRec(const AliITSQADataMakerRec& qadm) :
8c823e5a 83AliQADataMakerRec(),
9db10425 84fkOnline(qadm.fkOnline),
8c823e5a 85fSubDetector(qadm.fSubDetector),
9db10425 86fLDC(qadm.fLDC),
8c823e5a 87fSPDDataMaker(NULL),
88fSDDDataMaker(NULL),
89fSSDDataMaker(NULL)
04236e67 90{
91 //copy ctor
92 SetName((const char*)qadm.GetName()) ;
8c823e5a 93 SetTitle((const char*)qadm.GetTitle());
04236e67 94}
95
96//__________________________________________________________________
97AliITSQADataMakerRec& AliITSQADataMakerRec::operator = (const AliITSQADataMakerRec& qac )
98{
99 // Equal operator.
100 this->~AliITSQADataMakerRec();
101 new(this) AliITSQADataMakerRec(qac);
102 return *this;
103}
104
105//____________________________________________________________________________
8c823e5a 106void AliITSQADataMakerRec::StartOfDetectorCycle()
04236e67 107{
108 //Detector specific actions at start of cycle
109 AliDebug(1,"AliITSQADM::Start of ITS Cycle\n");
8c823e5a 110 if(fSubDetector == 0 || fSubDetector == 1) fSPDDataMaker->StartOfDetectorCycle();
111 if(fSubDetector == 0 || fSubDetector == 2) fSDDDataMaker->StartOfDetectorCycle();
112 if(fSubDetector == 0 || fSubDetector == 3) fSSDDataMaker->StartOfDetectorCycle();
04236e67 113}
114
115//____________________________________________________________________________
92a357bf 116void AliITSQADataMakerRec::EndOfDetectorCycle(AliQA::TASKINDEX_t task, TObjArray* list)
04236e67 117{
118 // launch the QA checking
119 AliDebug(1,"AliITSDM instantiates checker with Run(AliQA::kITS, task, list)\n");
8c823e5a 120 if(fSubDetector == 0 || fSubDetector == 1) fSPDDataMaker->EndOfDetectorCycle(task, list);
121 if(fSubDetector == 0 || fSubDetector == 2) fSDDDataMaker->EndOfDetectorCycle(task, list);
122 if(fSubDetector == 0 || fSubDetector == 3) fSSDDataMaker->EndOfDetectorCycle(task, list);
04236e67 123
c71529b0 124 AliQAChecker *qac = AliQAChecker::Instance();
125 AliITSQAChecker *qacb = (AliITSQAChecker *) qac->GetDetQAChecker(0);
126 qacb->SetTaskOffset(fSPDDataMaker->GetOffset(), fSDDDataMaker->GetOffset(), fSSDDataMaker->GetOffset()); //Setting the offset for the QAChecker list
127 qac->Run( AliQA::kITS , task, list); //temporary skipping the checking
04236e67 128}
129
130//____________________________________________________________________________
8c823e5a 131void AliITSQADataMakerRec::EndOfDetectorCycle(const char * /*fgDataName*/)
04236e67 132{
8c823e5a 133 //eventually used for different AliQAChecker::Instance()->Run
04236e67 134}
135
136//____________________________________________________________________________
137void AliITSQADataMakerRec::InitRaws()
1aa7c4f5 138{
8c823e5a 139 // Initialization for RAW data
140 if(fSubDetector == 0 || fSubDetector == 1) {
141 AliDebug(1,"AliITSQADM:: SPD InitRaws\n");
142 fSPDDataMaker->InitRaws();
1aa7c4f5 143 }
8c823e5a 144 if(fSubDetector == 0 || fSubDetector == 2) {
145 AliDebug(1,"AliITSQADM:: SDD InitRaws\n");
146 fSDDDataMaker->InitRaws();
04236e67 147 }
8c823e5a 148 if(fSubDetector == 0 || fSubDetector == 3) {
149 AliDebug(1,"AliITSQADM:: SSD InitRaws\n");
150 fSSDDataMaker->InitRaws();
04236e67 151 }
1aa7c4f5 152}
153
04236e67 154//____________________________________________________________________________
155void AliITSQADataMakerRec::MakeRaws(AliRawReader* rawReader)
156{
8c823e5a 157 // Fill QA for RAW
158 if(fSubDetector == 0 || fSubDetector == 1) fSPDDataMaker->MakeRaws(rawReader);
159 if(fSubDetector == 0 || fSubDetector == 2) fSDDDataMaker->MakeRaws(rawReader);
160 if(fSubDetector == 0 || fSubDetector == 3) fSSDDataMaker->MakeRaws(rawReader);
1aa7c4f5 161}
04236e67 162
163//____________________________________________________________________________
164void AliITSQADataMakerRec::InitRecPoints()
1aa7c4f5 165{
166 // Initialization for RECPOINTS
8c823e5a 167 if(fSubDetector == 0 || fSubDetector == 1) {
168 AliDebug(1,"AliITSQADM:: SPD InitRecPoints\n");
169 fSPDDataMaker->InitRecPoints();
04236e67 170 }
8c823e5a 171 if(fSubDetector == 0 || fSubDetector == 2) {
172 AliDebug(1,"AliITSQADM:: SDD InitRecPoints\n");
173 fSDDDataMaker->InitRecPoints();
1aa7c4f5 174 }
8c823e5a 175 if(fSubDetector == 0 || fSubDetector == 3) {
176 AliDebug(1,"AliITSQADM:: SSD InitRecPoints\n");
177 fSSDDataMaker->InitRecPoints();
1aa7c4f5 178 }
1aa7c4f5 179}
04236e67 180
181//____________________________________________________________________________
182void AliITSQADataMakerRec::MakeRecPoints(TTree * clustersTree)
1aa7c4f5 183{
184 // Fill QA for recpoints
8c823e5a 185 if(fSubDetector == 0 || fSubDetector == 1) fSPDDataMaker->MakeRecPoints(clustersTree);
186 if(fSubDetector == 0 || fSubDetector == 2) fSDDDataMaker->MakeRecPoints(clustersTree);
187 if(fSubDetector == 0 || fSubDetector == 3) fSSDDataMaker->MakeRecPoints(clustersTree);
04236e67 188}
189
190