]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALRecParam.h
coding violations fix (changed naming, added comments, made methods const)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRecParam.h
CommitLineData
3a8be91c 1#ifndef ALIEMCALRECPARAM_H
2#define ALIEMCALRECPARAM_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// Container of EMCAL reconstruction parameters
10// The purpose of this object is to store it to OCDB
b4133f05 11// and retrieve it in AliEMCALClusterizerv1, AliEMCALPID,
12// AliEMCALTracker and use it to configure AliEMCALRawUtils
13//
14//
3a8be91c 15// Author: Yuri Kharlov
16//-----------------------------------------------------------------------------
17
18// --- ROOT system ---
19
413e6b81 20#include "AliDetectorRecoParam.h"
225cd96d 21#include "AliLog.h"
3a8be91c 22
413e6b81 23class AliEMCALRecParam : public AliDetectorRecoParam
3a8be91c 24{
1e7c9b89 25 public:
3a8be91c 26
27 AliEMCALRecParam() ;
413e6b81 28 AliEMCALRecParam(const AliEMCALRecParam& recParam);
29 AliEMCALRecParam& operator = (const AliEMCALRecParam& recParam);
3a8be91c 30 virtual ~AliEMCALRecParam() {}
1e7c9b89 31
225cd96d 32 //Clustering (Unfolding : Cynthia)
1e7c9b89 33 Float_t GetClusteringThreshold() const {return fClusteringThreshold ;}
34 Float_t GetW0 () const {return fW0 ;}
35 Float_t GetMinECut () const {return fMinECut ;}
36 Float_t GetLocMaxCut () const {return fLocMaxCut ;}
37 Bool_t GetUnfold () const {return fUnfold ;}
38 void SetClusteringThreshold(Float_t thrsh) {fClusteringThreshold = thrsh;}
39 void SetW0 (Float_t w0) {fW0 = w0 ;}
40 void SetMinECut (Float_t minEcut) {fMinECut = minEcut ;}
41 void SetLocMaxCut (Float_t locMaxCut) {fLocMaxCut = locMaxCut ;}
42 void SetUnfold (Bool_t unfold) {fUnfold = unfold ; if(fUnfold) AliWarning("Cluster Unfolding ON. Implementing only for eta=0 case!!!");}
43
8ba062b1 44 //PID (Guenole)
1e7c9b89 45 Double_t GetGamma(Int_t i, Int_t j) const {return fGamma[i][j];}
46 Double_t GetGammaEnergyProb(Int_t i) const {return fGammaEnergyProb[i];}
47 Double_t GetGamma1to10(Int_t i, Int_t j) const {return fGamma1to10[i][j];} // not used
48 Double_t GetHadron(Int_t i, Int_t j) const {return fHadron[i][j];}
49 Double_t GetHadron1to10(Int_t i, Int_t j) const {return fHadron1to10[i][j];} // not used
50 Double_t GetHadronEnergyProb(Int_t i) const {return fHadronEnergyProb[i];}
51 Double_t GetPiZero(Int_t i, Int_t j) const {return fPiZero[i][j];}
52 Double_t GetPiZeroEnergyProb(Int_t i) const {return fPiZeroEnergyProb[i];}
53
54 void SetGamma(Int_t i, Int_t j,Double_t param ) {fGamma[i][j]=param;}
55 void SetGammaEnergyProb(Int_t i, Double_t param ) {fGammaEnergyProb[i]=param;}
56 void SetGamma1to10(Int_t i, Int_t j,Double_t param ) {fGamma1to10[i][j]=param;}
57 void SetHadron(Int_t i, Int_t j,Double_t param ) {fHadron[i][j]=param;}
58 void SetHadron1to10(Int_t i, Int_t j,Double_t param ) {fHadron1to10[i][j]=param;}
59 void SetHadronEnergyProb(Int_t i,Double_t param ) {fHadronEnergyProb[i]=param;}
60 void SetPiZero(Int_t i, Int_t j,Double_t param) {fPiZero[i][j]=param;}
61 void SetPiZeroEnergyProb(Int_t i,Double_t param) {fPiZeroEnergyProb[i]=param;}
62
8ba062b1 63 //Track Matching (Alberto)
64 /* track matching cut setters */
65 void SetTrkCutX(Double_t value) {fTrkCutX = value;}
66 void SetTrkCutY(Double_t value) {fTrkCutY = value;}
67 void SetTrkCutZ(Double_t value) {fTrkCutZ = value;}
68 void SetTrkCutR(Double_t value) {fTrkCutR = value;}
69 void SetTrkCutAlphaMin(Double_t value) {fTrkCutAlphaMin = value;}
70 void SetTrkCutAlphaMax(Double_t value) {fTrkCutAlphaMax = value;}
71 void SetTrkCutAngle(Double_t value) {fTrkCutAngle = value;}
1e7c9b89 72 void SetTrkCutNITS(Double_t value) {fTrkCutNITS = value;}
73 void SetTrkCutNTPC(Double_t value) {fTrkCutNTPC = value;}
8ba062b1 74 /* track matching cut getters */
75 Double_t GetTrkCutX() const {return fTrkCutX;}
76 Double_t GetTrkCutY() const {return fTrkCutY;}
77 Double_t GetTrkCutZ() const {return fTrkCutZ;}
78 Double_t GetTrkCutR() const {return fTrkCutR;}
79 Double_t GetTrkCutAlphaMin() const {return fTrkCutAlphaMin;}
80 Double_t GetTrkCutAlphaMax() const {return fTrkCutAlphaMax;}
81 Double_t GetTrkCutAngle() const {return fTrkCutAngle;}
1e7c9b89 82 Double_t GetTrkCutNITS() const {return fTrkCutNITS;}
83 Double_t GetTrkCutNTPC() const {return fTrkCutNTPC;}
84
b4133f05 85 //Raw signal fitting (Jenn)
86 /* raw signal setters */
87 void SetHighLowGainFactor(Double_t value) {fHighLowGainFactor = value;}
88 void SetOrderParameter(Int_t value) {fOrderParameter = value;}
89 void SetTau(Double_t value) {fTau = value;}
90 void SetNoiseThreshold(Int_t value) {fNoiseThreshold = value;}
91 void SetNPedSamples(Int_t value) {fNPedSamples = value;}
92 /* raw signal getters */
93 Double_t GetHighLowGainFactor() const {return fHighLowGainFactor;}
94 Int_t GetOrderParameter() const {return fOrderParameter;}
95 Double_t GetTau() const {return fTau;}
96 Int_t GetNoiseThreshold() const {return fNoiseThreshold;}
97 Int_t GetNPedSamples() const {return fNPedSamples;}
1e7c9b89 98
8ba062b1 99 virtual void Print(Option_t * option="") const ;
1e7c9b89 100
413e6b81 101 static AliEMCALRecParam* GetDefaultParameters();
f5fc991a 102 static AliEMCALRecParam* GetLowFluxParam();
103 static AliEMCALRecParam* GetHighFluxParam();
98cf874d 104 static AliEMCALRecParam* GetCalibParam();
105 static AliEMCALRecParam* GetCosmicParam();
1e7c9b89 106
feedcab9 107 static const TObjArray* GetMappings();
1e7c9b89 108
109 private:
8ba062b1 110 //Clustering
3a8be91c 111 Float_t fClusteringThreshold ; // minimum energy to seed a EC digit in a cluster
112 Float_t fW0 ; // logarithmic weight for the cluster center of gravity calculation
113 Float_t fMinECut; // Minimum energy for a digit to be a member of a cluster
1e7c9b89 114 Bool_t fUnfold; // flag to perform cluster unfolding
225cd96d 115 Float_t fLocMaxCut; // minimum energy difference to consider local maxima in a cluster
1e7c9b89 116
8ba062b1 117 //PID (Guenole)
1e7c9b89 118 Double_t fGamma[6][6]; // Parameter to Compute PID for photons
119 Double_t fGamma1to10[6][6]; // Parameter to Compute PID not used
120 Double_t fHadron[6][6]; // Parameter to Compute PID for hadrons
121 Double_t fHadron1to10[6][6]; // Parameter to Compute PID for hadrons between 1 and 10 GeV
122 Double_t fHadronEnergyProb[6]; // Parameter to Compute PID for energy ponderation for hadrons
123 Double_t fPiZeroEnergyProb[6]; // Parameter to Compute PID for energy ponderation for Pi0
124 Double_t fGammaEnergyProb[6]; // Parameter to Compute PID for energy ponderation for gamma
125 Double_t fPiZero[6][6]; // Parameter to Compute PID for pi0
126
127
8ba062b1 128 //Track-Matching (Alberto)
129 Double_t fTrkCutX; // X-difference cut for track matching
130 Double_t fTrkCutY; // Y-difference cut for track matching
131 Double_t fTrkCutZ; // Z-difference cut for track matching
132 Double_t fTrkCutR; // cut on allowed track-cluster distance
133 Double_t fTrkCutAlphaMin; // cut on 'alpha' parameter for track matching (min)
134 Double_t fTrkCutAlphaMax; // cut on 'alpha' parameter for track matching (min)
135 Double_t fTrkCutAngle; // cut on relative angle between different track points for track matching
1e7c9b89 136 Double_t fTrkCutNITS; // Number of ITS hits for track matching
137 Double_t fTrkCutNTPC; // Number of TPC hits for track matching
138
b4133f05 139 //Raw signal fitting parameters (Jenn)
140 Double_t fHighLowGainFactor; //gain factor to convert between high and low gain
141 Int_t fOrderParameter; //order parameter for raw signal fit
142 Double_t fTau; //decay constant for raw signal fit
143 Int_t fNoiseThreshold; //threshold to consider signal or noise
144 Int_t fNPedSamples; //number of time samples to use in pedestal calculation
1e7c9b89 145
feedcab9 146 static TObjArray* fgkMaps; // ALTRO mappings for RCU0..RCUX
1e7c9b89 147
148 ClassDef(AliEMCALRecParam,7) // Reconstruction parameters
149
150 } ;
3a8be91c 151
152#endif // ALIEMCALRECPARAM_H
8ba062b1 153