FairRoot/PandaRoot
PndMdtRecoPar.h
Go to the documentation of this file.
1 #ifndef PNDMDTRECOPAR_H
2 #define PNDMDTRECOPAR_H
3 
4 #include "FairParGenericSet.h"
5 #include "FairParamList.h"
6 
7 class PndMdtRecoPar : public FairParGenericSet
8 {
9  public :
10  //Double_t GetEnergyThresholdBarrel() {return fEnergyThresholdBarrel;};
11 
12  Float_t GetLayerPos(Int_t mod, Int_t lay) const { return fLayerPos[mod][lay]; };
13  Float_t GetAngleCut(Int_t mod) const { return fAngleCut[mod]; };
14 
15  PndMdtRecoPar (const char* name="PndMdtRecoPar",
16  const char* title="Mdt reconstruction parameter",
17  const char* context="TestDefaultContext");
18 
19  ~PndMdtRecoPar(void){};
20 
21  void Clear(void);
22 
23  void putParams(FairParamList* list);
24  Bool_t getParams(FairParamList* list);
25 
26  private :
27  //Double_t fEnergyThresholdBarrel; // Single crystal energy threshold for barrel EMC
28 
29  Float_t fLayerPos[2][10]; // Position of the MDT layers [cm]
30  Float_t fAngleCut[2]; // Cut selection for correlation [degrees]
31 
33 };
34 
35 #endif
Float_t fAngleCut[2]
Definition: PndMdtRecoPar.h:30
Float_t GetLayerPos(Int_t mod, Int_t lay) const
Definition: PndMdtRecoPar.h:12
~PndMdtRecoPar(void)
Definition: PndMdtRecoPar.h:19
PndMdtRecoPar(const char *name="PndMdtRecoPar", const char *title="Mdt reconstruction parameter", const char *context="TestDefaultContext")
void putParams(FairParamList *list)
void Clear(void)
Float_t GetAngleCut(Int_t mod) const
Definition: PndMdtRecoPar.h:13
TString name
Float_t fLayerPos[2][10]
Definition: PndMdtRecoPar.h:29
Bool_t getParams(FairParamList *list)
ClassDef(PndMdtRecoPar, 1)