414acf4e |
1 | #ifndef ALIEMCALHADRONCORRECTIONV1_H |
2 | #define ALIEMCALHADRONCORRECTIONV1_H |
3 | /* Copyright(c) 1998-2002, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ |
5 | |
6 | // |
7 | //*-- Author: Mark Horner (LBL/UCT) |
8 | // |
9 | #include "AliEMCALHadronCorrection.h" |
10 | |
11 | |
12 | #define HCPARAMETERS 6 |
13 | #define HCPARAMETERSETS 2 |
14 | |
15 | class AliEMCALGeometry; |
16 | |
17 | class AliEMCALHadronCorrectionv1: public AliEMCALHadronCorrection { |
18 | public: |
19 | static AliEMCALHadronCorrectionv1* Instance(); |
20 | virtual Double_t GetEnergy(const Double_t pmom,const Double_t eta,const Int_t gid); |
21 | Double_t GetEnergy(const Double_t pmom, const Double_t eta) |
22 | {return GetEnergy(pmom,eta,7);} |
23 | |
bdade85d |
24 | void SetGeometry(TString name, Double_t fs = 1.); |
414acf4e |
25 | virtual ~AliEMCALHadronCorrectionv1() {} |
26 | protected: |
27 | AliEMCALHadronCorrectionv1(const char *name="HadronCorrectionv1", const char *title="Hadron Correction"); |
28 | |
29 | // AliEMCALHadronCorrectionv1(const char *name="HadronCorrectionv1", const char *title="Hadron Correction",AliEMCALGeometry *geometry = NULL); |
bdade85d |
30 | void SetGeometry(AliEMCALGeometry *geometry); |
31 | |
414acf4e |
32 | private: |
a1a74fe1 |
33 | void SetParameters(TString name = "") {;} |
34 | |
414acf4e |
35 | static AliEMCALHadronCorrectionv1* fHadrCorr; |
36 | Double_t fPar[6]; |
bdade85d |
37 | Float_t fSamplingFraction; |
38 | |
414acf4e |
39 | |
bdade85d |
40 | ClassDef(AliEMCALHadronCorrectionv1,2) // Hadron correction for EMC (version for MDC) |
414acf4e |
41 | }; |
42 | |
43 | #endif // ALIEMCALHADRONCORRECTIONV1_H |