]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALLoader.h
AliTPCcalibCalib.cxx - use also alignmnet - not implemented yet
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALLoader.h
CommitLineData
88cb7938 1#ifndef ALIEMCALLOADER_H
2#define ALIEMCALLOADER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//_________________________________________________________________________
9// A singleton that returns various objects
10// Should be used on the analysis stage to avoid confusing between different
11// branches of reconstruction tree: e.g. reading RecPoints and TS made from
12// another set of RecPoints.
13//
14// The objects are retrived from folders.
15//*-- Author: Yves Schutz (SUBATECH) & Dmitri Peressounko (RRC KI & SUBATECH)
16//
17
18
19// --- ROOT system ---
20#include "TClonesArray.h"
21#include "TFolder.h"
22#include "TTree.h"
23class TString ;
24class TParticle ;
25class TTask ;
26
88cb7938 27// --- AliRoot header files ---
5dee926e 28#include "AliLoader.h"
f565d89d 29#include "AliEMCALCalibData.h"
40164976 30#include "AliCaloCalibPedestal.h"
f565d89d 31
d64c959b 32class AliLoader ;
33class AliEMCAL ;
34class AliEMCALHit ;
5dee926e 35class AliEMCALDigit ;
36class AliEMCALSDigit ;
37class AliEMCALRecPoint ;
88cb7938 38
39class AliEMCALLoader : public AliLoader {
40
41 public:
42
43 AliEMCALLoader();
88cb7938 44 AliEMCALLoader(const Char_t *detname,const Char_t *eventfoldername);
6b299d9e 45 AliEMCALLoader(const Char_t *name,TFolder *topfolder);
88cb7938 46
47 virtual ~AliEMCALLoader() ;
48
5dee926e 49 virtual Int_t GetEvent(); // Overload to fill TClonesArray
50
51 virtual void CleanHits() const
52 { if (fHits) fHits->Clear(); AliLoader::CleanHits(); }
53 virtual void CleanSDigits() const
54 { if (fSDigits) fSDigits->Clear(); AliLoader::CleanSDigits(); }
55 virtual void CleanDigits() const
56 { if (fDigits) fDigits->Clear(); AliLoader::CleanDigits(); }
57 virtual void CleanRecPoints() const
58 { if (fRecPoints) fRecPoints->Clear(); AliLoader::CleanRecPoints(); }
59
60 // This does not work due to const
61 /*
62 virtual void MakeHitsContainer() const { AliLoader::MakeHitsContainer(); TreeH()->Branch(fDetectorName,"TClonesArray",&fHits); }
63 virtual void MakeSDigitsContainer() const { AliLoader::MakeSDigitsContainer(); TreeS()->SetBranchAddress(fDetectorName,&fSDigits); }
64 virtual void MakeDigitsContainer() const { AliLoader::MakeDigitsContainer(); TreeD()->SetBranchAddress(fDetectorName,&fDigits); }
65 virtual void MakeRecPointsContainer() const { AliLoader::MakeRecPointsContainer(); TreeR()->SetBranchAddress(fgkECARecPointsBranchName,&fRecPoints); }
66 */
67
68 // ************ TClonesArrays Access functions
69
40164976 70 TClonesArray* Hits(void) const { return fHits;}
5dee926e 71
72 const AliEMCALHit* Hit(Int_t index) {
73 if (fHits)
74 return (const AliEMCALHit*) fHits->At(index);
75 return 0x0;
76 }
77
40164976 78 TClonesArray* SDigits() const { return fSDigits;}
5dee926e 79 const AliEMCALDigit* SDigit(Int_t index) {
80 if (fSDigits)
81 return (const AliEMCALDigit*) fSDigits->At(index);
82 return 0x0;
83 }
84
40164976 85 TClonesArray* Digits() const { return fDigits;}
5dee926e 86 const AliEMCALDigit * Digit(Int_t index) {
87 if (fDigits)
88 return (const AliEMCALDigit*) fDigits->At(index);
89 return 0x0;
90 }
91
40164976 92 TObjArray * RecPoints() const { return fRecPoints;}
5dee926e 93 const AliEMCALRecPoint * RecPoint(Int_t index) {
94 if (fRecPoints)
95 return (const AliEMCALRecPoint*) fRecPoints->At(index);
96 return 0x0;
97 }
88cb7938 98
88cb7938 99 void SetDebug(Int_t level) {fDebug = level;} // Set debug level
88cb7938 100
f565d89d 101 //Calibration
102
103 Int_t CalibrateRaw (Double_t energy, Int_t module, Int_t column, Int_t row);//take real calibration coefficients
bcdecbbe 104
14ce0a6e 105 void SetCalibData(AliEMCALCalibData* calibda) { fgCalibData = calibda; }
bcdecbbe 106 AliEMCALCalibData * CalibData(); // to get the calibration CDB object
f565d89d 107
40164976 108 void SetPedestalData(AliCaloCalibPedestal* caloped) { fgCaloPed = caloped; }
109 AliCaloCalibPedestal* PedestalData(); // to get the pedestal CDB object
110
111
88cb7938 112private:
f565d89d 113
dc86eb51 114 // assignement operator requested by coding convention, but not needed
115 AliEMCALLoader(const AliEMCALLoader &); //Not implemented
116 const AliEMCALLoader & operator = (const AliEMCALLoader &); //Not implemented
117
5dee926e 118 static const TString fgkECARecPointsBranchName; //! Name of branch with ECA Reconstructed Points
88cb7938 119
d64c959b 120 Int_t fDebug ; // Debug level
88cb7938 121
5dee926e 122 // All data are stored in TTrees on file.
123 // These TCLonesArrays are temporary storage for reading or writing
124 // (connected to TTrees with SetBranchAddress)
125 TClonesArray *fHits; //! TClonesArray of hits (for tree reading)
126 TClonesArray *fDigits; //! TClonesArray of digits (for tree reading)
127 TClonesArray *fSDigits; //! TClonesArray of sdigits (for tree reading)
bcdecbbe 128 TObjArray *fRecPoints; //! TClonesArray of recpoints (for tree reading)
129
40164976 130 static AliEMCALCalibData * fgCalibData; // calibration data
131 static AliCaloCalibPedestal * fgCaloPed; // dead map
f565d89d 132
40164976 133 ClassDef(AliEMCALLoader,3) // Algorithm class that provides methods to retrieve objects from a list knowing the index
5dee926e 134
88cb7938 135};
136
88cb7938 137#endif // AliEMCALLOADER_H