990119d6 |
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 * |
c65c502a |
10 | * copies and that both the copyright notice and this permission notice * |
11 | * appear in the supporting documentation. The authors make no claims * |
990119d6 |
12 | * about the suitability of this software for any purpose. It is * |
13 | * provided "as is" without express or implied warranty. * |
14 | **************************************************************************/ |
15 | |
c093f031 |
16 | |
990119d6 |
17 | /* $Id$ */ |
18 | |
702ab87e |
19 | /* History of cvs commits: |
20 | * |
21 | * $Log$ |
04236e67 |
22 | * Revision 1.56 2007/10/19 18:04:29 schutz |
23 | * The standalone QA data maker is called from AliSimulation and AliReconstruction outside the event loop; i.e. re-reading the data. The QA data making in the event loop has been commented out. |
24 | * |
c65c502a |
25 | * Revision 1.55 2007/10/14 21:08:10 schutz |
26 | * Introduced the checking of QA results from previous step before entering the event loop |
27 | * |
8661738e |
28 | * Revision 1.54 2007/10/10 09:05:10 schutz |
29 | * Changing name QualAss to QA |
30 | * |
b8274834 |
31 | * Revision 1.53 2007/09/30 17:08:20 schutz |
32 | * Introducing the notion of QA data acquisition cycle (needed by online) |
33 | * |
5b188f2f |
34 | * Revision 1.52 2007/09/26 14:22:18 cvetan |
35 | * Important changes to the reconstructor classes. Complete elimination of the run-loaders, which are now steered only from AliReconstruction. Removal of the corresponding Reconstruct() and FillESD() methods. |
36 | * |
d76c31f4 |
37 | * Revision 1.51 2007/08/07 14:12:03 kharlov |
38 | * Quality assurance added (Yves Schutz) |
702ab87e |
39 | */ |
40 | |
990119d6 |
41 | //_________________________________________________________________________ |
7acf6008 |
42 | // This is a TTask that makes SDigits out of Hits |
7b7c1533 |
43 | // The name of the TTask is also the title of the branch that will contain |
44 | // the created SDigits |
45 | // The title of the TTAsk is the name of the file that contains the hits from |
46 | // which the SDigits are created |
7acf6008 |
47 | // A Summable Digits is the sum of all hits originating |
48 | // from one primary in one active cell |
49 | // A threshold for assignment of the primary to SDigit is applied |
50 | // SDigits are written to TreeS, branch "PHOS" |
51 | // AliPHOSSDigitizer with all current parameters is written |
52 | // to TreeS branch "AliPHOSSDigitizer". |
f035f6ce |
53 | // Both branches have the same title. If necessary one can produce |
54 | // another set of SDigits with different parameters. Two versions |
55 | // can be distunguished using titles of the branches. |
56 | // User case: |
a4e98857 |
57 | // root [0] AliPHOSSDigitizer * s = new AliPHOSSDigitizer("galice.root") |
58 | // Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated |
59 | // root [1] s->ExecuteTask() |
f035f6ce |
60 | // // Makes SDigitis for all events stored in galice.root |
a4e98857 |
61 | // root [2] s->SetPedestalParameter(0.001) |
f035f6ce |
62 | // // One can change parameters of digitization |
3de072dc |
63 | // root [3] s->SetSDigitsBranch("Pedestal 0.001") |
f035f6ce |
64 | // // and write them into the new branch |
3de072dc |
65 | // root [4] s->ExecuteTask("deb all tim") |
f035f6ce |
66 | // // available parameters: |
67 | // deb - print # of produced SDigitis |
68 | // deb all - print # and list of produced SDigits |
69 | // tim - print benchmarking information |
990119d6 |
70 | // |
6c8cd883 |
71 | //-- Author : Dmitri Peressounko (SUBATECH & KI) |
990119d6 |
72 | ////////////////////////////////////////////////////////////////////////////// |
73 | |
f035f6ce |
74 | |
990119d6 |
75 | // --- ROOT system --- |
7acf6008 |
76 | #include "TBenchmark.h" |
106fc2fa |
77 | |
990119d6 |
78 | // --- Standard library --- |
79 | |
80 | // --- AliRoot header files --- |
9d6866ec |
81 | #include "AliLog.h" |
e957fea8 |
82 | #include "AliPHOSGeometry.h" |
990119d6 |
83 | #include "AliPHOSDigit.h" |
bfae5a5d |
84 | #include "AliPHOSLoader.h" |
990119d6 |
85 | #include "AliPHOSHit.h" |
990119d6 |
86 | #include "AliPHOSSDigitizer.h" |
87 | |
990119d6 |
88 | ClassImp(AliPHOSSDigitizer) |
89 | |
90 | |
91 | //____________________________________________________________________________ |
3663622c |
92 | AliPHOSSDigitizer::AliPHOSSDigitizer() : |
93 | TTask("",""), |
3663622c |
94 | fPrimThreshold(0.f), |
95 | fDefaultInit(kTRUE), |
96 | fEventFolderName(""), |
97 | fInit(kFALSE), |
98 | fSDigitsInRun(0), |
99 | fFirstEvent(0), |
c65c502a |
100 | fLastEvent(0) |
548f0134 |
101 | { |
990119d6 |
102 | // ctor |
ddd1a39c |
103 | // Intialize the quality assurance data maker |
990119d6 |
104 | } |
7acf6008 |
105 | |
990119d6 |
106 | //____________________________________________________________________________ |
e191bb57 |
107 | AliPHOSSDigitizer::AliPHOSSDigitizer(const char * alirunFileName, |
108 | const char * eventFolderName): |
109 | TTask("PHOS"+AliConfig::Instance()->GetSDigitizerTaskName(), alirunFileName), |
3663622c |
110 | fPrimThreshold(0.f), |
111 | fDefaultInit(kFALSE), |
112 | fEventFolderName(eventFolderName), |
113 | fInit(kFALSE), |
114 | fSDigitsInRun(0), |
115 | fFirstEvent(0), |
c65c502a |
116 | fLastEvent(0) |
990119d6 |
117 | { |
118 | // ctor |
8d0f3f77 |
119 | InitParameters() ; |
2bd5457f |
120 | Init(); |
92f521a9 |
121 | fDefaultInit = kFALSE ; |
ddd1a39c |
122 | } |
123 | |
124 | //____________________________________________________________________________ |
125 | AliPHOSSDigitizer::AliPHOSSDigitizer(const AliPHOSSDigitizer& sd) : |
126 | TTask(sd.GetName(), sd.GetTitle()), |
ddd1a39c |
127 | fPrimThreshold(sd.fPrimThreshold), |
128 | fDefaultInit(kFALSE), |
129 | fEventFolderName(sd.fEventFolderName), |
130 | fInit(kFALSE), |
131 | fSDigitsInRun(sd.fSDigitsInRun), |
132 | fFirstEvent(sd.fFirstEvent), |
c65c502a |
133 | fLastEvent(sd.fLastEvent) |
ddd1a39c |
134 | { |
135 | // cpy ctor |
ddd1a39c |
136 | } |
137 | |
ddd1a39c |
138 | //_____________________________________________________________________________ |
139 | AliPHOSSDigitizer& AliPHOSSDigitizer::operator = (const AliPHOSSDigitizer& qa) |
140 | { |
141 | // assignment operator |
142 | |
143 | this->~AliPHOSSDigitizer(); |
144 | new(this) AliPHOSSDigitizer(qa); |
145 | return *this; |
990119d6 |
146 | } |
147 | |
c093f031 |
148 | //____________________________________________________________________________ |
797e311f |
149 | AliPHOSSDigitizer::~AliPHOSSDigitizer() { |
150 | //dtor |
bfae5a5d |
151 | AliRunLoader* rl = AliRunLoader::GetRunLoader(fEventFolderName) ; |
152 | if(rl){ |
153 | AliPHOSLoader * phosLoader = |
154 | dynamic_cast<AliPHOSLoader*>(rl->GetLoader("PHOSLoader")); |
155 | phosLoader->CleanSDigitizer() ; |
156 | } |
797e311f |
157 | } |
ddd1a39c |
158 | |
797e311f |
159 | //____________________________________________________________________________ |
a4e98857 |
160 | void AliPHOSSDigitizer::Init() |
161 | { |
bfae5a5d |
162 | // Uses the Loader to access the required files |
7b7c1533 |
163 | |
88cb7938 |
164 | fInit = kTRUE ; |
165 | |
bfae5a5d |
166 | //to prevent cleaning of this object while GetEvent is called |
167 | AliRunLoader* rl = AliRunLoader::GetRunLoader(fEventFolderName) ; |
168 | if (!rl) |
169 | rl = AliRunLoader::Open(GetTitle(), fEventFolderName) ; |
170 | |
171 | AliPHOSLoader * phosLoader = dynamic_cast<AliPHOSLoader*>(rl->GetLoader("PHOSLoader")); |
172 | phosLoader->PostSDigitizer(this); |
173 | phosLoader->GetSDigitsDataLoader()->GetBaseTaskLoader()->SetDoNotReload(kTRUE); |
7acf6008 |
174 | } |
7b7c1533 |
175 | |
8d0f3f77 |
176 | //____________________________________________________________________________ |
177 | void AliPHOSSDigitizer::InitParameters() |
178 | { |
88cb7938 |
179 | // initializes the parameters for digitization |
8d0f3f77 |
180 | fPrimThreshold = 0.01 ; |
181 | fSDigitsInRun = 0 ; |
8d0f3f77 |
182 | } |
183 | |
990119d6 |
184 | //____________________________________________________________________________ |
a4e98857 |
185 | void AliPHOSSDigitizer::Exec(Option_t *option) |
186 | { |
212d1c0f |
187 | // Steering method to produce summable digits for events |
188 | // in the range from fFirstEvent to fLastEvent. |
189 | // This range is optionally set by SetEventRange(). |
190 | // if fLastEvent=-1 (by default), then process events until the end. |
191 | // |
192 | // Summable digit is a sum of all hits in the same active |
193 | // volume into digit |
7b7c1533 |
194 | |
195 | if (strstr(option, "print") ) { |
88cb7938 |
196 | Print() ; |
7b7c1533 |
197 | return ; |
198 | } |
990119d6 |
199 | |
7acf6008 |
200 | if(strstr(option,"tim")) |
201 | gBenchmark->Start("PHOSSDigitizer"); |
fbf811ec |
202 | |
04236e67 |
203 | /* |
204 | // check the QA result for RAWS |
8661738e |
205 | AliQA * qa = AliQA::Instance(AliQA::kPHOS) ; |
206 | if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kFATAL)) { |
207 | AliFatal("QA status in RAW was Fatal") ; |
208 | } else if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kERROR)) { |
209 | AliError("QA status in RAW was Error") ; |
210 | } else if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kWARNING) ) { |
211 | AliWarning("QA status in RAW was Warning") ; |
212 | } else if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kINFO) ) { |
213 | AliInfo("QA status in RAW was Info") ; |
214 | } |
04236e67 |
215 | */ |
bfae5a5d |
216 | AliRunLoader* rl = AliRunLoader::GetRunLoader(fEventFolderName) ; |
217 | AliPHOSLoader * phosLoader = dynamic_cast<AliPHOSLoader*>(rl->GetLoader("PHOSLoader")); |
88cb7938 |
218 | |
219 | //switch off reloading of this task while getting event |
220 | if (!fInit) { // to prevent overwrite existing file |
9d6866ec |
221 | AliError( Form("Give a version name different from %s", fEventFolderName.Data()) ) ; |
88cb7938 |
222 | return ; |
223 | } |
224 | |
212d1c0f |
225 | if (fLastEvent == -1) |
bfae5a5d |
226 | fLastEvent = rl->GetNumberOfEvents() - 1 ; |
212d1c0f |
227 | else |
bfae5a5d |
228 | fLastEvent = TMath::Min(fFirstEvent, rl->GetNumberOfEvents()); // only one event at the time |
212d1c0f |
229 | Int_t nEvents = fLastEvent - fFirstEvent + 1; |
230 | |
e3310962 |
231 | Int_t ievent, i; |
9d6866ec |
232 | |
9d6866ec |
233 | for (ievent = fFirstEvent; ievent <= fLastEvent; ievent++) { |
bfae5a5d |
234 | rl->GetEvent(ievent) ; |
235 | TTree * treeS = phosLoader->TreeS(); |
236 | if(!treeS){ |
237 | phosLoader->MakeTree("S"); |
238 | treeS = phosLoader->TreeS(); |
239 | } |
240 | |
241 | phosLoader->CleanHits() ; |
242 | phosLoader->LoadHits("READ") ; |
243 | |
244 | TClonesArray * hits = phosLoader->Hits() ; |
245 | TClonesArray * sdigits = phosLoader->SDigits() ; |
246 | if( !sdigits ) { |
247 | phosLoader->MakeSDigitsArray() ; |
248 | sdigits = phosLoader->SDigits() ; |
249 | } |
7b7c1533 |
250 | sdigits->Clear(); |
990119d6 |
251 | Int_t nSdigits = 0 ; |
bfae5a5d |
252 | |
7b7c1533 |
253 | //Now make SDigits from hits, for PHOS it is the same, so just copy |
e3310962 |
254 | for ( i = 0 ; i < hits->GetEntries() ; i++ ) { |
255 | AliPHOSHit * hit = dynamic_cast<AliPHOSHit *>(hits->At(i)) ; |
256 | // Assign primary number only if contribution is significant |
257 | |
258 | if( hit->GetEnergy() > fPrimThreshold) |
259 | new((*sdigits)[nSdigits]) AliPHOSDigit(hit->GetPrimary(),hit->GetId(), |
260 | hit->GetEnergy() ,hit->GetTime()) ; |
261 | else |
262 | new((*sdigits)[nSdigits]) AliPHOSDigit(-1 ,hit->GetId(), |
263 | hit->GetEnergy() ,hit->GetTime()) ; |
264 | nSdigits++ ; |
265 | |
266 | } |
88cb7938 |
267 | |
7b7c1533 |
268 | sdigits->Sort() ; |
88cb7938 |
269 | |
7b7c1533 |
270 | nSdigits = sdigits->GetEntriesFast() ; |
88cb7938 |
271 | |
69866bef |
272 | fSDigitsInRun += nSdigits ; |
7b7c1533 |
273 | sdigits->Expand(nSdigits) ; |
88cb7938 |
274 | |
990119d6 |
275 | for (i = 0 ; i < nSdigits ; i++) { |
7a9d98f9 |
276 | AliPHOSDigit * digit = dynamic_cast<AliPHOSDigit *>(sdigits->At(i)) ; |
990119d6 |
277 | digit->SetIndexInList(i) ; |
278 | } |
3962b6a1 |
279 | |
c65c502a |
280 | // // make Quality Assurance data |
281 | // |
282 | // if (GetQADataMaker()->IsCycleDone() ) { |
283 | // GetQADataMaker()->EndOfCycle(AliQA::kHITS) ; |
284 | // GetQADataMaker()->EndOfCycle(AliQA::kSDIGITS) ; |
285 | // GetQADataMaker()->StartOfCycle(AliQA::kHITS) ; |
286 | // GetQADataMaker()->StartOfCycle(AliQA::kSDIGITS, kTRUE) ; |
287 | // } |
288 | // GetQADataMaker()->Exec(AliQA::kHITS, hits) ; |
289 | // GetQADataMaker()->Exec(AliQA::kSDIGITS, sdigits) ; |
290 | // GetQADataMaker()->Increment() ; |
5b188f2f |
291 | |
fbf811ec |
292 | //Now write SDigits |
fbf811ec |
293 | |
88cb7938 |
294 | |
7acf6008 |
295 | //First list of sdigits |
88cb7938 |
296 | |
fbf811ec |
297 | Int_t bufferSize = 32000 ; |
88cb7938 |
298 | TBranch * sdigitsBranch = treeS->Branch("PHOS",&sdigits,bufferSize); |
fbf811ec |
299 | sdigitsBranch->Fill() ; |
fbf811ec |
300 | |
bfae5a5d |
301 | phosLoader->WriteSDigits("OVERWRITE"); |
302 | phosLoader->WriteSDigitizer("OVERWRITE"); |
88cb7938 |
303 | |
7acf6008 |
304 | if(strstr(option,"deb")) |
305 | PrintSDigits(option) ; |
9d6866ec |
306 | |
9d6866ec |
307 | }// event loop |
fbf811ec |
308 | |
c65c502a |
309 | // //Write the quality assurance data |
310 | // GetQADataMaker()->EndOfCycle(AliQA::kHITS) ; |
311 | // GetQADataMaker()->EndOfCycle(AliQA::kSDIGITS) ; |
312 | // GetQADataMaker()->Finish() ; |
ddd1a39c |
313 | |
88cb7938 |
314 | Unload(); |
315 | |
7acf6008 |
316 | if(strstr(option,"tim")){ |
317 | gBenchmark->Stop("PHOSSDigitizer"); |
21cd0c07 |
318 | Info("Exec"," took %f seconds for SDigitizing %f seconds per event", |
bfae5a5d |
319 | gBenchmark->GetCpuTime("PHOSSDigitizer"), |
320 | gBenchmark->GetCpuTime("PHOSSDigitizer")/nEvents) ; |
7acf6008 |
321 | } |
9d6866ec |
322 | |
990119d6 |
323 | } |
106fc2fa |
324 | |
990119d6 |
325 | //__________________________________________________________________ |
702ab87e |
326 | void AliPHOSSDigitizer::Print(const Option_t *)const |
a4e98857 |
327 | { |
328 | // Prints parameters of SDigitizer |
88cb7938 |
329 | Info("Print", "\n------------------- %s -------------", GetName() ) ; |
330 | printf(" Writing SDigits to branch with title %s\n", fEventFolderName.Data()) ; |
88cb7938 |
331 | printf(" Threshold for Primary assignment= %f\n", fPrimThreshold) ; |
332 | printf("---------------------------------------------------\n") ; |
7acf6008 |
333 | |
990119d6 |
334 | } |
548f0134 |
335 | |
990119d6 |
336 | //__________________________________________________________________ |
a4e98857 |
337 | Bool_t AliPHOSSDigitizer::operator==( AliPHOSSDigitizer const &sd )const |
338 | { |
3de072dc |
339 | // Equal operator. |
340 | // SDititizers are equal if their pedestal, slope and threshold are equal |
341 | |
f898e0f3 |
342 | if(fPrimThreshold==sd.fPrimThreshold) |
990119d6 |
343 | return kTRUE ; |
344 | else |
345 | return kFALSE ; |
346 | } |
548f0134 |
347 | |
a6eedfad |
348 | //__________________________________________________________________ |
a4e98857 |
349 | void AliPHOSSDigitizer::PrintSDigits(Option_t * option) |
350 | { |
351 | // Prints list of digits produced in the current pass of AliPHOSDigitizer |
7b7c1533 |
352 | |
bfae5a5d |
353 | AliRunLoader* rl = AliRunLoader::GetRunLoader(fEventFolderName) ; |
354 | AliPHOSLoader * phosLoader = dynamic_cast<AliPHOSLoader*>(rl->GetLoader("PHOSLoader")); |
6c8cd883 |
355 | |
356 | // Get PHOS Geometry object |
357 | AliPHOSGeometry *geom; |
358 | if (!(geom = AliPHOSGeometry::GetInstance())) |
359 | geom = AliPHOSGeometry::GetInstance("IHEP",""); |
360 | |
bfae5a5d |
361 | const TClonesArray * sdigits = phosLoader->SDigits() ; |
21cd0c07 |
362 | |
bfae5a5d |
363 | Info( "\nPrintSDigits", "event # %d %d sdigits", |
364 | gAlice->GetEvNumber(), sdigits->GetEntriesFast() ) ; |
71dfb0d8 |
365 | |
a6eedfad |
366 | if(strstr(option,"all")||strstr(option,"EMC")){ |
7acf6008 |
367 | |
368 | //loop over digits |
369 | AliPHOSDigit * digit; |
71dfb0d8 |
370 | printf("\nEMC sdigits\n") ; |
6c8cd883 |
371 | Int_t maxEmc = geom->GetNModules() * geom->GetNCristalsInModule() ; |
7acf6008 |
372 | Int_t index ; |
a6eedfad |
373 | for (index = 0 ; (index < sdigits->GetEntriesFast()) && |
fbf811ec |
374 | ((dynamic_cast<AliPHOSDigit *> (sdigits->At(index)))->GetId() <= maxEmc) ; index++) { |
375 | digit = dynamic_cast<AliPHOSDigit *>( sdigits->At(index) ) ; |
71dfb0d8 |
376 | // if(digit->GetNprimary() == 0) |
377 | // continue; |
27a73a5d |
378 | // printf("%6d %8d %6.5e %4d %2d :\n", // YVK |
379 | printf("%6d %.4f %6.5e %4d %2d :\n", |
380 | digit->GetId(), digit->GetEnergy(), digit->GetTime(), digit->GetIndexInList(), digit->GetNprimary()) ; |
7acf6008 |
381 | Int_t iprimary; |
11f9c5ff |
382 | for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) { |
71dfb0d8 |
383 | printf("%d ",digit->GetPrimary(iprimary+1) ) ; |
11f9c5ff |
384 | } |
a6eedfad |
385 | } |
a6eedfad |
386 | } |
387 | |
388 | if(strstr(option,"all")||strstr(option,"CPV")){ |
7acf6008 |
389 | |
a6eedfad |
390 | //loop over CPV digits |
391 | AliPHOSDigit * digit; |
71dfb0d8 |
392 | printf("\nCPV sdigits\n") ; |
6c8cd883 |
393 | Int_t maxEmc = geom->GetNModules() * geom->GetNCristalsInModule() ; |
a6eedfad |
394 | Int_t index ; |
395 | for (index = 0 ; index < sdigits->GetEntriesFast(); index++) { |
fbf811ec |
396 | digit = dynamic_cast<AliPHOSDigit *>( sdigits->At(index) ) ; |
a6eedfad |
397 | if(digit->GetId() > maxEmc){ |
71dfb0d8 |
398 | printf("\n%6d %8d %4d %2d :", |
11f9c5ff |
399 | digit->GetId(), digit->GetAmp(), digit->GetIndexInList(), digit->GetNprimary()) ; |
a6eedfad |
400 | Int_t iprimary; |
21cd0c07 |
401 | for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) { |
71dfb0d8 |
402 | printf("%d ",digit->GetPrimary(iprimary+1) ) ; |
21cd0c07 |
403 | } |
a6eedfad |
404 | } |
405 | } |
7acf6008 |
406 | } |
407 | } |
7b7c1533 |
408 | |
409 | //____________________________________________________________________________ |
88cb7938 |
410 | void AliPHOSSDigitizer::Unload() const |
7b7c1533 |
411 | { |
e957fea8 |
412 | // Unloads the objects from the folder |
bfae5a5d |
413 | AliRunLoader* rl = AliRunLoader::GetRunLoader(fEventFolderName) ; |
414 | AliPHOSLoader * phosLoader = dynamic_cast<AliPHOSLoader*>(rl->GetLoader("PHOSLoader")); |
415 | phosLoader->UnloadHits() ; |
416 | phosLoader->UnloadSDigits() ; |
7b7c1533 |
417 | } |