]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDQADataMakerSim.cxx
Make and print an image of QA user flagged histograms (Yves)
[u/mrichter/AliRoot.git] / FMD / AliFMDQADataMakerSim.cxx
CommitLineData
c9dd1c4d 1/**************************************************************************
ffa78f64 2 * Copyright(c) 2004, ALICE Experiment at CERN, All rights reserved. *
c9dd1c4d 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// --- ROOT system ---
16#include <iostream>
17#include <TClonesArray.h>
18#include <TFile.h>
19#include <TH1F.h>
20#include <TH1I.h>
21
22// --- AliRoot header files ---
23#include "AliESDEvent.h"
24#include "AliLog.h"
25#include "AliFMDQADataMakerSim.h"
26#include "AliFMDDigit.h"
27#include "AliFMDHit.h"
28#include "AliQAChecker.h"
29#include "AliFMDParameters.h"
028cb80b 30#include "AliFMDSDigit.h"
c9dd1c4d 31
32//_____________________________________________________________________
33// This is the class that collects the QA data for the FMD during simulation.
34// The following data types are picked up:
35// - hits
36// - digits
37// The following data types are not supported (yet):
38// - raws
39// - sdigits
40// Author : Hans Hjersing Dalsgaard, Niels Bohr Institute, hans.dalsgaard@cern.ch
41//_____________________________________________________________________
42
43ClassImp(AliFMDQADataMakerSim)
ffa78f64 44#if 0
45; // This line is for Emacs - do not delete!
46#endif
c9dd1c4d 47//_____________________________________________________________________
ffa78f64 48AliFMDQADataMakerSim::AliFMDQADataMakerSim()
4e25ac79 49 : AliQADataMakerSim(AliQAv1::GetDetName(AliQAv1::kFMD),
9bd2ccc2 50 "FMD Quality Assurance Data Maker"),
028cb80b 51 fSDigitsArray("AliFMDSDigit", 1000),
56236ce9 52 fDigitsArray("AliFMDDigit", 1000),
53 fHitsArray("AliFMDHit", 10)
c9dd1c4d 54{
55 // ctor
56236ce9 56
c9dd1c4d 57}
58
59//_____________________________________________________________________
a7e41e8d 60AliFMDQADataMakerSim::AliFMDQADataMakerSim(const AliFMDQADataMakerSim& qadm)
61 : AliQADataMakerSim(),
028cb80b 62 fSDigitsArray(qadm.fSDigitsArray),
a7e41e8d 63 fDigitsArray(qadm.fDigitsArray),
64 fHitsArray(qadm.fHitsArray)
c9dd1c4d 65{
66 //copy ctor
a7e41e8d 67
c9dd1c4d 68 // Parameters:
69 // qadm Object to copy from
70
71}
9bd2ccc2 72//_____________________________________________________________________
a7e41e8d 73AliFMDQADataMakerSim& AliFMDQADataMakerSim::operator = (const AliFMDQADataMakerSim& qadm )
74{
028cb80b 75 fSDigitsArray = qadm.fSDigitsArray;
a7e41e8d 76 fDigitsArray = qadm.fDigitsArray;
77 fHitsArray = qadm.fHitsArray;
78
79 return *this;
80}
81//_____________________________________________________________________
9bd2ccc2 82AliFMDQADataMakerSim::~AliFMDQADataMakerSim()
83{
56236ce9 84
9bd2ccc2 85}
c9dd1c4d 86
87//_____________________________________________________________________
4e25ac79 88void AliFMDQADataMakerSim::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task,
57acd2d2 89 TObjArray ** list)
c9dd1c4d 90{
91 //Detector specific actions at end of cycle
92 // do the QA checking
ffa78f64 93 AliLog::Message(5,"FMD: end of detector cycle",
94 "AliFMDQADataMakerSim","AliFMDQADataMakerSim",
95 "AliFMDQADataMakerSim::EndOfDetectorCycle",
96 "AliFMDQADataMakerSim.cxx",83);
4e25ac79 97 AliQAChecker::Instance()->Run(AliQAv1::kFMD, task, list) ;
c9dd1c4d 98
99}
028cb80b 100//_____________________________________________________________________
101void AliFMDQADataMakerSim::InitSDigits()
102{
103 // create SDigits histograms in SDigits subdir
7d297381 104 const Bool_t expert = kTRUE ;
105 const Bool_t image = kTRUE ;
106
028cb80b 107 TH1I* hADCCounts = new TH1I("hADCCounts","Dist of ADC counts",1024,0,1024);
108 hADCCounts->SetXTitle("ADC counts");
7d297381 109 Add2SDigitsList(hADCCounts, 0, !expert, image);
028cb80b 110}
c9dd1c4d 111
112//____________________________________________________________________
113void AliFMDQADataMakerSim::InitHits()
114{
115 // create Digits histograms in Digits subdir
7d297381 116 const Bool_t expert = kTRUE ;
117 const Bool_t image = kTRUE ;
118
ffa78f64 119 TH1F* hEnergyOfHits = new TH1F("hEnergyOfHits","Energy distribution",100,0,3);
c9dd1c4d 120 hEnergyOfHits->SetXTitle("Edep");
121 hEnergyOfHits->SetYTitle("Counts");
7d297381 122 Add2HitsList(hEnergyOfHits, 0, !expert, image);
c9dd1c4d 123}
124
125//_____________________________________________________________________
126void AliFMDQADataMakerSim::InitDigits()
127{
128 // create Digits histograms in Digits subdir
7d297381 129 const Bool_t expert = kTRUE ;
130 const Bool_t image = kTRUE ;
131
c9dd1c4d 132 TH1I* hADCCounts = new TH1I("hADCCounts","Dist of ADC counts",1024,0,1024);
c9dd1c4d 133 hADCCounts->SetXTitle("ADC counts");
7d297381 134 Add2DigitsList(hADCCounts, 0, !expert, image);
c9dd1c4d 135}
136
137//_____________________________________________________________________
138void AliFMDQADataMakerSim::MakeHits(TClonesArray * hits)
139{
a7e41e8d 140 TIter next(hits);
c9dd1c4d 141 AliFMDHit * hit;
142 while ((hit = static_cast<AliFMDHit *>(next())))
143 GetHitsData(0)->Fill(hit->Edep()/hit->Length()*0.032);
144}
145
146//_____________________________________________________________________
147void AliFMDQADataMakerSim::MakeHits(TTree * hitTree)
148{
149 // make QA data from Hit Tree
150
56236ce9 151 fHitsArray.Clear();
152
c9dd1c4d 153 TBranch * branch = hitTree->GetBranch("FMD") ;
154 if (!branch) {
155 AliWarning("FMD branch in Hit Tree not found") ;
156 return;
157 }
56236ce9 158
159 TClonesArray* hitsAddress = &fHitsArray;
160
161 branch->SetAddress(&hitsAddress) ;
c9dd1c4d 162
163 for (Int_t ientry = 0 ; ientry < branch->GetEntries() ; ientry++) {
164 branch->GetEntry(ientry);
56236ce9 165 MakeHits(hitsAddress); //tmp);
c9dd1c4d 166 }
9bd2ccc2 167
c9dd1c4d 168}
169
170//_____________________________________________________________________
171void AliFMDQADataMakerSim::MakeDigits(TClonesArray * digits)
172{
173 // makes data from Digits
174 if(!digits) return;
175
56236ce9 176 for(Int_t i = 0 ; i < digits->GetEntriesFast() ; i++) {
c9dd1c4d 177 //Raw ADC counts
178 AliFMDDigit* digit = static_cast<AliFMDDigit*>(digits->At(i));
179 GetDigitsData(0)->Fill(digit->Counts());
180 }
181}
182
183//_____________________________________________________________________
184void AliFMDQADataMakerSim::MakeDigits(TTree * digitTree)
185{
186
56236ce9 187 fDigitsArray.Clear();
c9dd1c4d 188 TBranch * branch = digitTree->GetBranch("FMD") ;
189 if (!branch) {
190 AliWarning("FMD branch in Digit Tree not found") ;
191 return;
192 }
56236ce9 193 TClonesArray* digitAddress = &fDigitsArray;
194 branch->SetAddress(&digitAddress) ;
c9dd1c4d 195 branch->GetEntry(0) ;
56236ce9 196 MakeDigits(digitAddress) ;
c9dd1c4d 197}
198
028cb80b 199//_____________________________________________________________________
200void AliFMDQADataMakerSim::MakeSDigits(TClonesArray * sdigits)
201{
202 // makes data from Digits
203 if(!sdigits) return;
204
205 for(Int_t i = 0 ; i < sdigits->GetEntriesFast() ; i++) {
206 //Raw ADC counts
207 AliFMDSDigit* sdigit = static_cast<AliFMDSDigit*>(sdigits->At(i));
208 GetSDigitsData(0)->Fill(sdigit->Counts());
209 }
210}
211
212//_____________________________________________________________________
213void AliFMDQADataMakerSim::MakeSDigits(TTree * sdigitTree)
214{
215
216 fSDigitsArray.Clear();
217 TBranch * branch = sdigitTree->GetBranch("FMD") ;
218 if (!branch) {
219 AliWarning("FMD branch in SDigit Tree not found") ;
220 return;
221 }
222 TClonesArray* sdigitAddress = &fSDigitsArray;
223 branch->SetAddress(&sdigitAddress) ;
224 branch->GetEntry(0) ;
225 MakeSDigits(sdigitAddress) ;
226}
227
c9dd1c4d 228//_____________________________________________________________________
229void AliFMDQADataMakerSim::StartOfDetectorCycle()
230{
231
232}
233//_____________________________________________________________________
234//
235// EOF
236//