AliRoot Core  3dc7879 (3dc7879)
AliEMCALRawResponse.h
Go to the documentation of this file.
1 #ifndef ALIEMCALRAWRESPONSE_H
2 #define ALIEMCALRAWRESPONSE_H
3 
4 /* Copyright(c) 1998-2010, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice */
6 
7 //_________________________________________________________________________
16 //_________________________________________________________________________
17 
18 #include "Rtypes.h"
19 
21 {
22 
23 public:
24 
26 
27  virtual ~AliEMCALRawResponse();
28 
29  static Double_t RawResponseFunction(Double_t *x, Double_t *par);
30 
31  static Bool_t RawSampledResponse(Double_t dtime, Double_t damp,
32  Int_t * adcH, Int_t * adcL,
33  Int_t keyErr = 0);
34 
35  static Double_t GetFEENoise() { return fgFEENoise ; }
36  static void SetFEENoise(Double_t val) { fgFEENoise = val ; }
37 
38  static Int_t GetPedestalValue() { return fgPedestalValue ; }
39  static void SetPedestalValue(Int_t val) { fgPedestalValue = val ; }
40 
41  static Double_t GetRawFormatTimeTrigger() { return fgTimeTrigger ; }
42  static Int_t GetRawFormatThreshold() { return fgThreshold ; }
43 
44 private:
45 
46  static Double_t fgTimeTrigger ;
47 
48  static Int_t fgThreshold;
49 
50  static Int_t fgPedestalValue;
51 
52  static Double_t fgFEENoise;
53 
55  ClassDef(AliEMCALRawResponse,1) ;
57 
58 };
59 
60 #endif
static Double_t GetFEENoise()
static Int_t fgThreshold
Store ADC values avobe this limit demanded by AliAltoBuffer::WriteChannel()
static void SetFEENoise(Double_t val)
static Int_t GetRawFormatThreshold()
static void SetPedestalValue(Int_t val)
static Int_t GetPedestalValue()
static Double_t fgTimeTrigger
Time shift of the digit, apply only if not done at digitization level.
static Double_t GetRawFormatTimeTrigger()
static Bool_t RawSampledResponse(Double_t dtime, Double_t damp, Int_t *adcH, Int_t *adcL, Int_t keyErr=0)
static Double_t fgFEENoise
Electronics noise in ADC units, apply only if not done at digitization level.
static Double_t RawResponseFunction(Double_t *x, Double_t *par)
Handling of digits to raw data transformation.
static Int_t fgPedestalValue
Pedestal value, apply only if not done at digitization level.