]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/analysis/AliFMDAnaParameters.h
Fixes of warnings and upgrade of analysis to include Pb+Pb analysis. Background corre...
[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 //____________________________________________________________________
41 //
42 //  Singleton class to handle various parameters (not geometry) of the
43 //  FMD
44 //  Should get ata fromm Conditions DB.
45 //
46
47 class AliFMDAnaParameters : public TNamed
48 {
49 public:
50   /** Enumeration of things to initialize */ 
51   enum What { 
52     /** Pulser gain */ 
53     kBackgroundCorrection = 0x1, // Background Correction 
54     kEnergyDistributions  = 0x2 // Energy Distributions
55   };
56   
57   /** Singleton access
58       @return  single to */
59   static AliFMDAnaParameters* Instance();
60   
61   void Init(Bool_t forceReInit=kTRUE, UInt_t what=kBackgroundCorrection|kEnergyDistributions);
62   Float_t GetVtxCutZ();
63   Int_t GetNvtxBins();
64   Int_t GetNetaBins();
65   Float_t GetEtaMin();  
66   Float_t GetEtaMax();
67   Float_t GetMPV(Int_t det, Char_t ring, Float_t eta);
68   Float_t GetSigma(Int_t det, Char_t ring, Float_t eta);
69   Float_t Get2MIPWeight(Int_t det, Char_t ring, Float_t eta);
70   Float_t Get3MIPWeight(Int_t det, Char_t ring, Float_t eta);
71   static const char* GetBackgroundPath() { return fgkBackgroundCorrection;}
72   static const char* GetEdistPath()      { return fgkEnergyDists;}
73   TH2F* GetBackgroundCorrection(Int_t det, Char_t ring, Int_t vtxbin);
74   
75 protected:
76   
77   AliFMDAnaParameters();
78   
79   AliFMDAnaParameters(const AliFMDAnaParameters& o) 
80     : TNamed(o),
81       fIsInit(o.fIsInit),
82       fBackground(o.fBackground),
83       fEnergyDistribution(o.fEnergyDistribution)
84       //  fBackgroundArray(o.fBackgroundArray), 
85       //fEdistArray(o.fEdistArray)
86   {}
87   AliFMDAnaParameters& operator=(const AliFMDAnaParameters&) { return *this; }
88   virtual ~AliFMDAnaParameters() {}
89   
90   static AliFMDAnaParameters* fgInstance;   // Static singleton instance
91   
92   AliCDBEntry* GetEntry(const char* path, Bool_t fatal=kTRUE) const ;
93   void InitBackground();
94   void InitEnergyDists();
95   TH1F* GetEnergyDistribution(Int_t det, Char_t ring, Float_t eta);
96   TObjArray* GetBackgroundArray();
97   
98   TAxis* GetRefAxis();
99   
100   
101   Bool_t fIsInit;
102   //TObjArray*  fBackgroundArray;
103   // TObjArray*  fEdistArray;
104   AliFMDAnaCalibBackgroundCorrection* fBackground;
105   AliFMDAnaCalibEnergyDistribution* fEnergyDistribution;
106   static const char* fgkBackgroundCorrection;
107   static const char* fgkEnergyDists;
108   ClassDef(AliFMDAnaParameters,0) // Manager of parameters
109 };
110
111 #endif
112 //____________________________________________________________________
113 //
114 // Local Variables:
115 //   mode: C++
116 // End:
117 //
118 // EOF
119 //
120