]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALSDigitizer.h
Radius of PHOS equal to 460 (Y.Schutz)
[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 /* $Id$ */
6 //_________________________________________________________________________
7 //  Task Class for making SDigits in EMCAL      
8 //                  
9 //*-- Author: Sahal Yacoob (LBL)
10 // based on : AliPHOSSDigitizer
11 //_________________________________________________________________________
12 //
13 // Modif: 
14 //  August 2002 Yves Schutz: clone PHOS as closely as possible and intoduction
15 //  July   2003 Yves Schutz: new  IO (à la PHOS)
16  
17 // --- ROOT system ---
18 #include "TTask.h"
19 class TFile ;
20
21 // --- Standard library ---
22
23 // --- AliRoot header files ---
24 #include "AliConfig.h"
25
26 class AliEMCALSDigitizer: public TTask {
27
28 public:
29   AliEMCALSDigitizer() ;          // ctor
30   AliEMCALSDigitizer(const char * alirunFileName, const char * eventFolderName = AliConfig::fgkDefaultEventFolderName) ; 
31   AliEMCALSDigitizer(const AliEMCALSDigitizer & sd) ;
32   virtual ~AliEMCALSDigitizer(); // dtor
33
34   Float_t       Calibrate(Int_t amp)const {return (amp - fA)/fB ; }
35   Int_t         Digitize(Float_t Energy)const { return (Int_t ) ( fA + Energy*fB); }
36   virtual void  Exec(Option_t *option); 
37   Int_t         GetSDigitsInRun() const {return fSDigitsInRun ;}  
38   virtual void  Print() const ;
39   void          SetEventFolderName(TString name) { fEventFolderName = name ; }
40   void          SetEventRange(Int_t first=0, Int_t last=-1) {fFirstEvent=first; fLastEvent=last; }
41
42   Bool_t operator == (const AliEMCALSDigitizer & sd) const ;
43   const AliEMCALSDigitizer & operator = (const AliEMCALSDigitizer & /*sd*/) {return *this ;}
44
45
46 private:
47   void     Init() ;
48   void     InitParameters() ; 
49   void     PrintSDigits(Option_t * option) ;
50   void     Unload() const ;
51
52 private:
53   Float_t fA ;                     // Pedestal parameter
54   Float_t fB ;                     // Slope Digitizition parameters
55   Float_t fECPrimThreshold ;       // To store primary if EC Shower Elos > threshold
56   Bool_t  fDefaultInit;            //! Says if the task was created by defaut ctor (only parameters are initialized)
57   TString fEventFolderName;        // event folder name
58   Bool_t  fInit ;                  //! tells if initialisation wennt OK, will revent exec if not
59   Int_t   fSDigitsInRun ;          //! Total number of sdigits in one run
60   Int_t   fFirstEvent;             // first event to process
61   Int_t   fLastEvent;              // last  event to process
62
63   ClassDef(AliEMCALSDigitizer,5)  // description 
64
65 };
66
67 #endif // AliEMCALSDigitizer_H
68