]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRecoParam.h
DAs upgraded to AliZDCRawStream class
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecoParam.h
1 #ifndef ALIPHOSRECOPARAM_H
2 #define ALIPHOSRECOPARAM_H
3 /* Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                          */
5
6 /* $Id$ */
7                                               
8 // Base class for the PHOS reconstruction parameters.
9 // Do not use in the reconstruction; use derivative classes instead.
10
11 #include "AliDetectorRecoParam.h"
12
13 class AliPHOSRecoParam : public AliDetectorRecoParam {
14
15 public:
16
17   AliPHOSRecoParam();
18   AliPHOSRecoParam(const AliPHOSRecoParam& recoParam);
19   AliPHOSRecoParam& operator = (const AliPHOSRecoParam& recoParam);
20   virtual ~AliPHOSRecoParam() {}
21
22   Float_t GetEMCClusteringThreshold() const { return fEMCClusteringThreshold;  }
23   Float_t GetEMCLocalMaxCut()         const { return fEMCLocMaxCut;            }
24   Float_t GetEMCMinE()                const { return fEMCMinE;                 }
25   Float_t GetEMCLogWeight()           const { return fEMCW0;                   }
26   Float_t GetEMCSampleQualityCut()    const { return fEMCSampleQualityCut;     }
27   Float_t GetEMCEcoreRadius()         const { return fEMCEcoreRadius;          }
28   Bool_t  EMCEcore2ESD()              const { return fEMCEcore2ESD;            }
29   Bool_t  EMCSubtractPedestals()      const { return fEMCSubtractPedestals;    }
30   Bool_t  EMCToUnfold()               const { return fEMCUnfold;               }
31   const char* EMCDecoderVersion()     const { return fEMCDecoderVersion.Data();}
32   Int_t   GetGlobalAltroOffset()      const { return fGlobalAltroOffset ;      }
33
34   Float_t GetCPVClusteringThreshold() const { return fCPVClusteringThreshold;  }
35   Float_t GetCPVLocalMaxCut()         const { return fCPVLocMaxCut;            }
36   Float_t GetCPVMinE()                const { return fCPVMinE;                 }
37   Float_t GetCPVLogWeight()           const { return fCPVW0;                   }
38   Bool_t  CPVToUnfold()               const { return fCPVUnfold;               }
39
40   void SetEMCClusteringThreshold(Float_t cluth)      { fEMCClusteringThreshold=cluth;   }
41   void SetEMCLocalMaxCut(Float_t cut)                { fEMCLocMaxCut          =cut;     }
42   void SetEMCMinE(Float_t minE)                      { fEMCMinE               =minE;    }
43   void SetEMCLogWeight(Float_t w)                    { fEMCW0                 =w;       }
44   void SetEMCSampleQualityCut(Float_t qu)            { fEMCSampleQualityCut   =qu;      }
45   void SetEMCEcoreRadius(Float_t rCore)              { fEMCEcoreRadius        =rCore;   }
46   void SetEMCEcore2ESD(Bool_t ecore)                 { fEMCEcore2ESD          =ecore;   }
47   void SetEMCSubtractPedestals(Bool_t subtract)      { fEMCSubtractPedestals  =subtract;} 
48   void SetEMCDecoderVersion(const char* version="v1"){ fEMCDecoderVersion     =version ;}
49   void SetEMCUnfolding(Bool_t toUnfold=kFALSE)       { fEMCUnfold            =toUnfold;}
50   void SetGlobalAltroOffset(Int_t offset=5)          {fGlobalAltroOffset     = offset ; }
51
52   void SetCPVClusteringThreshold(Float_t cluth)      { fCPVClusteringThreshold=cluth;   }
53   void SetCPVLocalMaxCut(Float_t cut)                { fCPVLocMaxCut          =cut;     }
54   void SetCPVMinE(Float_t minE)                      { fCPVMinE               =minE;    }
55   void SetCPVLogWeight(Float_t w)                    { fCPVW0                 =w;       }
56   void SetCPVUnfolding(Bool_t toUnfold=kFALSE)       { fCPVUnfold            =toUnfold;}
57
58   virtual void Print(const Option_t *option="") const;
59
60   static AliPHOSRecoParam* GetDefaultParameters();
61   static const  TObjArray* GetMappings();
62
63 protected:
64
65   Float_t fEMCClusteringThreshold; // EMC: Min.digit energy to start a new cluster, in GeV
66   Float_t fEMCLocMaxCut;           // EMC: Min.energy difference between two local maxima, in GeV
67   Float_t fEMCMinE;                // EMC: Min.E in the digits list associated with rec.point, in GeV
68   Float_t fEMCW0;                  // EMC: Log.weight to evaluate a local coordinate of rec.point
69   Float_t fEMCSampleQualityCut;    // EMC: Cut on pulse shape fit quality
70   Float_t fEMCEcoreRadius;         // EMC: Radius within which the core energy is calculated, in cm
71   Bool_t  fEMCEcore2ESD;           // EMC: true if Ecore is stored in ESD instead of Etot
72   Bool_t  fEMCSubtractPedestals;   // EMC: true if pedestal should be subtracted (in non-ZS)
73   Bool_t  fEMCUnfold;              // EMC: true if overlapped clusters should be unfolded
74   TString fEMCDecoderVersion ;     // EMC: AliPHOSRawDecoder version
75   Int_t   fGlobalAltroOffset ;     // Offset used in ALTRO chips in SZ runs
76
77   Float_t fCPVClusteringThreshold; // CPV: Min.digit energy to start a new cluster, in GeV
78   Float_t fCPVLocMaxCut;           // CPV: Min.energy difference between two local maxima, in GeV
79   Float_t fCPVMinE;                // CPV: Min.E in the digits list associated with rec.point, in GeV
80   Float_t fCPVW0;                  // CPV: Log.weight to evaluate a local coordinate of rec.point
81   Bool_t  fCPVUnfold;              // CPV: true if overlapped clusters should be unfolded
82
83   static TObjArray* fgkMaps;       // ALTRO mappings for RCU0..RCU3
84
85   ClassDef(AliPHOSRecoParam,7)
86 };
87
88 #endif