]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALSDigitizer.h
Thread libraries filtered out
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALSDigitizer.h
1 #ifndef ALIEMCALSDigitizer_H
2 #define ALIEMCALSDigitizer_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 //  Task Class for making SDigits in EMCAL      
10 //                  
11 //*-- Author: Sahal Yacoob (LBL)
12 // based on : AliPHOSSDigitizer
13 //_________________________________________________________________________
14
15
16 // --- ROOT system ---
17 #include "TTask.h"
18 #include "TString.h"
19 // --- Standard library ---
20
21 // --- AliRoot header files ---
22
23 class AliEMCALSDigitizer: public TTask {
24
25 public:
26   AliEMCALSDigitizer() ;          // ctor
27   AliEMCALSDigitizer(const char* HeaderFile,const char *SdigitsTitle = "Default") ; 
28   virtual ~AliEMCALSDigitizer() ; // dtor
29
30   Float_t  Calibrate(Int_t amp)const {return (amp - fA)/fB ; }
31   Int_t    Digitize(Float_t Energy)const { return (Int_t ) ( fA + Energy*fB); }
32   
33   // void TestTowerID(void) ;
34   virtual void  Exec(Option_t *option); 
35   
36   Float_t  GetPedestalParameter()const {return fA;}
37   Float_t  GetCalibrationParameter()const{return fB;}
38   char *   GetSDigitsBranch()const{return (char*) fSDigitsTitle.Data();}  
39
40   virtual void Print(Option_t* option) const ;
41
42   void     SetPedestalParameter(Float_t A){fA = A ;}
43   void     SetSlopeParameter(Float_t B){fB = B ;}
44   void     SetSDigitsBranch(const char * title ) ;
45
46   Bool_t   operator == (const AliEMCALSDigitizer & sd) const ;
47   Int_t    Segment2TowerID(Int_t SegmentID){
48   return Layer2TowerID(SegmentID,kFALSE);
49 }
50
51 private:
52   void     Init() ;
53   void     PrintSDigits(Option_t * option) ;
54   Int_t    Layer2TowerID(Int_t,Bool_t) ;
55 private:
56   Float_t fA ;              //Pedestal parameter
57   Float_t fB ;              //Slope Digitizition parameters
58   Float_t fPhotonElectronFactor ;  // number of photon electrons per GeV
59   // should be calculated independently for each layer as : 
60   // LightYield*LightCollectionEfficiency*LightAttenuation*APDPhotoElectronEfficiency*APDGain
61
62   Int_t   fNevents ;        // Number of events to digitize
63   Float_t fTowerPrimThreshold ;  // To store primary in Tower if Elos > threshold
64   Float_t fPreShowerPrimThreshold ;  // To store primary if Pre Shower Elos > threshold
65   TString fSDigitsTitle ;   // title of SDigits branch
66   TString fHeadersFile ;    //input file
67   Bool_t         fIsInitialized ; 
68   TClonesArray * fSDigits ; //! list of SDigits
69   TClonesArray * fHits ;    //! 
70
71   ClassDef(AliEMCALSDigitizer,2)  // description 
72
73 };
74
75 #endif // AliEMCALSDigitizer_H