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 */
6 //_________________________________________________________________________
7 // Task Class for making SDigits in EMCAL
9 //*-- Author: Sahal Yacoob (LBL)
10 // based on : AliPHOSSDigitizer
11 //_________________________________________________________________________
14 // August 2002 Yves Schutz: clone PHOS as closely as possible and intoduction
15 // July 2003 Yves Schutz: new IO (à la PHOS)
17 // --- ROOT system ---
21 // --- Standard library ---
23 // --- AliRoot header files ---
24 #include "AliConfig.h"
26 class AliEMCALSDigitizer: public TTask {
29 AliEMCALSDigitizer() ; // ctor
30 AliEMCALSDigitizer(const char * alirunFileName, const char * eventFolderName = AliConfig::fgkDefaultEventFolderName) ;
31 AliEMCALSDigitizer(const AliEMCALSDigitizer & sd) ;
32 virtual ~AliEMCALSDigitizer() {;} // dtor
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 ; }
41 Bool_t operator == (const AliEMCALSDigitizer & sd) const ;
42 const AliEMCALSDigitizer & operator = (const AliEMCALSDigitizer & /*sd*/) {return *this ;}
47 void InitParameters() ;
48 void PrintSDigits(Option_t * option) ;
52 Float_t fA ; // Pedestal parameter
53 Float_t fB ; // Slope Digitizition parameters
54 Float_t fECPrimThreshold ; // To store primary if EC Shower Elos > threshold
55 Bool_t fDefaultInit; //! Says if the task was created by defaut ctor (only parameters are initialized)
56 TString fEventFolderName; // event folder name
57 Bool_t fInit ; //! tells if initialisation wennt OK, will revent exec if not
58 Int_t fSDigitsInRun ; //! Total number of sdigits in one run
60 ClassDef(AliEMCALSDigitizer,5) // description
64 #endif // AliEMCALSDigitizer_H