]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/analysis/AliFMDAnaParameters.h
analysis upgrade to take into account double hits in p+p collisions. Fix of warnings...
[u/mrichter/AliRoot.git] / FMD / analysis / AliFMDAnaParameters.h
1 #ifndef ALIFMDANAPARAMETERS_H
2 #define ALIFMDANAPARAMETERS_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4  * reserved. 
5  *
6  * Latest changes by Hans Hjersing Dalsgaard, NBI, hans.dalsgaard@cern.ch
7  *
8  * See cxx source for full Copyright notice                               
9  */
10 //
11 //The design of this class is based on the AliFMDParameters class. Its purpose
12 //is to hold parameters for the analysis such as background correction and 
13 //fit functions.
14 //
15 //Author: Hans Hjersing Dalsgaard, NBI, hans.dalsgaard@cern.ch
16 //
17 //____________________________________________________________________
18
19 #ifndef ROOT_TNamed
20 # include <TNamed.h>
21 #endif
22 #ifndef ROOT_TArrayI
23 # include <TArrayI.h>
24 #endif
25 #ifndef ALIFMDUSHORTMAP_H
26 # include <AliFMDUShortMap.h>
27 #endif
28 #ifndef ALIFMDBOOLMAP_H
29 # include <AliFMDBoolMap.h>
30 #endif
31 #include "AliCDBEntry.h"
32
33 #include "TFile.h"
34 #include "TObjArray.h"
35 #include "TH2F.h"
36 #include "TAxis.h"
37 #include "TH1F.h"
38 #include "AliFMDAnaCalibBackgroundCorrection.h"
39 #include "AliFMDAnaCalibEnergyDistribution.h"
40 #include <TVector2.h>
41 #include <TString.h>
42 //____________________________________________________________________
43 //
44 //  Singleton class to handle various parameters (not geometry) of the
45 //  FMD
46 //  Should get ata fromm Conditions DB.
47 //
48
49 class AliFMDAnaParameters : public TNamed
50 {
51 public:
52   /** Enumeration of things to initialize */ 
53   enum What { 
54     /** Pulser gain */ 
55     kBackgroundCorrection = 0x1, // Background Correction 
56     kEnergyDistributions  = 0x2 // Energy Distributions
57   };
58   
59   /** Singleton access
60       @return  single to */
61   static AliFMDAnaParameters* Instance();
62   
63   void Init(Bool_t forceReInit=kTRUE, UInt_t what=kBackgroundCorrection|kEnergyDistributions);
64   Float_t GetVtxCutZ();
65   Int_t GetNvtxBins();
66   Int_t GetNetaBins();
67   Float_t GetEtaMin();  
68   Float_t GetEtaMax();
69   Float_t GetMPV(Int_t det, Char_t ring, Float_t eta);
70   Float_t GetSigma(Int_t det, Char_t ring, Float_t eta);
71   Float_t Get2MIPWeight(Int_t det, Char_t ring, Float_t eta);
72   Float_t Get3MIPWeight(Int_t det, Char_t ring, Float_t eta);
73   static const char* GetBackgroundPath() { return fgkBackgroundCorrection;}
74   static const char* GetEdistPath()      { return fgkEnergyDists;}
75   TH2F* GetBackgroundCorrection(Int_t det, Char_t ring, Int_t vtxbin);
76   TH1F* GetDoubleHitCorrection(Int_t det, Char_t ring);
77   Float_t GetPhiFromSector(UShort_t det, Char_t ring, UShort_t sec);
78   Float_t GetEtaFromStrip(UShort_t det, Char_t ring, UShort_t sec, UShort_t strip, Float_t zvtx);
79   Float_t  GetStripLength(Char_t ring, UShort_t strip)  ;
80   Float_t  GetBaseStripLength(Char_t ring, UShort_t strip)  ;
81   Float_t  GetMaxR(Char_t ring) ;
82   Float_t  GetMinR(Char_t ring) ;
83   void     SetBackgroundPath(const Char_t* bgpath) {fBackgroundPath.Form(bgpath);}
84   void     SetEnergyPath(const Char_t* epath) {fEnergyPath.Form(epath);}
85   
86   static const char* fkBackgroundID;
87   static const char* fkEnergyDistributionID ;
88 protected:
89   
90   AliFMDAnaParameters();
91   
92   AliFMDAnaParameters(const AliFMDAnaParameters& o) 
93     : TNamed(o),
94       fIsInit(o.fIsInit),
95       fBackground(o.fBackground),
96       fEnergyDistribution(o.fEnergyDistribution)
97       //  fBackgroundArray(o.fBackgroundArray), 
98       //fEdistArray(o.fEdistArray)
99   {}
100   AliFMDAnaParameters& operator=(const AliFMDAnaParameters&) { return *this; }
101   virtual ~AliFMDAnaParameters() {}
102   
103   static AliFMDAnaParameters* fgInstance;   // Static singleton instance
104   
105   //  AliCDBEntry* GetEntry(const char* path, Bool_t fatal=kTRUE) const ;
106   void InitBackground();
107   void InitEnergyDists();
108   TH1F* GetEnergyDistribution(Int_t det, Char_t ring, Float_t eta);
109   TObjArray* GetBackgroundArray();
110   
111   TAxis* GetRefAxis();
112   void SetCorners(Char_t ring) ;
113   
114   Bool_t fIsInit;
115   //TObjArray*  fBackgroundArray;
116   // TObjArray*  fEdistArray;
117   AliFMDAnaCalibBackgroundCorrection* fBackground;
118   AliFMDAnaCalibEnergyDistribution* fEnergyDistribution;
119   static const char* fgkBackgroundCorrection;
120   static const char* fgkEnergyDists;
121   
122   TVector2 fCorner1;
123   TVector2 fCorner2;
124   TString fEnergyPath;
125   TString fBackgroundPath;
126
127   ClassDef(AliFMDAnaParameters,0) // Manager of parameters
128 };
129
130 #endif
131 //____________________________________________________________________
132 //
133 // Local Variables:
134 //   mode: C++
135 // End:
136 //
137 // EOF
138 //
139