]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSDigitizer.h
Addition to keep the on the flight compilation silent
[u/mrichter/AliRoot.git] / PHOS / AliPHOSDigitizer.h
1 #ifndef ALIPHOSDigitizer_H
2 #define ALIPHOSDigitizer_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 PHOS      
10 // Class performs digitization of Summable digits (in the PHOS case this is just
11 // sum of contributions of all primary particles into given cell). 
12 // In addition it performs mixing of summable digits from different events.
13 //                  
14 //*-- Author: Dmitri Peressounko(SUBATECH & KI)
15
16
17 // --- ROOT system ---
18 #include "TObjString.h"
19 class TArrayI ;
20 class TClonesArray ; 
21
22 // --- Standard library ---
23
24 // --- AliRoot header files ---
25 #include "AliDigitizer.h"
26 class AliPHOSSDigitizer ;
27 class AliRunDigitizer ;
28
29 class AliPHOSDigitizer: public AliDigitizer {
30
31 public:
32   AliPHOSDigitizer() ;          // ctor
33   AliPHOSDigitizer(const char *headerFile, const char * name = "Default") ; 
34   AliPHOSDigitizer(AliRunDigitizer * ard) ;
35   AliPHOSDigitizer(const AliPHOSDigitizer & dtizer) 
36                   {( (AliPHOSDigitizer &)dtizer ).Copy(*this) ;} 
37   virtual ~AliPHOSDigitizer() ;       
38
39   void    Digitize(const Int_t event) ;            // Make Digits from SDigits 
40   void    Exec(Option_t *option);                  // Supervising method
41
42   //CPV parameters
43   const Float_t GetCPVNoise()     const { return fCPVNoise ;}
44   const Float_t GetCPVThreshold() const { return fCPVDigitThreshold ;}
45   const Float_t GetCPVchannel()   const { return fADCchanelCpv; }
46   const Float_t GetCPVpedestal()  const { return fADCpedestalCpv; }
47
48   void    SetCPVNoise(Float_t CPVNoise)          {fCPVNoise = CPVNoise;}
49   void    SetCPVThreshold(Float_t CPVThreshold)  {fCPVDigitThreshold= CPVThreshold;}
50   void    SetNCPVchannels(Int_t n)     { fNADCcpv = n; }
51   void    SetCPVchannel(Float_t width) { fADCchanelCpv = width; }
52   void    SetCPVpedestal(Float_t ped)  { fADCpedestalCpv = ped; }
53
54
55   //EMC parameters
56   const Float_t GetEMCThreshold() const { return fEMCDigitThreshold;}
57   const Float_t GetEMCchannel()   const { return fADCchanelEmc; }
58   const Float_t GetEMCpedestal()  const { return fADCpedestalEmc; }  
59   const Float_t GetPinNoise()     const { return fPinNoise;}
60   const Float_t GetTimeResolution() const { return fTimeResolution ; }
61
62   void   SetEMCThreshold(Float_t EMCThreshold)  {fEMCDigitThreshold = EMCThreshold;}
63   void   SetPinNoise(Float_t PinNoise )         {fPinNoise = PinNoise;}
64   void   SetNEMCchannels(Int_t n)      { fNADCemc = n; }
65   void   SetEMCchannel(Float_t width)  { fADCchanelEmc = width; }
66   void   SetEMCpedestal(Float_t ped)   { fADCpedestalEmc = ped ; }  
67
68   //General
69   const Int_t   GetDigitsInRun()  const { return fDigitsInRun ;}  
70
71   void    MixWith(const char* HeaderFile) ; // Add another one file to mix
72   void    Print(Option_t* option)const ;
73   void    Reset() ;   //restarts starts event processing from 0 event(s)
74   void    SetSplitFile(const TString splitFileName = "PHOS.Digits.root") ;
75   void    SetSDigitsBranch(const char* file) ;
76
77   AliPHOSDigitizer & operator = (const AliPHOSDigitizer & rvalue)  {
78     // assignement operator requested by coding convention but not needed
79     abort() ;
80     return *this ; 
81   }
82
83 private:
84
85   Bool_t  Init() ; 
86   void    PrintDigits(Option_t * option) ;
87   void    WriteDigits(Int_t evt) ;            // Writes Digits for particular event
88   Float_t TimeOfNoise(void) ;                 // Calculate time signal generated by noise
89   //Calculate the time of crossing of the threshold by front edge
90   Float_t FrontEdgeTime(TClonesArray * ticks) ; 
91   //Calculate digitized signal with gived ADC parameters
92   Int_t   DigitizeEnergy(Float_t energy, Int_t absId) ;
93
94 private:
95
96   Int_t   fEmcCrystals ;            // Number of EMC crystalls in the given geometry
97
98   Float_t fPinNoise ;               // Electronics noise in EMC
99   Float_t fEMCDigitThreshold  ;     // Threshold for storing digits in EMC
100
101   Float_t fCPVNoise ;               // Noise in CPV
102   Float_t fCPVDigitThreshold  ;     // Threshold for storing digits in CPV
103
104   Int_t fDigitsInRun ;              //! Total number of digits in one run
105
106   Float_t fTimeResolution ;         // Time resolution of FEE electronics
107   Float_t fTimeThreshold ;          // Threshold to start timing for given crystall
108   Float_t fTimeSignalLength ;       // Length of the timing signal 
109
110   Float_t fADCchanelEmc ;           // width of one ADC channel in GeV
111   Float_t fADCpedestalEmc ;         //
112   Int_t   fNADCemc ;                // number of channels in EMC ADC
113
114   Float_t fADCchanelCpv ;           // width of one ADC channel in CPV 'popugais'
115   Float_t fADCpedestalCpv ;         // 
116   Int_t   fNADCcpv ;                // number of channels in CPV ADC
117   TFile * fSplitFile ;             //! file in which Digits will eventually be stored
118
119
120   ClassDef(AliPHOSDigitizer,1)  // description 
121
122 };
123
124
125 #endif // AliPHOSDigitizer_H