]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSLoader.cxx
properly take care of chamber edges in GetPadI
[u/mrichter/AliRoot.git] / PHOS / AliPHOSLoader.cxx
CommitLineData
88cb7938 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
803d1ab0 16/* $Id$ */
88cb7938 17
18//_________________________________________________________________________
19// A singleton. This class should be used in the analysis stage to get
20// reconstructed objects: Digits, RecPoints, TrackSegments and RecParticles,
21// instead of directly reading them from galice.root file. This container
22// ensures, that one reads Digits, made of these particular digits, RecPoints,
23// made of these particular RecPoints, TrackSegments and RecParticles.
24// This becomes non trivial if there are several identical branches, produced with
25// different set of parameters.
26//
27// An example of how to use (see also class AliPHOSAnalyser):
28// for(Int_t irecp = 0; irecp < gime->NRecParticles() ; irecp++)
29// AliPHOSRecParticle * part = gime->RecParticle(1) ;
30// ................
31// please->GetEvent(event) ; // reads new event from galice.root
32//
33//*-- Author: Yves Schutz (SUBATECH) & Dmitri Peressounko (RRC KI & SUBATECH)
34//*-- Completely redesigned by Dmitri Peressounko March 2001
35//
36//*-- YS June 2001 : renamed the original AliPHOSIndexToObject and make
37//*-- systematic usage of TFolders without changing the interface
38//////////////////////////////////////////////////////////////////////////////
39
40
41// --- ROOT system ---
42
43#include "TFile.h"
44#include "TTree.h"
45#include "TROOT.h"
88cb7938 46
47// --- Standard library ---
88cb7938 48
49// --- AliRoot header files ---
351dd634 50#include "AliLog.h"
88cb7938 51#include "AliPHOSLoader.h"
52#include "AliPHOS.h"
e957fea8 53#include "AliPHOSHit.h"
88cb7938 54#include "AliPHOSCalibrationDB.h"
bb30e79d 55#include "AliPHOSGetter.h"
88cb7938 56
57ClassImp(AliPHOSLoader)
58
59
60const TString AliPHOSLoader::fgkHitsName("HITS");//Name for TClonesArray with hits from one event
61const TString AliPHOSLoader::fgkSDigitsName("SDIGITS");//Name for TClonesArray
62const TString AliPHOSLoader::fgkDigitsName("DIGITS");//Name for TClonesArray
63const TString AliPHOSLoader::fgkEmcRecPointsName("EMCRECPOINTS");//Name for TClonesArray
64const TString AliPHOSLoader::fgkCpvRecPointsName("CPVRECPOINTS");//Name for TClonesArray
65const TString AliPHOSLoader::fgkTracksName("TRACKS");//Name for TClonesArray
66const TString AliPHOSLoader::fgkRecParticlesName("RECPARTICLES");//Name for TClonesArray
67
68const TString AliPHOSLoader::fgkEmcRecPointsBranchName("PHOSEmcRP");//Name for branch with EMC Reconstructed Points
69const TString AliPHOSLoader::fgkCpvRecPointsBranchName("PHOSCpvRP");//Name for branch with CPV Reconstructed Points
70const TString AliPHOSLoader::fgkTrackSegmentsBranchName("PHOSTS");//Name for branch with TrackSegments
71const TString AliPHOSLoader::fgkRecParticlesBranchName("PHOSRP");//Name for branch with Reconstructed Particles
72//____________________________________________________________________________
73AliPHOSLoader::AliPHOSLoader()
74 {
75 fDebug = 0;
76 }
77//____________________________________________________________________________
78AliPHOSLoader::AliPHOSLoader(const Char_t *detname,const Char_t *eventfoldername):
79 AliLoader(detname,eventfoldername)
80{
81 fDebug=0;
82}
83//____________________________________________________________________________
84
85AliPHOSLoader::~AliPHOSLoader()
86{
87 //remove and delete arrays
88 Clean(fgkHitsName);
89 Clean(fgkSDigitsName);
90 Clean(fgkDigitsName);
91 Clean(fgkEmcRecPointsName);
92 Clean(fgkCpvRecPointsName);
93 Clean(fgkTracksName);
94 Clean(fgkRecParticlesName);
0ef40383 95 CleanFolders() ;
bb30e79d 96 // set to 0x0 the objgetter in AliGetter ... weird isn it !
349aabec 97 AliPHOSGetter * gime = AliPHOSGetter::Instance() ; // (AliLoader::GetRunLoader()->GetFileName()).Data()) ;
8537c7e8 98 if (gime)
99 gime->Reset() ;
88cb7938 100}
88cb7938 101
bb30e79d 102//____________________________________________________________________________
88cb7938 103void AliPHOSLoader::CleanFolders()
104 {
105 CleanRecParticles();
106 AliLoader::CleanFolders();
107 }
88cb7938 108
bb30e79d 109//____________________________________________________________________________
88cb7938 110Int_t AliPHOSLoader::SetEvent()
111{
112//Cleans loaded stuff and and sets Files and Directories
113// do not post any data to folder/tasks
114
115
116 Int_t retval = AliLoader::SetEvent();
117 if (retval)
118 {
351dd634 119 AliError("returned error");
88cb7938 120 return retval;
121 }
122
123
124 if (Hits()) Hits()->Clear();
125 if (SDigits()) SDigits()->Clear();
126 if (Digits()) Digits()->Clear();
127 if (EmcRecPoints()) EmcRecPoints()->Clear();
128 if (CpvRecPoints()) CpvRecPoints()->Clear();
129 if (TrackSegments()) TrackSegments()->Clear();
130 if (RecParticles()) RecParticles()->Clear();
131
132 return 0;
133}
88cb7938 134
bb30e79d 135//____________________________________________________________________________
88cb7938 136Int_t AliPHOSLoader::GetEvent()
137{
138//Overloads GetEvent method called by AliRunLoader::GetEvent(Int_t) method
139//to add Rec Particles specific for PHOS
140
141//First call the original method to get whatever from std. setup is needed
142 Int_t retval;
143
144 retval = AliLoader::GetEvent();
145 if (retval)
146 {
351dd634 147 AliError("returned error");
88cb7938 148 return retval;
149 }
150
151 if (GetHitsDataLoader()->GetBaseDataLoader()->IsLoaded()) ReadHits();
152 if (GetSDigitsDataLoader()->GetBaseDataLoader()->IsLoaded()) ReadSDigits();
153 if (GetDigitsDataLoader()->GetBaseDataLoader()->IsLoaded()) ReadDigits();
154 if (GetRecPointsDataLoader()->GetBaseDataLoader()->IsLoaded()) ReadRecPoints();
155 if (GetTracksDataLoader()->GetBaseDataLoader()->IsLoaded()) ReadTracks();
156 if (GetRecParticlesDataLoader()->GetBaseDataLoader()->IsLoaded()) ReadRecParticles();
157
158
159//Now, check if RecPart were loaded
160 return 0;
161}
88cb7938 162
163//____________________________________________________________________________
164const AliPHOS * AliPHOSLoader::PHOS()
165{
166 // returns the PHOS object
167 AliPHOS * phos = dynamic_cast<AliPHOS*>(GetModulesFolder()->FindObject(fDetectorName));
168 if ( phos == 0x0)
169 if (fDebug)
170 cout << "WARNING: AliPHOSLoader::PHOS -> PHOS module not found in Folders" << endl ;
171 return phos ;
172}
173
174//____________________________________________________________________________
175const AliPHOSGeometry * AliPHOSLoader::PHOSGeometry()
176{
89308175 177 // Return PHOS geometry
88cb7938 178 AliPHOSGeometry * rv = 0 ;
179 if (PHOS() )
180 rv = PHOS()->GetGeometry();
181 return rv ;
182}
183
184
185//____________________________________________________________________________
186Int_t AliPHOSLoader::LoadHits(Option_t* opt)
187{
188//------- Hits ----------------------
189//Overload (extends) LoadHits implemented in AliLoader
190//
191 Int_t res;
192
193 //First call the AliLoader's method to send the TreeH to folder
194 res = AliLoader::LoadHits(opt);
195
196 if (res)
197 {//oops, error
351dd634 198 AliError("returned error");
88cb7938 199 return res;
200 }
201
202 //read the data from tree in folder and send it to folder
203 res = ReadHits();
204 return 0;
205}
206
207
208//____________________________________________________________________________
209Int_t AliPHOSLoader::LoadSDigits(Option_t* opt)
89308175 210{
211 //---------- SDigits -------------------------
88cb7938 212 Int_t res;
213 //First call the AliLoader's method to send the TreeS to folder
214 res = AliLoader::LoadSDigits(opt);
215 if (res)
216 {//oops, error
351dd634 217 AliError("returned error");
88cb7938 218 return res;
219 }
220 return ReadSDigits();
221
222}
223//____________________________________________________________________________
224Int_t AliPHOSLoader::LoadDigits(Option_t* opt)
225{
89308175 226 //---------- Digits -------------------------
88cb7938 227 Int_t res;
228 //First call the AliLoader's method to send the TreeS to folder
229 res = AliLoader::LoadDigits(opt);
230 if (res)
231 {//oops, error
351dd634 232 AliError("returned error");
88cb7938 233 return res;
234 }
235 return ReadDigits();
236}
237//____________________________________________________________________________
238Int_t AliPHOSLoader::LoadRecPoints(Option_t* opt)
89308175 239{
240 // -------------- RecPoints -------------------------------------------
88cb7938 241 Int_t res;
242 //First call the AliLoader's method to send the TreeR to folder
243 res = AliLoader::LoadRecPoints(opt);
244 if (res)
245 {//oops, error
351dd634 246 AliError("returned error");
88cb7938 247 return res;
248 }
249
250 TFolder * phosFolder = GetDetectorDataFolder();
251 if ( phosFolder == 0x0 )
252 {
351dd634 253 AliError("Can not get detector data folder");
88cb7938 254 return 1;
255 }
256 return ReadRecPoints();
257}
258//____________________________________________________________________________
259
260Int_t AliPHOSLoader::LoadTracks(Option_t* opt)
261{
262 //Loads Tracks: Open File, Reads Tree and posts, Read Data and Posts
351dd634 263 AliDebug(1, Form("opt = %s",opt));
88cb7938 264 Int_t res;
265 res = AliLoader::LoadTracks(opt);
266 if (res)
267 {//oops, error
351dd634 268 AliError("returned error");
88cb7938 269 return res;
270 }
271 return ReadTracks();
272}
273
274//____________________________________________________________________________
275Int_t AliPHOSLoader::LoadRecParticles(Option_t* opt)
89308175 276{
277 // -------------- RecPoints -------------------------------------------
88cb7938 278 Int_t res;
279 //First call the AliLoader's method to send the TreeT to folder
280 res = AliLoader::LoadRecParticles(opt);
281 if (res)
282 {//oops, error
351dd634 283 AliError("returned error");
88cb7938 284 return res;
285 }
286 return ReadRecParticles();
287}
288
289//____________________________________________________________________________
290
291Int_t AliPHOSLoader::PostHits()
292{
89308175 293 // -------------- Hits -------------------------------------------
88cb7938 294 Int_t reval = AliLoader::PostHits();
295 if (reval)
296 {
351dd634 297 AliError("returned error");
88cb7938 298 return reval;
299 }
300 return ReadHits();
301}
302//____________________________________________________________________________
303
304Int_t AliPHOSLoader::PostSDigits()
305{
89308175 306 // -------------- SDigits -------------------------------------------
88cb7938 307 Int_t reval = AliLoader::PostSDigits();
308 if (reval)
309 {
351dd634 310 AliError("returned error");
88cb7938 311 return reval;
312 }
313 return ReadSDigits();
314}
315//____________________________________________________________________________
316
317Int_t AliPHOSLoader::PostDigits()
318{
89308175 319 // -------------- Digits -------------------------------------------
88cb7938 320 Int_t reval = AliLoader::PostDigits();
321 if (reval)
322 {
351dd634 323 AliError("returned error");
88cb7938 324 return reval;
325 }
326 return ReadDigits();
327}
328//____________________________________________________________________________
329
330Int_t AliPHOSLoader::PostRecPoints()
331{
89308175 332 // -------------- RecPoints -------------------------------------------
88cb7938 333 Int_t reval = AliLoader::PostRecPoints();
334 if (reval)
335 {
351dd634 336 AliError("returned error");
88cb7938 337 return reval;
338 }
339 return ReadRecPoints();
340}
341
342//____________________________________________________________________________
343
344Int_t AliPHOSLoader::PostRecParticles()
345{
89308175 346 // -------------- RecParticles -------------------------------------------
88cb7938 347 Int_t reval = AliLoader::PostRecParticles();
348 if (reval)
349 {
351dd634 350 AliError("returned error");
88cb7938 351 return reval;
352 }
353 return ReadRecParticles();
354}
355//____________________________________________________________________________
356
357Int_t AliPHOSLoader::PostTracks()
358{
89308175 359 // -------------- Tracks -------------------------------------------
88cb7938 360 Int_t reval = AliLoader::PostTracks();
361 if (reval)
362 {
351dd634 363 AliError("returned error");
88cb7938 364 return reval;
365 }
366 return ReadTracks();
367}
368//____________________________________________________________________________
369
370
371
372//____________________________________________________________________________
373Int_t AliPHOSLoader::ReadHits()
374{
375// If there is no Clones Array in folder creates it and sends to folder
376// then tries to read
377// Reads the first entry of PHOS branch in hit tree TreeH()
378// Reads data from TreeH and stores it in TClonesArray that sits in DetectorDataFolder
379//
380 TObject** hitref = HitsRef();
381 if(hitref == 0x0)
382 {
383 MakeHitsArray();
384 hitref = HitsRef();
385 }
386
387 TClonesArray* hits = dynamic_cast<TClonesArray*>(*hitref);
388
389 TTree* treeh = TreeH();
390
391 if(treeh == 0)
392 {
351dd634 393 AliError("Cannot read TreeH from folder");
88cb7938 394 return 1;
395 }
396
397 TBranch * hitsbranch = treeh->GetBranch(fDetectorName);
398 if (hitsbranch == 0)
399 {
351dd634 400 AliError("Cannot find branch PHOS");
88cb7938 401 return 1;
402 }
351dd634 403
404 AliDebug(1, "Reading Hits");
88cb7938 405
406 if (hitsbranch->GetEntries() > 1)
407 {
408 TClonesArray * tempo = new TClonesArray("AliPHOSHit",1000);
409
410 hitsbranch->SetAddress(&tempo);
411 Int_t index = 0 ;
412 Int_t i = 0 ;
413 for (i = 0 ; i < hitsbranch->GetEntries(); i++)
414 {
415 hitsbranch->GetEntry(i) ;
416 Int_t j = 0 ;
417 for ( j = 0 ; j < tempo->GetEntries() ; j++)
418 {
419 AliPHOSHit* hit = (AliPHOSHit*)tempo->At(j);
420 new((*hits)[index]) AliPHOSHit( *hit ) ;
421 index++ ;
422 }
423 }
424 delete tempo;
425 }
426 else
427 {
428 hitsbranch->SetAddress(hitref);
429 hitsbranch->GetEntry(0) ;
430 }
431
432 return 0;
433}
434//____________________________________________________________________________
435Int_t AliPHOSLoader::ReadSDigits()
436{
437// Read the summable digits tree TreeS():
438// Check if TClones is in folder
439// if not create and add to folder
440// connect to tree if available
441// Read the data
442
443 TObject** sdref = SDigitsRef();
444 if(sdref == 0x0)
445 {
446 MakeSDigitsArray();
447 sdref = SDigitsRef();
448 }
449
450 TTree * treeS = TreeS();
451 if(treeS==0)
452 {
453 //May happen if file is truncated or new in LoadSDigits
351dd634 454 //AliError("There is no SDigit Tree");
88cb7938 455 return 0;
456 }
457
458 TBranch * branch = treeS->GetBranch(fDetectorName);
459 if (branch == 0)
460 {//easy, maybe just a new tree
351dd634 461 //AliError("Cannot find branch PHOS");
88cb7938 462 return 0;
463 }
464
465 branch->SetAddress(SDigitsRef());
466 branch->GetEntry(0);
467 return 0;
468}
469
470//____________________________________________________________________________
471Int_t AliPHOSLoader::ReadDigits()
472{
473// Read the summable digits tree TreeS():
474// Check if TClones is in folder
475// if not create and add to folder
476// connect to tree if available
477// Read the data
478
479 TObject** dref = DigitsRef();
480 if(dref == 0x0)
481 {//if there is not array in folder, create it and put it there
482 MakeDigitsArray();
483 dref = DigitsRef();
484 }
485
486 TTree * treeD = TreeD();
487 if(treeD==0)
488 {
489 //May happen if file is truncated or new in LoadSDigits
351dd634 490 //AliError("There is no Digit Tree");
88cb7938 491 return 0;
492 }
493
494 TBranch * branch = treeD->GetBranch(fDetectorName);
495 if (branch == 0)
496 {//easy, maybe just a new tree
351dd634 497 //AliError("Cannot find branch ",fDetectorName.Data());
88cb7938 498 return 0;
499 }
500
501 branch->SetAddress(dref);//connect branch to buffer sitting in folder
502 branch->GetEntry(0);//get first event
503
504 return 0;
505}
506
507//____________________________________________________________________________
508
509void AliPHOSLoader::Track(Int_t itrack)
510{
511// Read the first entry of PHOS branch in hit tree gAlice->TreeH()
512 if(TreeH()== 0)
513 {
514 if (LoadHits())
515 {
351dd634 516 AliError("Can not load hits.");
88cb7938 517 return;
518 }
519 }
520
521 TBranch * hitsbranch = dynamic_cast<TBranch*>(TreeH()->GetListOfBranches()->FindObject("PHOS")) ;
522 if ( !hitsbranch ) {
523 if (fDebug)
524 cout << "WARNING: AliPHOSLoader::ReadTreeH -> Cannot find branch PHOS" << endl ;
525 return ;
526 }
527 if(!Hits()) PostHits();
528
529 hitsbranch->SetAddress(HitsRef());
530 hitsbranch->GetEntry(itrack);
531
532}
88cb7938 533
534//____________________________________________________________________________
535Int_t AliPHOSLoader::ReadRecPoints()
536{
537//Creates and posts to folder an array container,
538//connects branch in tree (if exists), and reads data to array
539
540 MakeRecPointsArray();
541
542 TObjArray * cpva = 0x0 ;
543 TObjArray * emca = 0x0 ;
544
545 TTree * treeR = TreeR();
546
547 if(treeR==0)
548 {
549 //May happen if file is truncated or new in LoadSDigits
550 return 0;
551 }
552
553 Int_t retval = 0;
554 TBranch * emcbranch = treeR->GetBranch(fgkEmcRecPointsBranchName);
555
556 if (emcbranch == 0x0)
557 {
351dd634 558 AliError(Form("Can not get branch with EMC Rec. Points named %s",
559 fgkEmcRecPointsBranchName.Data()));
88cb7938 560 retval = 1;
561 }
562 else
563 {
564 emcbranch->SetAddress(&emca) ;
565 emcbranch->GetEntry(0) ;
566 }
567 TBranch * cpvbranch = treeR->GetBranch(fgkCpvRecPointsBranchName);
568 if (cpvbranch == 0x0)
569 {
351dd634 570 AliError(Form("Can not get branch with CPV Rec. Points named %s",
571 fgkCpvRecPointsBranchName.Data()));
88cb7938 572 retval = 2;
573 }
574 else
575 {
576 cpvbranch->SetAddress(&cpva);
577 cpvbranch->GetEntry(0) ;
578 }
579
580 Int_t ii ;
581 Int_t maxemc = emca->GetEntries() ;
582 for ( ii= 0 ; ii < maxemc ; ii++ )
583 EmcRecPoints()->Add(emca->At(ii)) ;
584
585 Int_t maxcpv = cpva->GetEntries() ;
586 for ( ii= 0 ; ii < maxcpv ; ii++ )
587 CpvRecPoints()->Add(cpva->At(ii)) ;
588
589 return retval;
590}
591
592//____________________________________________________________________________
593Int_t AliPHOSLoader::ReadTracks()
594{
595//Creates and posts to folder an array container,
596//connects branch in tree (if exists), and reads data to arry
597
598 TObject** trkref = TracksRef();
599 if ( trkref == 0x0 )
600 {//Create and post array
601 MakeTrackSegmentsArray();
602 trkref = TracksRef();
603 }
604
605 TTree * treeT = TreeT();
606 if(treeT==0)
607 {
608 //May happen if file is truncated or new in LoadSDigits, or the file is in update mode,
609 //but tracking was not performed yet for a current event
351dd634 610 //AliError("There is no Tree with Tracks");
88cb7938 611 return 0;
612 }
613
614 TBranch * branch = treeT->GetBranch(fgkTrackSegmentsBranchName);
615 if (branch == 0)
616 {//easy, maybe just a new tree
351dd634 617 AliError(Form("Cannot find branch named %s",
618 fgkTrackSegmentsBranchName.Data()));
88cb7938 619 return 0;
620 }
621
622 branch->SetAddress(trkref);//connect branch to buffer sitting in folder
623 branch->GetEntry(0);//get first event
624
625 return 0;
626}
627//____________________________________________________________________________
628
629Int_t AliPHOSLoader::ReadRecParticles()
630{
631//Reads Reconstructed Particles from file
632//Creates and posts to folder an array container,
633//connects branch in tree (if exists), and reads data to arry
634
635 TObject** recpartref = RecParticlesRef();
636
637 if ( recpartref == 0x0 )
638 {//Create and post array
639 MakeRecParticlesArray();
640 recpartref = RecParticlesRef();
641 }
642
643 TTree * treeP = TreeP();
644 if(treeP==0)
645 {
646 //May happen if file is truncated or new in LoadSDigits,
647 //or the file is in update mode,
648 //but tracking was not performed yet for a current event
351dd634 649 // AliError("There is no Tree with Tracks and Reconstructed Particles");
88cb7938 650 return 0;
651 }
652
653 TBranch * branch = treeP->GetBranch(fgkRecParticlesBranchName);
654 if (branch == 0)
655 {//easy, maybe just a new tree
351dd634 656 AliError(Form("Cannot find branch %s",
657 fgkRecParticlesBranchName.Data()));
88cb7938 658 return 0;
659 }
660
661 branch->SetAddress(recpartref);//connect branch to buffer sitting in folder
662 branch->GetEntry(0);//get first event
663
664 return 0;
665}
666
667
668AliPHOSGeometry* AliPHOSLoader::GetPHOSGeometry()
669{
89308175 670 //returns PHOS geometry from gAlice
671 //static Method used by some classes where it is not convienient to pass eventfoldername
672 if (gAlice == 0x0)
673 return 0x0;
674 AliPHOS* phos=dynamic_cast<AliPHOS*>(gAlice->GetDetector("PHOS"));
675 if (phos == 0x0)
676 return 0x0;
677 return phos->GetGeometry();
88cb7938 678}
679/***************************************************************************************/
680
681AliPHOSLoader* AliPHOSLoader::GetPHOSLoader(const char* eventfoldername)
682{
89308175 683 // Return PHOS loader
88cb7938 684 AliRunLoader* rn = AliRunLoader::GetRunLoader(eventfoldername);
351dd634 685 if (rn == 0x0) {
686 printf("Can not find Run Loader in folder %s", eventfoldername);
687 return 0x0 ;
688 }
88cb7938 689 return dynamic_cast<AliPHOSLoader*>(rn->GetLoader("PHOSLoader"));
690}
691/***************************************************************************************/
692
693Bool_t AliPHOSLoader::BranchExists(const TString& recName)
89308175 694{
695 // Check if a branch named redName exists
88cb7938 696 if (fBranchTitle.IsNull()) return kFALSE;
697 TString dataname, zername ;
698 TTree* tree;
699 if(recName == "SDigits")
700 {
701 tree = TreeS();
702 dataname = GetDetectorName();
703 zername = "AliPHOSSDigitizer" ;
704 }
705 else
706 if(recName == "Digits"){
707 tree = TreeD();
708 dataname = GetDetectorName();
709 zername = "AliPHOSDigitizer" ;
710 }
711 else
712 if(recName == "RecPoints"){
713 tree = TreeR();
714 dataname = fgkEmcRecPointsBranchName;
715 zername = "AliPHOSClusterizer" ;
716 }
717 else
718 if(recName == "TrackSegments"){
719 tree = TreeT();
720 dataname = fgkTrackSegmentsBranchName;
721 zername = "AliPHOSTrackSegmentMaker";
722 }
723 else
724 if(recName == "RecParticles"){
725 tree = TreeP();
726 dataname = fgkRecParticlesBranchName;
727 zername = "AliPHOSPID";
728 }
729 else
730 return kFALSE ;
731
732
733 if(!tree )
734 return kFALSE ;
735
736 TObjArray * lob = static_cast<TObjArray*>(tree->GetListOfBranches()) ;
737 TIter next(lob) ;
738 TBranch * branch = 0 ;
739 TString titleName(fBranchTitle);
740 titleName+=":";
741
742 while ((branch = (static_cast<TBranch*>(next())))) {
743 TString branchName(branch->GetName() ) ;
744 TString branchTitle(branch->GetTitle() ) ;
745 if ( branchName.BeginsWith(dataname) && branchTitle.BeginsWith(fBranchTitle) ){
351dd634 746 AliWarning(Form("branch %s with title %s ",
747 dataname.Data(),fBranchTitle.Data()));
88cb7938 748 return kTRUE ;
749 }
750 if ( branchName.BeginsWith(zername) && branchTitle.BeginsWith(titleName) ){
351dd634 751 AliWarning(Form("branch AliPHOS... with title %s ",
752 branch->GetTitle()));
88cb7938 753 return kTRUE ;
754 }
755 }
756 return kFALSE ;
757
758 }
759
760void AliPHOSLoader::SetBranchTitle(const TString& btitle)
89308175 761{
762 // Set branch title
88cb7938 763 if (btitle.CompareTo(fBranchTitle) == 0) return;
764 fBranchTitle = btitle;
765 ReloadAll();
766 }
767//____________________________________________________________________________
768
769void AliPHOSLoader::CleanHits()
770{
89308175 771 // Clean Hits array
88cb7938 772 AliLoader::CleanHits();
773 //Clear an array
774 TClonesArray* hits = Hits();
775 if (hits) hits->Clear();
776}
777//____________________________________________________________________________
778
779void AliPHOSLoader::CleanSDigits()
780{
89308175 781 // Clean SDigits array
88cb7938 782 AliLoader::CleanSDigits();
783 TClonesArray* sdigits = SDigits();
784 if (sdigits) sdigits->Clear();
785
786}
787//____________________________________________________________________________
788
789void AliPHOSLoader::CleanDigits()
790{
89308175 791 // Clean Digits array
88cb7938 792 AliLoader::CleanDigits();
793 TClonesArray* digits = Digits();
794 if (digits) digits->Clear();
795}
796//____________________________________________________________________________
797
798void AliPHOSLoader::CleanRecPoints()
799{
89308175 800 // Clean RecPoints array
88cb7938 801 AliLoader::CleanRecPoints();
802 TObjArray* recpoints = EmcRecPoints();
803 if (recpoints) recpoints->Clear();
804 recpoints = CpvRecPoints();
805 if (recpoints) recpoints->Clear();
806}
807//____________________________________________________________________________
808
809void AliPHOSLoader::CleanTracks()
810{
89308175 811 //Cleans Tracks stuff
88cb7938 812 AliLoader::CleanTracks();//tree
813
814 //and clear the array
815 TClonesArray* tracks = TrackSegments();
816 if (tracks) tracks->Clear();
817
818}
819//____________________________________________________________________________
820
821void AliPHOSLoader::CleanRecParticles()
822 {
89308175 823 // Clean RecParticles array
88cb7938 824 TClonesArray *recpar = RecParticles();
825 if (recpar) recpar->Clear();
826
827
828 }
829//____________________________________________________________________________
830
831void AliPHOSLoader::ReadCalibrationDB(const char * database,const char * filename)
832{
89308175 833 // Read calibration data base from file
88cb7938 834 if(fcdb && (strcmp(database,fcdb->GetTitle())==0))
835 return ;
836
837 TFile * file = gROOT->GetFile(filename) ;
838 if(!file)
839 file = TFile::Open(filename);
840 if(!file){
351dd634 841 AliError(Form("Cannot open file %s", filename)) ;
88cb7938 842 return ;
843 }
844 if(fcdb)
845 fcdb->Delete() ;
846 fcdb = dynamic_cast<AliPHOSCalibrationDB *>(file->Get("AliPHOSCalibrationDB")) ;
847 if(!fcdb)
351dd634 848 AliError(Form("No database %s in file %s", database, filename)) ;
88cb7938 849}
850//____________________________________________________________________________
851
852// AliPHOSSDigitizer* AliPHOSLoader::PHOSSDigitizer()
853// {
854// //return PHOS SDigitizer
855// return dynamic_cast<AliPHOSSDigitizer*>(SDigitizer()) ;
856// }
857
858//____________________________________________________________________________
859void AliPHOSLoader::MakeHitsArray()
860{
89308175 861 // Add Hits array to the data folder
88cb7938 862 if (Hits()) return;
863 TClonesArray* hits = new TClonesArray("AliPHOSHit",1000);
864 hits->SetName(fgkHitsName);
865 GetDetectorDataFolder()->Add(hits);
866}
867
868//____________________________________________________________________________
869void AliPHOSLoader::MakeSDigitsArray()
870{
89308175 871 // Add SDigits array to the data folder
88cb7938 872 if ( SDigits()) return;
873 TClonesArray* sdigits = new TClonesArray("AliPHOSDigit",1);
874 sdigits->SetName(fgkSDigitsName);
875 GetDetectorDataFolder()->Add(sdigits);
876}
877
878//____________________________________________________________________________
879void AliPHOSLoader::MakeDigitsArray()
880{
89308175 881 // Add Digits array to the data folder
88cb7938 882 if ( Digits()) return;
883 TClonesArray* digits = new TClonesArray("AliPHOSDigit",1);
884 digits->SetName(fgkDigitsName);
885 GetDetectorDataFolder()->Add(digits);
886
887}
888
889//____________________________________________________________________________
890void AliPHOSLoader::MakeRecPointsArray()
891{
89308175 892 // Add RecPoints array to the data folder
88cb7938 893 if ( EmcRecPoints() == 0x0)
894 {
351dd634 895 AliDebug(9, "Making array for EMC");
88cb7938 896 TObjArray* emc = new TObjArray(100) ;
897 emc->SetName(fgkEmcRecPointsName) ;
898 GetDetectorDataFolder()->Add(emc);
899 }
900
901 if ( CpvRecPoints() == 0x0)
351dd634 902 {
903 AliDebug(9, "Making array for CPV");
904 TObjArray* cpv = new TObjArray(100) ;
905 cpv->SetName(fgkCpvRecPointsName);
906 GetDetectorDataFolder()->Add(cpv);
88cb7938 907 }
908}
909
910//____________________________________________________________________________
911void AliPHOSLoader::MakeTrackSegmentsArray()
912{
89308175 913 // Add TrackSegments array to the data folder
88cb7938 914 if ( TrackSegments()) return;
915 TClonesArray * ts = new TClonesArray("AliPHOSTrackSegment",100) ;
916 ts->SetName(fgkTracksName);
917 GetDetectorDataFolder()->Add(ts);
918
919}
920
921//____________________________________________________________________________
922void AliPHOSLoader::MakeRecParticlesArray()
923{
89308175 924 // Add RecParticles array to the data folder
88cb7938 925 if ( RecParticles()) return;
926 TClonesArray * rp = new TClonesArray("AliPHOSRecParticle",100) ;
927 rp->SetName(fgkRecParticlesName);
928 GetDetectorDataFolder()->Add(rp);
929}