]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALRawUtils.h
incorporated raw signal fit parameters into AliEMCALRecParam
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRawUtils.h
index 1a13a34934fffb857b125a3ad05535e68c86d07c..cdca0d0d5b79f6fb1efadc72ab8a8e963808d57d 100644 (file)
@@ -53,12 +53,21 @@ class AliEMCALRawUtils : public TObject {
   void AddDigit(TClonesArray *digitsArr, Int_t id, Int_t lowGain, Int_t amp, Float_t time);
 
   // Signal shape parameters
-  Double_t GetRawFormatHighLowGainFactor() const {return fHighLowGainFactor ;}
-  static Int_t GetRawFormatOrder() { return fgOrder ; }   
+  Double_t GetRawFormatHighLowGainFactor() const { return fHighLowGainFactor ;}
+  Int_t GetRawFormatOrder()                const { return fOrder ; }   
+  Double_t GetRawFormatTau()               const { return fTau ; }    
+  Int_t GetNoiseThreshold()                const { return fNoiseThreshold; }
+  Int_t GetNPedSamples()                   const { return fNPedSamples; }
+
+  void SetRawFormatHighLowGainFactor(Double_t val) {fHighLowGainFactor=val;}
+  void SetRawFormatOrder(Int_t val)                {fOrder=val; }   
+  void SetRawFormatTau(Double_t val)               {fTau=val; }    
+  void SetNoiseThreshold(Int_t val)                {fNoiseThreshold=val; }
+  void SetNPedSamples(Int_t val)                   {fNPedSamples=val; }
+  
   static Int_t GetRawFormatTimeBins() { return fgkTimeBins ; }    
   static Double_t GetRawFormatTimeMax() { return fgkTimeBins*fgTimeBinWidth; }   
   static Double_t GetRawFormatTimeBinWidth() { return fgTimeBinWidth; }   
-  Double_t GetRawFormatTau() const { return fgTau ; }    
   Double_t GetRawFormatTimeTrigger() const { return fgTimeTrigger ; }
   Int_t GetRawFormatThreshold() const { return fgThreshold ; }       
   Int_t GetRawFormatDDLPerSuperModule() const { return fgDDLPerSuperModule ; } 
@@ -71,15 +80,19 @@ class AliEMCALRawUtils : public TObject {
   static Double_t RawResponseFunction(Double_t *x, Double_t *par); 
   Bool_t   RawSampledResponse(Double_t dtime, Double_t damp, Int_t * adcH, Int_t * adcL) const;  
 
-  ClassDef(AliEMCALRawUtils,1)
 
  private:
   Double_t fHighLowGainFactor ;         // high to low gain factor for the raw RO signal
-  static Int_t fgOrder ;                // order of the gamma function for the RO signal
-  static Double_t fgTau ;                // tau parameter of gamma function for the RO signal
-  static Double_t fgTimeTrigger ;       // time of the trigger for the RO signal 
+  Int_t fOrder ;                        // order of the gamma function for the RO signal
+  Double_t fTau ;                       // tau parameter of gamma function for the RO signal
+  Int_t fNoiseThreshold;                // threshold to consider signal or noise
+  Int_t fNPedSamples;                   // number of samples to use in pedestal calculation
 
+  static const Int_t fgkOverflowCut = 950;  // cut to discriminate overflowed channels
   static const Int_t fgkTimeBins = 256 ; // number of sampling bins of the raw RO signal  
+  static const Int_t fgkRawSignalOverflow = 0x3FF; // maximum signal (10 bits)
+
+  static Double_t fgTimeTrigger ;       // time of the trigger for the RO signal 
   static Double_t fgTimeBinWidth;       // maximum sampled time of the raw RO signal                             
   static Int_t fgThreshold;             // threshold
   static Int_t fgDDLPerSuperModule;     // number of DDL per SuperModule
@@ -88,6 +101,8 @@ class AliEMCALRawUtils : public TObject {
   AliAltroMapping*  fMapping[2];   //only two for now
 
   TString fOption;                      //! option passed from Reconstructor
+
+  ClassDef(AliEMCALRawUtils,2)          // utilities for raw signal fitting
 };
 
 #endif