]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSRecoParam.h
Updated histogram limits (PHOS energy)
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecoParam.h
index 8618dd32fcf3efbf2d5d7699b99c4fd1a0640c45..55e373be3d303d108a034d96cca721d1b5b8a2a1 100644 (file)
@@ -8,10 +8,9 @@
 // Base class for the PHOS reconstruction parameters.
 // Do not use in the reconstruction; use derivative classes instead.
 
-#include "TNamed.h"
+#include "AliDetectorRecoParam.h"
 
-
-class AliPHOSRecoParam : public TNamed {
+class AliPHOSRecoParam : public AliDetectorRecoParam {
 
 public:
 
@@ -20,27 +19,70 @@ public:
   AliPHOSRecoParam& operator = (const AliPHOSRecoParam& recoParam);
   virtual ~AliPHOSRecoParam() {}
 
-  Float_t GetClusteringThreshold() const { return fClusteringThreshold; }
-  Float_t GetLocalMaxCut() const { return fLocMaxCut;}
-  Float_t GetMinE() const { return fMinE; }
-  Float_t GetLogWeight() const { return fW0; }
-  Bool_t  SubtractPedestals() { return fSubtractPedestals; }
+  Float_t GetEMCClusteringThreshold() const { return fEMCClusteringThreshold;  }
+  Float_t GetEMCLocalMaxCut()         const { return fEMCLocMaxCut;            }
+  Float_t GetEMCMinE()                const { return fEMCMinE;                 }
+  Float_t GetEMCLogWeight()           const { return fEMCW0;                   }
+  Float_t GetEMCSampleQualityCut()    const { return fEMCSampleQualityCut;     }
+  Float_t GetEMCEcoreRadius()         const { return fEMCEcoreRadius;          }
+  Bool_t  EMCEcore2ESD()              const { return fEMCEcore2ESD;            }
+  Bool_t  EMCSubtractPedestals()      const { return fEMCSubtractPedestals;    }
+  Bool_t  EMCToUnfold()               const { return fEMCUnfold;               }
+  const char* EMCDecoderVersion()     const { return fEMCDecoderVersion.Data();}
+  Int_t   GetGlobalAltroOffset()      const { return fGlobalAltroOffset ;      }
+
+  Float_t GetCPVClusteringThreshold() const { return fCPVClusteringThreshold;  }
+  Float_t GetCPVLocalMaxCut()         const { return fCPVLocMaxCut;            }
+  Float_t GetCPVMinE()                const { return fCPVMinE;                 }
+  Float_t GetCPVLogWeight()           const { return fCPVW0;                   }
+  Bool_t  CPVToUnfold()               const { return fCPVUnfold;               }
+
+  void SetEMCClusteringThreshold(Float_t cluth)      { fEMCClusteringThreshold=cluth;   }
+  void SetEMCLocalMaxCut(Float_t cut)                { fEMCLocMaxCut          =cut;     }
+  void SetEMCMinE(Float_t minE)                      { fEMCMinE               =minE;    }
+  void SetEMCLogWeight(Float_t w)                    { fEMCW0                 =w;       }
+  void SetEMCSampleQualityCut(Float_t qu)            { fEMCSampleQualityCut   =qu;      }
+  void SetEMCEcoreRadius(Float_t rCore)              { fEMCEcoreRadius        =rCore;   }
+  void SetEMCEcore2ESD(Bool_t ecore)                 { fEMCEcore2ESD          =ecore;   }
+  void SetEMCSubtractPedestals(Bool_t subtract)      { fEMCSubtractPedestals  =subtract;} 
+  void SetEMCDecoderVersion(const char* version="v1"){ fEMCDecoderVersion     =version ;}
+  void SetEMCUnfolding(Bool_t toUnfold=kFALSE)       { fEMCUnfold            =toUnfold;}
+  void SetGlobalAltroOffset(Int_t offset=5)          {fGlobalAltroOffset     = offset ; }
+
+  void SetCPVClusteringThreshold(Float_t cluth)      { fCPVClusteringThreshold=cluth;   }
+  void SetCPVLocalMaxCut(Float_t cut)                { fCPVLocMaxCut          =cut;     }
+  void SetCPVMinE(Float_t minE)                      { fCPVMinE               =minE;    }
+  void SetCPVLogWeight(Float_t w)                    { fCPVW0                 =w;       }
+  void SetCPVUnfolding(Bool_t toUnfold=kFALSE)       { fCPVUnfold            =toUnfold;}
 
-  void SetClusteringThreshold(Float_t cluth) { fClusteringThreshold=cluth; }
-  void SetLocalMaxCut(Float_t cut) { fLocMaxCut=cut;}
-  void SetMinE(Float_t minE) { fMinE=minE; }
-  void SetLogWeight(Float_t w) { fW0=w; }
-  void SetSubtractPedestals(Bool_t subtract) { fSubtractPedestals=subtract; } 
+  virtual void Print(const Option_t *option="") const;
+
+  static AliPHOSRecoParam* GetDefaultParameters();
+  static const  TObjArray* GetMappings();
 
 protected:
 
-  Float_t fClusteringThreshold;
-  Float_t fLocMaxCut;
-  Float_t fMinE;
-  Float_t fW0;
-  Bool_t  fSubtractPedestals;
+  Float_t fEMCClusteringThreshold; // EMC: Min.digit energy to start a new cluster, in GeV
+  Float_t fEMCLocMaxCut;           // EMC: Min.energy difference between two local maxima, in GeV
+  Float_t fEMCMinE;                // EMC: Min.E in the digits list associated with rec.point, in GeV
+  Float_t fEMCW0;                  // EMC: Log.weight to evaluate a local coordinate of rec.point
+  Float_t fEMCSampleQualityCut;    // EMC: Cut on pulse shape fit quality
+  Float_t fEMCEcoreRadius;         // EMC: Radius within which the core energy is calculated, in cm
+  Bool_t  fEMCEcore2ESD;           // EMC: true if Ecore is stored in ESD instead of Etot
+  Bool_t  fEMCSubtractPedestals;   // EMC: true if pedestal should be subtracted (in non-ZS)
+  Bool_t  fEMCUnfold;              // EMC: true if overlapped clusters should be unfolded
+  TString fEMCDecoderVersion ;     // EMC: AliPHOSRawDecoder version
+  Int_t   fGlobalAltroOffset ;     // Offset used in ALTRO chips in SZ runs
+
+  Float_t fCPVClusteringThreshold; // CPV: Min.digit energy to start a new cluster, in GeV
+  Float_t fCPVLocMaxCut;           // CPV: Min.energy difference between two local maxima, in GeV
+  Float_t fCPVMinE;                // CPV: Min.E in the digits list associated with rec.point, in GeV
+  Float_t fCPVW0;                  // CPV: Log.weight to evaluate a local coordinate of rec.point
+  Bool_t  fCPVUnfold;              // CPV: true if overlapped clusters should be unfolded
+
+  static TObjArray* fgkMaps;       // ALTRO mappings for RCU0..RCU3
 
-  ClassDef(AliPHOSRecoParam,1)
+  ClassDef(AliPHOSRecoParam,7)
 };
 
 #endif