]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALQADataMakerRec.cxx
fix for TRU2x2Id; need to check which TRU the data came from
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALQADataMakerRec.cxx
CommitLineData
94594e5d 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/*
16Based on the QA code for PHOS written by Yves Schutz July 2007
17
18Authors: J.Klay (Cal Poly) May 2008
19 S. Salur LBL April 2008
20
21*/
22
23// --- ROOT system ---
24#include <TClonesArray.h>
25#include <TFile.h>
26#include <TH1F.h>
27#include <TH1I.h>
28#include <TH2F.h>
3fe36ccb 29#include <TProfile.h>
94594e5d 30
31// --- Standard library ---
32
3fe36ccb 33
94594e5d 34// --- AliRoot header files ---
35#include "AliESDCaloCluster.h"
601c73e3 36#include "AliESDCaloCells.h"
94594e5d 37#include "AliESDEvent.h"
38#include "AliLog.h"
39#include "AliEMCALQADataMakerRec.h"
40#include "AliQAChecker.h"
44ed7a66 41#include "AliEMCALDigit.h"
94594e5d 42#include "AliEMCALRecPoint.h"
43#include "AliEMCALRawUtils.h"
44#include "AliEMCALReconstructor.h"
45#include "AliEMCALRecParam.h"
78328afd 46#include "AliRawReader.h"
32cd4c24 47#include "AliCaloRawStreamV3.h"
85149d34 48#include "AliEMCALGeoParams.h"
94594e5d 49
50ClassImp(AliEMCALQADataMakerRec)
51
52//____________________________________________________________________________
53 AliEMCALQADataMakerRec::AliEMCALQADataMakerRec() :
3fe36ccb 54 AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kEMCAL), "EMCAL Quality Assurance Data Maker"),
d3b82d58 55 fSuperModules(4), // FIXME!!! number of SuperModules; 4 for 2009; update default to 12 for later runs..
56 fFirstPedestalSample(0),
06a4c82d 57 fLastPedestalSample(15),
58 fMinSignalHG(0),
59 fMaxSignalHG(AliEMCALGeoParams::fgkSampleMax)
94594e5d 60{
61 // ctor
62}
63
64//____________________________________________________________________________
65AliEMCALQADataMakerRec::AliEMCALQADataMakerRec(const AliEMCALQADataMakerRec& qadm) :
d3b82d58 66 AliQADataMakerRec(),
67 fSuperModules(qadm.GetSuperModules()),
68 fFirstPedestalSample(qadm.GetFirstPedestalSample()),
06a4c82d 69 fLastPedestalSample(qadm.GetLastPedestalSample()),
70 fMinSignalHG(qadm.GetMinSignalHG()),
71 fMaxSignalHG(qadm.GetMaxSignalHG())
94594e5d 72{
73 //copy ctor
74 SetName((const char*)qadm.GetName()) ;
75 SetTitle((const char*)qadm.GetTitle());
76}
77
78//__________________________________________________________________
79AliEMCALQADataMakerRec& AliEMCALQADataMakerRec::operator = (const AliEMCALQADataMakerRec& qadm )
80{
81 // Equal operator.
82 this->~AliEMCALQADataMakerRec();
83 new(this) AliEMCALQADataMakerRec(qadm);
84 return *this;
85}
86
87//____________________________________________________________________________
4e25ac79 88void AliEMCALQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
94594e5d 89{
90 //Detector specific actions at end of cycle
91 // do the QA checking
4e25ac79 92 AliQAChecker::Instance()->Run(AliQAv1::kEMCAL, task, list) ;
94594e5d 93}
94
95//____________________________________________________________________________
96void AliEMCALQADataMakerRec::InitESDs()
97{
98 //Create histograms to controll ESD
7d297381 99 const Bool_t expert = kTRUE ;
100 const Bool_t image = kTRUE ;
101
db72ff3b 102 TH1F * h1 = new TH1F("hESDCaloClusterE", "ESDs CaloCluster energy in EMCAL;Energy [MeV];Counts", 200, 0., 20.) ;
94594e5d 103 h1->Sumw2() ;
7d297381 104 Add2ESDsList(h1, kESDCaloClusE, !expert, image) ;
601c73e3 105
db72ff3b 106 TH1I * h2 = new TH1I("hESDCaloClusterM", "ESDs CaloCluster multiplicity in EMCAL;# of Clusters;Entries", 100, 0, 100) ;
94594e5d 107 h2->Sumw2() ;
7d297381 108 Add2ESDsList(h2, kESDCaloClusM, !expert, image) ;
601c73e3 109
db72ff3b 110 TH1F * h3 = new TH1F("hESDCaloCellA", "ESDs CaloCell amplitude in EMCAL;Energy [MeV];Counts", 500, 0., 250.) ;
94594e5d 111 h3->Sumw2() ;
7d297381 112 Add2ESDsList(h3, kESDCaloCellA, !expert, image) ;
94594e5d 113
db72ff3b 114 TH1I * h4 = new TH1I("hESDCaloCellM", "ESDs CaloCell multiplicity in EMCAL;# of Clusters;Entries", 200, 0, 1000) ;
94594e5d 115 h4->Sumw2() ;
7d297381 116 Add2ESDsList(h4, kESDCaloCellM, !expert, image) ;
94594e5d 117
118}
119
44ed7a66 120//____________________________________________________________________________
121void AliEMCALQADataMakerRec::InitDigits()
122{
123 // create Digits histograms in Digits subdir
124 const Bool_t expert = kTRUE ;
125 const Bool_t image = kTRUE ;
126
db72ff3b 127 TH1I * h0 = new TH1I("hEmcalDigits", "Digits amplitude distribution in EMCAL;Amplitude [ADC counts];Counts", 500, 0, 500) ;
44ed7a66 128 h0->Sumw2() ;
129 Add2DigitsList(h0, 0, !expert, image) ;
db72ff3b 130 TH1I * h1 = new TH1I("hEmcalDigitsMul", "Digits multiplicity distribution in EMCAL;# of Digits;Entries", 200, 0, 2000) ;
44ed7a66 131 h1->Sumw2() ;
132 Add2DigitsList(h1, 1, !expert, image) ;
133}
134
94594e5d 135//____________________________________________________________________________
136void AliEMCALQADataMakerRec::InitRecPoints()
137{
138 // create Reconstructed Points histograms in RecPoints subdir
7d297381 139 const Bool_t expert = kTRUE ;
140 const Bool_t image = kTRUE ;
141
db72ff3b 142 TH1F* h0 = new TH1F("hEMCALRpE","EMCAL RecPoint energies;Energy [MeV];Counts",200, 0.,20.); //GeV
601c73e3 143 h0->Sumw2();
7d297381 144 Add2RecPointsList(h0,kRecPE, !expert, image);
94594e5d 145
db72ff3b 146 TH1I* h1 = new TH1I("hEMCALRpM","EMCAL RecPoint multiplicities;# of Clusters;Entries",100,0,100);
601c73e3 147 h1->Sumw2();
7d297381 148 Add2RecPointsList(h1,kRecPM, !expert, image);
94594e5d 149
db72ff3b 150 TH1I* h2 = new TH1I("hEMCALRpDigM","EMCAL RecPoint Digit Multiplicities;# of Digits;Entries",20,0,20);
601c73e3 151 h2->Sumw2();
7d297381 152 Add2RecPointsList(h2,kRecPDigM, !expert, image);
94594e5d 153
154}
155
156//____________________________________________________________________________
157void AliEMCALQADataMakerRec::InitRaws()
158{
159 // create Raws histograms in Raws subdir
7d297381 160 const Bool_t expert = kTRUE ;
161 const Bool_t saveCorr = kTRUE ;
162 const Bool_t image = kTRUE ;
3fe36ccb 163
85149d34 164 int nTowersPerSM = AliEMCALGeoParams::fgkEMCALRows * AliEMCALGeoParams::fgkEMCALCols; // number of towers in a SuperModule; 24x48
3fe36ccb 165 int nTot = fSuperModules * nTowersPerSM; // max number of towers in all SuperModules
166
167 // counter info: number of channels per event (bins are SM index)
db72ff3b 168 TProfile * h0 = new TProfile("hLowEmcalSupermodules", "Low Gain EMC: # of towers vs SuperMod;SM Id;# of towers",
3fe36ccb 169 fSuperModules, -0.5, fSuperModules-0.5) ;
7d297381 170 Add2RawsList(h0, kNsmodLG, !expert, image, !saveCorr) ;
db72ff3b 171 TProfile * h1 = new TProfile("hHighEmcalSupermodules", "High Gain EMC: # of towers vs SuperMod;SM Id;# of towers",
3fe36ccb 172 fSuperModules, -0.5, fSuperModules-0.5) ;
7d297381 173 Add2RawsList(h1, kNsmodHG, !expert, image, !saveCorr) ;
94594e5d 174
3fe36ccb 175 // where did max sample occur? (bins are towers)
85149d34 176 TProfile * h2 = new TProfile("hLowEmcalRawtime", "Low Gain EMC: Time at Max vs towerId;Tower Id;Time [ticks]",
3fe36ccb 177 nTot, -0.5, nTot-0.5) ;
178 Add2RawsList(h2, kTimeLG, !expert, image, !saveCorr) ;
85149d34 179 TProfile * h3 = new TProfile("hHighEmcalRawtime", "High Gain EMC: Time at Max vs towerId;Tower Id;Time [ticks]",
3fe36ccb 180 nTot, -0.5, nTot-0.5) ;
181 Add2RawsList(h3, kTimeHG, !expert, image, !saveCorr) ;
94594e5d 182
3fe36ccb 183 // how much above pedestal was the max sample? (bins are towers)
85149d34 184 TProfile * h4 = new TProfile("hLowEmcalRawMaxMinusMin", "Low Gain EMC: Max - Min vs towerId;Tower Id;Max-Min [ADC counts]",
3fe36ccb 185 nTot, -0.5, nTot-0.5) ;
186 Add2RawsList(h4, kSigLG, !expert, image, !saveCorr) ;
85149d34 187 TProfile * h5 = new TProfile("hHighEmcalRawMaxMinusMin", "High Gain EMC: Max - Min vs towerId;Tower Id;Max-Min [ADC counts]",
3fe36ccb 188 nTot, -0.5, nTot-0.5) ;
189 Add2RawsList(h5, kSigHG, !expert, image, !saveCorr) ;
601c73e3 190
3fe36ccb 191 // total counter: channels per event
db72ff3b 192 TH1I * h6 = new TH1I("hLowNtot", "Low Gain EMC: Total Number of found towers;# of Towers;Counts", 200, 0, nTot) ;
601c73e3 193 h6->Sumw2() ;
7d297381 194 Add2RawsList(h6, kNtotLG, !expert, image, !saveCorr) ;
db72ff3b 195 TH1I * h7 = new TH1I("hHighNtot", "High Gain EMC: Total Number of found towers;# of Towers;Counts", 200,0, nTot) ;
601c73e3 196 h7->Sumw2() ;
7d297381 197 Add2RawsList(h7, kNtotHG, !expert, image, !saveCorr) ;
601c73e3 198
3fe36ccb 199 // pedestal (bins are towers)
db72ff3b 200 TProfile * h8 = new TProfile("hLowEmcalRawPed", "Low Gain EMC: Pedestal vs towerId;Tower Id;Pedestal [ADC counts]",
3fe36ccb 201 nTot, -0.5, nTot-0.5) ;
202 Add2RawsList(h8, kPedLG, !expert, image, !saveCorr) ;
db72ff3b 203 TProfile * h9 = new TProfile("hHighEmcalRawPed", "High Gain EMC: Pedestal vs towerId;Tower Id;Pedestal [ADC counts]",
3fe36ccb 204 nTot, -0.5, nTot-0.5) ;
205 Add2RawsList(h9, kPedHG, !expert, image, !saveCorr) ;
206
207 // pedestal rms (standard dev = sqrt of variance estimator for pedestal) (bins are towers)
db72ff3b 208 TProfile * h10 = new TProfile("hLowEmcalRawPedRMS", "Low Gain EMC: Pedestal RMS vs towerId;Tower Id;Width [ADC counts]",
3fe36ccb 209 nTot, -0.5, nTot-0.5) ;
210 Add2RawsList(h10, kPedRMSLG, !expert, image, !saveCorr) ;
db72ff3b 211 TProfile * h11 = new TProfile("hHighEmcalRawPedRMS", "High Gain EMC: Pedestal RMS vs towerId;Tower Id;Width [ADC counts]",
3fe36ccb 212 nTot, -0.5, nTot-0.5) ;
213 Add2RawsList(h11, kPedRMSHG, !expert, image, !saveCorr) ;
85149d34 214
215
216 // now repeat the same for TRU and LEDMon data
217 int nTot2x2 = fSuperModules * AliEMCALGeoParams::fgkEMCALTRUsPerSM * AliEMCALGeoParams::fgkEMCAL2x2PerTRU; // max number of TRU channels for all SuperModules
218
219 // counter info: number of channels per event (bins are SM index)
220 TProfile * hT0 = new TProfile("hTRUEmcalSupermodules", "TRU EMC: # of TRU channels vs SuperMod;SM Id;# of TRU channels",
221 fSuperModules, -0.5, fSuperModules-0.5) ;
222 Add2RawsList(hT0, kNsmodTRU, !expert, image, !saveCorr) ;
223
224 // where did max sample occur? (bins are TRU channels)
225 TProfile * hT1 = new TProfile("hTRUEmcalRawtime", "TRU EMC: Time at Max vs 2x2Id;2x2 Id;Time [ticks]",
226 nTot2x2, -0.5, nTot2x2-0.5) ;
227 Add2RawsList(hT1, kTimeTRU, !expert, image, !saveCorr) ;
228
229 // how much above pedestal was the max sample? (bins are TRU channels)
230 TProfile * hT2 = new TProfile("hTRUEmcalRawMaxMinusMin", "TRU EMC: Max - Min vs 2x2Id;2x2 Id;Max-Min [ADC counts]",
231 nTot2x2, -0.5, nTot2x2-0.5) ;
232 Add2RawsList(hT2, kSigTRU, !expert, image, !saveCorr) ;
233
234 // total counter: channels per event
235 TH1I * hT3 = new TH1I("hTRUNtot", "TRU EMC: Total Number of found TRU channels;# of TRU Channels;Counts", 200, 0, nTot2x2) ;
236 hT3->Sumw2() ;
237 Add2RawsList(hT3, kNtotTRU, !expert, image, !saveCorr) ;
238
239 // pedestal (bins are TRU channels)
240 TProfile * hT4 = new TProfile("hTRUEmcalRawPed", "TRU EMC: Pedestal vs 2x2Id;2x2 Id;Pedestal [ADC counts]",
241 nTot2x2, -0.5, nTot2x2-0.5) ;
242 Add2RawsList(hT4, kPedTRU, !expert, image, !saveCorr) ;
243
244 // pedestal rms (standard dev = sqrt of variance estimator for pedestal) (bins are TRU channels)
245 TProfile * hT5 = new TProfile("hTRUEmcalRawPedRMS", "TRU EMC: Pedestal RMS vs 2x2Id;2x2 Id;Width [ADC counts]",
246 nTot2x2, -0.5, nTot2x2-0.5) ;
247 Add2RawsList(hT5, kPedRMSTRU, !expert, image, !saveCorr) ;
248
249 // and also LED Mon..
250 // LEDMon has both high and low gain channels, just as regular FEE/towers
251 int nTotLEDMon = fSuperModules * AliEMCALGeoParams::fgkEMCALLEDRefs; // max number of LEDMon channels for all SuperModules
252
253 // counter info: number of channels per event (bins are SM index)
254 TProfile * hL0 = new TProfile("hLowLEDMONEmcalSupermodules", "LowLEDMON Gain EMC: # of strips vs SuperMod;SM Id;# of strips",
255 fSuperModules, -0.5, fSuperModules-0.5) ;
256 Add2RawsList(hL0, kNsmodLGLEDMon, !expert, image, !saveCorr) ;
257 TProfile * hL1 = new TProfile("hHighLEDMonEmcalSupermodules", "HighLEDMon Gain EMC: # of strips vs SuperMod;SM Id;# of strips",
258 fSuperModules, -0.5, fSuperModules-0.5) ;
259 Add2RawsList(hL1, kNsmodHGLEDMon, !expert, image, !saveCorr) ;
260
261 // where did max sample occur? (bins are strips)
262 TProfile * hL2 = new TProfile("hLowLEDMONEmcalRawtime", "LowLEDMON Gain EMC: Time at Max vs stripId;Strip Id;Time [ticks]",
263 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
264 Add2RawsList(hL2, kTimeLGLEDMon, !expert, image, !saveCorr) ;
265 TProfile * hL3 = new TProfile("hHighLEDMonEmcalRawtime", "HighLEDMon Gain EMC: Time at Max vs stripId;Strip Id;Time [ticks]",
266 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
267 Add2RawsList(hL3, kTimeHGLEDMon, !expert, image, !saveCorr) ;
268
269 // how much above pedestal was the max sample? (bins are strips)
270 TProfile * hL4 = new TProfile("hLowLEDMONEmcalRawMaxMinusMin", "LowLEDMON Gain EMC: Max - Min vs stripId;Strip Id;Max-Min [ADC counts]",
271 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
272 Add2RawsList(hL4, kSigLGLEDMon, !expert, image, !saveCorr) ;
273 TProfile * hL5 = new TProfile("hHighLEDMonEmcalRawMaxMinusMin", "HighLEDMon Gain EMC: Max - Min vs stripId;Strip Id;Max-Min [ADC counts]",
274 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
275 Add2RawsList(hL5, kSigHGLEDMon, !expert, image, !saveCorr) ;
276
277 // total counter: channels per event
278 TH1I * hL6 = new TH1I("hLowLEDMONNtot", "LowLEDMON Gain EMC: Total Number of found strips;# of Strips;Counts", 200, 0, nTotLEDMon) ;
279 hL6->Sumw2() ;
280 Add2RawsList(hL6, kNtotLGLEDMon, !expert, image, !saveCorr) ;
281 TH1I * hL7 = new TH1I("hHighLEDMonNtot", "HighLEDMon Gain EMC: Total Number of found strips;# of Strips;Counts", 200,0, nTotLEDMon) ;
282 hL7->Sumw2() ;
283 Add2RawsList(hL7, kNtotHGLEDMon, !expert, image, !saveCorr) ;
284
285 // pedestal (bins are strips)
286 TProfile * hL8 = new TProfile("hLowLEDMONEmcalRawPed", "LowLEDMON Gain EMC: Pedestal vs stripId;Strip Id;Pedestal [ADC counts]",
287 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
288 Add2RawsList(hL8, kPedLGLEDMon, !expert, image, !saveCorr) ;
289 TProfile * hL9 = new TProfile("hHighLEDMonEmcalRawPed", "HighLEDMon Gain EMC: Pedestal vs stripId;Strip Id;Pedestal [ADC counts]",
290 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
291 Add2RawsList(hL9, kPedHGLEDMon, !expert, image, !saveCorr) ;
292
293 // pedestal rms (standard dev = sqrt of variance estimator for pedestal) (bins are strips)
294 TProfile * hL10 = new TProfile("hLowLEDMONEmcalRawPedRMS", "LowLEDMON Gain EMC: Pedestal RMS vs stripId;Strip Id;Width [ADC counts]",
295 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
296 Add2RawsList(hL10, kPedRMSLGLEDMon, !expert, image, !saveCorr) ;
297 TProfile * hL11 = new TProfile("hHighLEDMonEmcalRawPedRMS", "HighLEDMon Gain EMC: Pedestal RMS vs stripId;Strip Id;Width [ADC counts]",
298 nTotLEDMon, -0.5, nTotLEDMon-0.5) ;
299 Add2RawsList(hL11, kPedRMSHGLEDMon, !expert, image, !saveCorr) ;
94594e5d 300
301}
302
303//____________________________________________________________________________
304void AliEMCALQADataMakerRec::MakeESDs(AliESDEvent * esd)
305{
306 // make QA data from ESDs
307
308 Int_t nTot = 0 ;
94594e5d 309 for ( Int_t index = 0; index < esd->GetNumberOfCaloClusters() ; index++ ) {
310 AliESDCaloCluster * clu = esd->GetCaloCluster(index) ;
311 if( clu->IsEMCAL() ) {
601c73e3 312 GetESDsData(kESDCaloClusE)->Fill(clu->E()) ;
94594e5d 313 nTot++ ;
314 }
315 }
601c73e3 316 GetESDsData(kESDCaloClusM)->Fill(nTot) ;
317
318 //fill calo cells
319 AliESDCaloCells* cells = esd->GetEMCALCells();
320 GetESDsData(kESDCaloCellM)->Fill(cells->GetNumberOfCells()) ;
321
322 for ( Int_t index = 0; index < cells->GetNumberOfCells() ; index++ ) {
323 GetESDsData(kESDCaloCellA)->Fill(cells->GetAmplitude(index)) ;
324 }
325
94594e5d 326}
327
328//____________________________________________________________________________
78328afd 329void AliEMCALQADataMakerRec::MakeRaws(AliRawReader* rawReader)
94594e5d 330{
331 //Fill prepared histograms with Raw digit properties
332
333 //Raw histogram filling not yet implemented
601c73e3 334 //
335 //Need to figure out how to get the info we want without having to
336 //actually run Raw2Digits twice.
337 //I suspect what we actually want is a raw digits method, not a true
338 //emcal raw data method, but this doesn't seem to be allowed in
339 //AliQADataMakerRec.h
94594e5d 340
3fe36ccb 341 // For now, to avoid redoing the expensive signal fits we just
342 // look at max vs min of the signal spextra, a la online usage in
343 // AliCaloCalibPedestal
344
345 rawReader->Reset() ;
32cd4c24 346 AliCaloRawStreamV3 in(rawReader,"EMCAL");
3fe36ccb 347
348 // setup
85149d34 349 int nTowersPerSM = AliEMCALGeoParams::fgkEMCALRows * AliEMCALGeoParams::fgkEMCALCols; // number of towers in a SuperModule; 24x48
350 int nRows = AliEMCALGeoParams::fgkEMCALRows; // number of rows per SuperModule
351 int nStripsPerSM = AliEMCALGeoParams::fgkEMCALLEDRefs; // number of strips per SuperModule
352 int n2x2PerSM = AliEMCALGeoParams::fgkEMCALTRUsPerSM * AliEMCALGeoParams::fgkEMCAL2x2PerTRU; // number of TRU 2x2's per SuperModule
353
3fe36ccb 354 int sampleMin = 0;
06a4c82d 355 int sampleMax = AliEMCALGeoParams::fgkSampleMax; // 0x3ff = 1023 = 10-bit range
3fe36ccb 356
357 // for the pedestal calculation
358 Bool_t selectPedestalSamples = kTRUE;
3fe36ccb 359
85149d34 360 // SM counters; decl. should be safe, assuming we don't get more than expected SuperModules..
361 int nTotalSMLG[AliEMCALGeoParams::fgkEMCALModules] = {0};
362 int nTotalSMHG[AliEMCALGeoParams::fgkEMCALModules] = {0};
363 int nTotalSMTRU[AliEMCALGeoParams::fgkEMCALModules] = {0};
364 int nTotalSMLGLEDMon[AliEMCALGeoParams::fgkEMCALModules] = {0};
365 int nTotalSMHGLEDMon[AliEMCALGeoParams::fgkEMCALModules] = {0};
3fe36ccb 366
367 // indices for the reading
368 int iSM = 0;
369 int sample = 0;
3fe36ccb 370 int time = 0;
371 // counters, on sample level
372 int i = 0; // the sample number in current event.
3fe36ccb 373 int maxTime = 0;
32cd4c24 374 int startBin = 0;
3fe36ccb 375
3fe36ccb 376 // calc. quantities
377 double meanPed = 0, squaredMean = 0, rmsPed = 0;
32cd4c24 378
379 // start loop over input stream
380 while (in.NextDDL()) {
84466b65 381 int iRCU = in.GetDDLNumber() % 2; // RCU0 or RCU1, within SuperModule
32cd4c24 382 while (in.NextChannel()) {
383
384 // counters
385 int max = sampleMin, min = sampleMax; // min and max sample values
386
387 // for the pedestal calculation
388 int sampleSum = 0; // sum of samples
389 int squaredSampleSum = 0; // sum of samples squared
390 int nSum = 0; // number of samples in sum
391
392 while (in.NextBunch()) {
393 const UShort_t *sig = in.GetSignals();
394 startBin = in.GetStartTimeBin();
395 for (i = 0; i < in.GetBunchLength(); i++) {
396 sample = sig[i];
397 time = startBin--;
398
399 // check if it's a min or max value
400 if (sample < min) min = sample;
401 if (sample > max) {
402 max = sample;
403 maxTime = time;
404 }
405
406 // should we add it for the pedestal calculation?
d3b82d58 407 if ( (fFirstPedestalSample<=time && time<=fLastPedestalSample) || // sample time in range
32cd4c24 408 !selectPedestalSamples ) { // or we don't restrict the sample range.. - then we'll take all
409 sampleSum += sample;
410 squaredSampleSum += sample*sample;
411 nSum++;
412 }
413
414 } // loop over samples in bunch
415 } // loop over bunches
416
3fe36ccb 417 // calculate pedesstal estimate: mean of possibly selected samples
418 if (nSum > 0) {
419 meanPed = sampleSum / (1.0 * nSum);
420 squaredMean = squaredSampleSum / (1.0 * nSum);
421 // The variance (rms squared) is equal to the mean of the squares minus the square of the mean..
422 rmsPed = sqrt(squaredMean - meanPed*meanPed);
423 }
424 else {
425 meanPed = 0;
426 squaredMean = 0;
427 rmsPed = 0;
428 }
429
32cd4c24 430 // it should be enough to check the SuperModule info for each DDL really, but let's keep it here for now
3fe36ccb 431 iSM = in.GetModule(); //The modules are numbered starting from 0
432
433 if (iSM>=0 && iSM<fSuperModules) { // valid module reading, can go on with filling
434
85149d34 435 if ( in.IsLowGain() || in.IsHighGain() ) { // regular towers
436 int towerId = iSM*nTowersPerSM + in.GetColumn()*nRows + in.GetRow();
437
438 if ( in.IsLowGain() ) {
439 //fill the low gain histograms, and counters
440 nTotalSMLG[iSM]++; // one more channel found
441 GetRawsData(kSigLG)->Fill(towerId, max - min);
442 GetRawsData(kTimeLG)->Fill(towerId, maxTime);
443 if (nSum>0) { // only fill pedestal info in case it could be calculated
444 GetRawsData(kPedLG)->Fill(towerId, meanPed);
445 GetRawsData(kPedRMSLG)->Fill(towerId, rmsPed);
446 }
447 } // gain==0
448 else if ( in.IsHighGain() ) {
449 //fill the high gain ones
450 nTotalSMHG[iSM]++; // one more channel found
06a4c82d 451 int signal = max - min;
452 // only fill the max-min signal info and maxTime, if the
453 // signal was in the selected range
454 if ( (signal > fMinSignalHG) && (signal < fMaxSignalHG) ) {
455 GetRawsData(kSigHG)->Fill(towerId, signal);
456 GetRawsData(kTimeHG)->Fill(towerId, maxTime);
457 } // signal
85149d34 458 if (nSum>0) { // only fill pedestal info in case it could be calculated
459 GetRawsData(kPedHG)->Fill(towerId, meanPed);
460 GetRawsData(kPedRMSHG)->Fill(towerId, rmsPed);
461 }
3fe36ccb 462 }
85149d34 463 } // low or high gain
464 // TRU
465 else if ( in.IsTRUData() ) {
84466b65 466 // for TRU data, the mapping class holds the TRU internal 2x2 number (0..95) in the Column var..
467 int iTRU = iRCU; //TRU0 is from RCU0, TRU1 from RCU1
468 if (iRCU>0 && in.GetBranch()>0) iTRU=2; // TRU2 is from branch B on RCU1
469 int TRU2x2Id = iSM*n2x2PerSM + iTRU*AliEMCALGeoParams::fgkEMCAL2x2PerTRU
470 + in.GetColumn();
85149d34 471
472 //fill the low gain histograms, and counters
473 nTotalSMTRU[iSM]++; // one more channel found
474 GetRawsData(kSigTRU)->Fill(TRU2x2Id, max - min);
475 GetRawsData(kTimeTRU)->Fill(TRU2x2Id, maxTime);
3fe36ccb 476 if (nSum>0) { // only fill pedestal info in case it could be calculated
85149d34 477 GetRawsData(kPedTRU)->Fill(TRU2x2Id, meanPed);
478 GetRawsData(kPedRMSTRU)->Fill(TRU2x2Id, rmsPed);
3fe36ccb 479 }
480 }
85149d34 481 // LED Mon
482 else if ( in.IsLEDMonData() ) {
483 // for LED Mon data, the mapping class holds the gain info in the Row variable
484 // and the Strip number in the Column..
485 int gain = in.GetRow();
486 int stripId = iSM*nStripsPerSM + in.GetColumn();
487
488 if ( gain == 0 ) {
489 //fill the low gain histograms, and counters
490 nTotalSMLGLEDMon[iSM]++; // one more channel found
491 GetRawsData(kSigLGLEDMon)->Fill(stripId, max - min);
492 GetRawsData(kTimeLGLEDMon)->Fill(stripId, maxTime);
493 if (nSum>0) { // only fill pedestal info in case it could be calculated
494 GetRawsData(kPedLGLEDMon)->Fill(stripId, meanPed);
495 GetRawsData(kPedRMSLGLEDMon)->Fill(stripId, rmsPed);
496 }
497 } // gain==0
498 else if ( gain == 1 ) {
499 //fill the high gain ones
500 nTotalSMHGLEDMon[iSM]++; // one more channel found
501 GetRawsData(kSigHGLEDMon)->Fill(stripId, max - min);
502 GetRawsData(kTimeHGLEDMon)->Fill(stripId, maxTime);
503 if (nSum>0) { // only fill pedestal info in case it could be calculated
504 GetRawsData(kPedHGLEDMon)->Fill(stripId, meanPed);
505 GetRawsData(kPedRMSHGLEDMon)->Fill(stripId, rmsPed);
506 }
507 } // low or high gain
508 } // LEDMon
509
3fe36ccb 510 } // SM index OK
511
32cd4c24 512 }// end while over channel
3fe36ccb 513
32cd4c24 514 }//end while over DDL's, of input stream
3fe36ccb 515
516 // let's also fill the SM and event counter histograms
517 int nTotalHG = 0;
518 int nTotalLG = 0;
85149d34 519 int nTotalTRU = 0;
520 int nTotalHGLEDMon = 0;
521 int nTotalLGLEDMon = 0;
3fe36ccb 522 for (iSM=0; iSM<fSuperModules; iSM++) {
523 nTotalLG += nTotalSMLG[iSM];
524 nTotalHG += nTotalSMHG[iSM];
85149d34 525 nTotalTRU += nTotalSMTRU[iSM];
526 nTotalLG += nTotalSMLGLEDMon[iSM];
527 nTotalHG += nTotalSMHGLEDMon[iSM];
3fe36ccb 528 GetRawsData(kNsmodLG)->Fill(iSM, nTotalSMLG[iSM]);
529 GetRawsData(kNsmodHG)->Fill(iSM, nTotalSMHG[iSM]);
85149d34 530 GetRawsData(kNsmodTRU)->Fill(iSM, nTotalSMTRU[iSM]);
531 GetRawsData(kNsmodLGLEDMon)->Fill(iSM, nTotalSMLGLEDMon[iSM]);
532 GetRawsData(kNsmodHGLEDMon)->Fill(iSM, nTotalSMHGLEDMon[iSM]);
3fe36ccb 533 }
534 GetRawsData(kNtotLG)->Fill(nTotalLG);
535 GetRawsData(kNtotHG)->Fill(nTotalHG);
85149d34 536 GetRawsData(kNtotTRU)->Fill(nTotalTRU);
537 GetRawsData(kNtotLGLEDMon)->Fill(nTotalLGLEDMon);
538 GetRawsData(kNtotHGLEDMon)->Fill(nTotalHGLEDMon);
3fe36ccb 539
540 // just in case the next rawreader consumer forgets to reset; let's do it here again..
541 rawReader->Reset() ;
542
543 return;
94594e5d 544}
545
44ed7a66 546//____________________________________________________________________________
6252ceeb 547void AliEMCALQADataMakerRec::MakeDigits()
44ed7a66 548{
549 // makes data from Digits
eca4fa66 550
6252ceeb 551 GetDigitsData(1)->Fill(fDigitsArray->GetEntriesFast()) ;
552 TIter next(fDigitsArray) ;
44ed7a66 553 AliEMCALDigit * digit ;
554 while ( (digit = dynamic_cast<AliEMCALDigit *>(next())) ) {
555 GetDigitsData(0)->Fill( digit->GetAmp()) ;
556 }
557
558}
559
560//____________________________________________________________________________
561void AliEMCALQADataMakerRec::MakeDigits(TTree * digitTree)
562{
563 // makes data from Digit Tree
6252ceeb 564 if (fDigitsArray)
565 fDigitsArray->Clear() ;
566 else
567 fDigitsArray = new TClonesArray("AliEMCALDigit", 1000) ;
44ed7a66 568
569 TBranch * branch = digitTree->GetBranch("EMCAL") ;
570 if ( ! branch ) {
571 AliWarning("EMCAL branch in Digit Tree not found") ;
572 } else {
6252ceeb 573 branch->SetAddress(&fDigitsArray) ;
44ed7a66 574 branch->GetEntry(0) ;
6252ceeb 575 MakeDigits() ;
44ed7a66 576 }
577
578}
579
94594e5d 580//____________________________________________________________________________
581void AliEMCALQADataMakerRec::MakeRecPoints(TTree * clustersTree)
582{
583 // makes data from RecPoints
584 TBranch *emcbranch = clustersTree->GetBranch("EMCALECARP");
585 if (!emcbranch) {
586 AliError("can't get the branch with the EMCAL clusters !");
587 return;
588 }
eca4fa66 589
94594e5d 590 TObjArray * emcrecpoints = new TObjArray(100) ;
591 emcbranch->SetAddress(&emcrecpoints);
592 emcbranch->GetEntry(0);
593
601c73e3 594 GetRecPointsData(kRecPM)->Fill(emcrecpoints->GetEntriesFast()) ;
94594e5d 595 TIter next(emcrecpoints) ;
596 AliEMCALRecPoint * rp ;
94594e5d 597 while ( (rp = dynamic_cast<AliEMCALRecPoint *>(next())) ) {
601c73e3 598 GetRecPointsData(kRecPE)->Fill( rp->GetEnergy()) ;
599 GetRecPointsData(kRecPDigM)->Fill(rp->GetMultiplicity());
94594e5d 600 }
94594e5d 601 emcrecpoints->Delete();
602 delete emcrecpoints;
603
604}
605
606//____________________________________________________________________________
607void AliEMCALQADataMakerRec::StartOfDetectorCycle()
608{
609 //Detector specific actions at start of cycle
610
611}
3fe36ccb 612