]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/hfe/AliHFEspectrum.h
Removing the error message for single storage attempts, to avoid interfering with...
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEspectrum.h
CommitLineData
8c1c76e9 1/**************************************************************************
c04c80e6 2* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3* *
4* Author: The ALICE Off-line Project. *
5* Contributors are mentioned in the code where appropriate. *
6* *
7* Permission to use, copy, modify and distribute this software and its *
8* documentation strictly for non-commercial purposes is hereby granted *
9* without fee, provided that the above copyright notice appears in all *
10* copies and that both the copyright notice and this permission notice *
11* appear in the supporting documentation. The authors make no claims *
12* about the suitability of this software for any purpose. It is *
13* provided "as is" without express or implied warranty. *
14**************************************************************************/
15//
16// Class for spectrum correction
17// Subtraction of hadronic background, Unfolding of the data and
18// Renormalization done here
19// For more information see the implementation file
20//
c2690925 21#ifndef ALIHFESPECTRUM_H
22#define ALIHFESPECTRUM_H
23
c04c80e6 24#ifndef ROOT_TNamed
25#include <TNamed.h>
26#endif
27
28class TGraphErrors;
29class TObject;
30class TH1;
c2690925 31class TF1;
c04c80e6 32class TList;
e17c1f86 33class TObjArray;
c04c80e6 34class AliCFContainer;
3a72645a 35class AliHFEcontainer;
c04c80e6 36class AliCFDataGrid;
37class AliCFEffGrid;
38
39class AliHFEspectrum : public TNamed{
40 public:
41 enum CFContainer_t{
3a72645a 42 kDataContainer = 0,
43 kBackgroundData = 1,
44 kMCContainerMC = 2,
45 kMCContainerESD = 3,
8c1c76e9 46 kMCContainerCharmMC = 4,
47 kMCWeightedContainerNonHFEESD =5,
48 kMCWeightedContainerConversionESD = 6,
49 kDataContainerV0 = 7
e17c1f86 50 };
51
52 enum{
53 kElecBgSources = 6,
54 kBgLevels = 3,
a8ef1999 55 kBgPtBins = 44,
56 kCentrality = 12
e17c1f86 57 };
58
59 enum Chargetype_t{
60 kNegCharge = -1,
61 kPosCharge = 1,
62 kAllCharge = 0
8c1c76e9 63 };
3a72645a 64
c04c80e6 65 AliHFEspectrum(const char* name);
66 ~AliHFEspectrum();
3a72645a 67
c04c80e6 68
c2690925 69 Bool_t Init(const AliHFEcontainer *datahfecontainer, const AliHFEcontainer *mchfecontainer, const AliHFEcontainer *v0hfecontainer=0x0, const AliHFEcontainer *bghfecontainer=0x0);
3a72645a 70 Bool_t Correct(Bool_t subtractcontamination=kTRUE);
c2690925 71 Bool_t CorrectBeauty(Bool_t subtractcontamination=kTRUE);
3a72645a 72
73 AliCFDataGrid *SubtractBackground(Bool_t setBackground = kFALSE);
74
75 AliCFDataGrid *CorrectV0Efficiency(AliCFDataGrid* const bgsubpectrum = 0x0);
c2690925 76 AliCFDataGrid *CorrectParametrizedEfficiency(AliCFDataGrid* const bgsubpectrum = 0x0);
3a72645a 77
78 TList *Unfold(AliCFDataGrid* const bgsubpectrum = 0x0);
79 AliCFDataGrid *CorrectForEfficiency(AliCFDataGrid* const bgsubpectrum = 0x0);
80
c2690925 81 TGraphErrors *Normalize(THnSparse * const spectrum,Int_t i = 0) const;
82 TGraphErrors *Normalize(AliCFDataGrid * const spectrum,Int_t i = 0) const;
83 TGraphErrors *NormalizeTH1N(TH1 *input,Int_t normalization) const;
84 void CorrectFromTheWidth(TH1D *h1) const;
8c1c76e9 85 void CorrectStatErr(AliCFDataGrid *backgroundGrid) const;
3a72645a 86
c04c80e6 87 void SetCorrelation(THnSparseF * const correlation) {fCorrelation = correlation; };
88 void SetContainer(AliCFContainer *cont, AliHFEspectrum::CFContainer_t type);
c2690925 89 void SetEfficiencyFunction(TF1 *efficiencyFunction) { fEfficiencyFunction = efficiencyFunction; };
90 void SetPbPbAnalysis(Bool_t isPbPb = kFALSE) { fBeamType=(Char_t) isPbPb; };
a8ef1999 91
11ff28c5 92 void SetParameterizedEff(AliCFContainer *container, AliCFContainer *containermb, AliCFContainer *containeresd, AliCFContainer *containeresdmb, Int_t *dimensions);
3a72645a 93
c2690925 94 void SetNumberOfEvents(Int_t nEvents,Int_t i = 0) { fNEvents[i] = nEvents; };
95 void SetNumberOfMCEvents(Int_t nEvents) { fNMCEvents = nEvents; };
a8ef1999 96 void SetNumberOfMC2Events(Int_t nEvents,Int_t i = 0) { fNMCbgEvents[i] = nEvents; };
c04c80e6 97 void SetMCEffStep(Int_t step) { fStepMC = step; };
98 void SetMCTruthStep(Int_t step) { fStepTrue = step; };
99 void SetStepToCorrect(Int_t step) { fStepData = step; };
3a72645a 100 void SetStepBeforeCutsV0(Int_t step) { fStepBeforeCutsV0 = step; };
101 void SetStepAfterCutsV0(Int_t step) { fStepAfterCutsV0 = step; };
bf892a6a 102 void SetNbDimensions(Int_t nbDimensions) { fNbDimensions = nbDimensions; };
e17c1f86 103 void SetChargeChoosen(Chargetype_t chargechoosen) {fChargeChoosen = chargechoosen; };
8c1c76e9 104 void SetEtaRange(Double_t etamin, Double_t etamax) { fEtaRange[0] = etamin; fEtaRange[1] = etamax; fEtaSelected = kTRUE; }
c2690925 105 void SetUnSetCorrelatedErrors(Bool_t unsetcorrelatederrors) {fUnSetCorrelatedErrors = unsetcorrelatederrors;};
e156c3bb 106 void SetSmoothing(Bool_t setSmoothing) {fSetSmoothing = setSmoothing;};
0e30407a 107 void SetTestOneBinCentrality(Double_t centralitymin, Double_t centralitymax) { fTestCentralityLow = centralitymin; fTestCentralityHigh = centralitymax;}
c2690925 108
109 void SetNCentralityBinAtTheEnd(Int_t nCentralityBinAtTheEnd) {fNCentralityBinAtTheEnd = nCentralityBinAtTheEnd; };
110 void SetLowHighBoundaryCentralityBinAtTheEnd(Int_t low, Int_t high, Int_t i) { fLowBoundaryCentralityBinAtTheEnd[i] = low; fHighBoundaryCentralityBinAtTheEnd[i] = high;};
111
112 void SetBeautyAnalysis() { fInclusiveSpectrum = kFALSE; };
a8ef1999 113 void CallInputFileForBeauty2ndMethod();
114 void SetInputFileForBeauty2ndMethod(const char *filenameb = "BSpectrum2ndmethod.root"){fkBeauty2ndMethodfilename = filenameb; };
115 void SetBeautyAnalysis2ndMethod(Bool_t beauty2ndmethod) { fBeauty2ndMethod = beauty2ndmethod; }
11ff28c5 116 void SetIPEffCombinedSamples(Bool_t ipEffCombinedSamples) { fIPEffCombinedSamples = ipEffCombinedSamples; }
c2690925 117 void SetHadronEffbyIPcut(THnSparseF* hsHadronEffbyIPcut) { fHadronEffbyIPcut = hsHadronEffbyIPcut;};
e17c1f86 118 void SetNonHFEsyst(Bool_t syst){ fNonHFEsyst = syst; };
3a72645a 119
c04c80e6 120 void SetStepGuessedUnfolding(Int_t stepGuessedUnfolding) { fStepGuessedUnfolding = stepGuessedUnfolding; };
121 void SetNumberOfIteration(Int_t numberOfIteration) { fNumberOfIterations = numberOfIteration; };
3a72645a 122
c04c80e6 123 void SetDumpToFile(Bool_t dumpToFile) { fDumpToFile=dumpToFile; };
124
e17c1f86 125 void SetDebugLevel(Int_t debugLevel, Bool_t writeToFile = kFALSE) { fDebugLevel = debugLevel; fWriteToFile = writeToFile; };
c04c80e6 126
a8ef1999 127
128 AliCFDataGrid* GetRawBspectra2ndMethod();
c2690925 129 AliCFDataGrid* GetCharmBackground();
130 AliCFDataGrid* GetConversionBackground();
131 AliCFDataGrid* GetNonHFEBackground();
8c1c76e9 132 THnSparse* GetCharmWeights();
0e30407a 133 THnSparse* GetBeautyIPEff(Bool_t isMCpt);
8c1c76e9 134 THnSparse* GetPIDxIPEff(Int_t source);
a8ef1999 135 void CalculateNonHFEsyst(Int_t centrality = 0);
c2690925 136
137 void EnableIPanaHadronBgSubtract() { fIPanaHadronBgSubtract = kTRUE; };
138 void EnableIPanaCharmBgSubtract() { fIPanaCharmBgSubtract = kTRUE; };
139 void EnableIPanaConversionBgSubtract() { fIPanaConversionBgSubtract = kTRUE; };
140 void EnableIPanaNonHFEBgSubtract() { fIPanaNonHFEBgSubtract = kTRUE; };
a8ef1999 141 void EnableIPParameterizedEff() { fIPParameterizedEff = kTRUE; };
c2690925 142
c04c80e6 143 protected:
3a72645a 144
c04c80e6 145 AliCFContainer *GetContainer(AliHFEspectrum::CFContainer_t contt);
0e30407a 146 AliCFContainer *GetSlicedContainer(AliCFContainer *cont, Int_t ndim, Int_t *dimensions,Int_t source=-1,Chargetype_t charge=kAllCharge,Int_t centralitylow=-1, Int_t centralityhigh=-1);
147 THnSparseF *GetSlicedCorrelation(THnSparseF *correlationmatrix,Int_t nDim, Int_t *dimensions,Int_t centralitylow=-1, Int_t centralityhigh=-1) const;
c2690925 148 TObject* GetSpectrum(const AliCFContainer * const c, Int_t step);
149 TObject* GetEfficiency(const AliCFContainer * const c, Int_t step, Int_t step0);
c04c80e6 150
151 void AddTemporaryObject(TObject *cont);
152 void ClearObject(TObject *o);
153
c2690925 154 TGraphErrors *NormalizeTH1(TH1 *input,Int_t i = 0) const;
c04c80e6 155
156
157 private:
158 AliHFEspectrum(const AliHFEspectrum &);
159 AliHFEspectrum &operator=(const AliHFEspectrum &);
160
e17c1f86 161 TObjArray *fCFContainers; // List of Correction Framework Containers
c04c80e6 162 TList *fTemporaryObjects; // Emulate garbage collection
163 THnSparseF *fCorrelation; // Correlation Matrices
164 AliCFDataGrid *fBackground; // Background Grid
c2690925 165 TF1 *fEfficiencyFunction; // Efficiency Function
a8ef1999 166 TF1 *fEfficiencyTOFPIDD[kCentrality]; // TOF PID efficiency parameterized
11ff28c5 167 TF1 *fEfficiencyesdTOFPIDD[kCentrality]; // TOF PID efficiency parameterized
a8ef1999 168 TF1 *fEfficiencyIPCharmD[kCentrality]; // IP efficiency parameterized for charm
169 TF1 *fEfficiencyIPBeautyD[kCentrality]; // IP efficiency parameterized for beauty
0e30407a 170 TF1 *fEfficiencyIPBeautyesdD[kCentrality]; // IP efficiency parameterized for beauty for esd
a8ef1999 171 TF1 *fEfficiencyIPConversionD[kCentrality]; // IP efficiency parameterized for conversion
172 TF1 *fEfficiencyIPNonhfeD[kCentrality]; // IP efficiency parameterized for nonhfe
c2690925 173
174 THnSparseF *fWeightCharm; // Weight for charm bg
c04c80e6 175
a8ef1999 176 AliCFContainer *fConvSourceContainer[kElecBgSources][kBgLevels][kCentrality]; //container for conversion electrons, divided into different photon sources
177 AliCFContainer *fNonHFESourceContainer[kElecBgSources][kBgLevels][kCentrality]; //container for non-HF electrons, divided into different sources
e17c1f86 178
3a72645a 179 Bool_t fInclusiveSpectrum; // Inclusive Spectrum
c04c80e6 180 Bool_t fDumpToFile; // Write Result in a file
181
8c1c76e9 182 Bool_t fEtaSelected; // Switch for eta selection
c2690925 183 Bool_t fUnSetCorrelatedErrors; // Unset correlated errors
e156c3bb 184 Bool_t fSetSmoothing; // Set smoothing
c2690925 185
186 Bool_t fIPanaHadronBgSubtract; // Hadron background subtraction
187 Bool_t fIPanaCharmBgSubtract; // Charm background subtraction
188 Bool_t fIPanaConversionBgSubtract; // Conversion background subtraction
189 Bool_t fIPanaNonHFEBgSubtract; // nonHFE except for conversion background subtraction
a8ef1999 190 Bool_t fIPParameterizedEff; // switch to use parameterized efficiency for ip analysis
e17c1f86 191 Bool_t fNonHFEsyst; // choose NonHFE background level (upper, lower, central)
a8ef1999 192 Bool_t fBeauty2ndMethod; // 2nd method to get beauty spectrum
11ff28c5 193 Bool_t fIPEffCombinedSamples; // flag to combine two different samples
c2690925 194
3a72645a 195 Int_t fNbDimensions; // Number of dimensions for the correction
c2690925 196 Int_t fNEvents[20]; // Number of Events
197 Int_t fNMCEvents; // Number of MC Events
a8ef1999 198 Int_t fNMCbgEvents[20]; // Number of BG MC Events
c04c80e6 199 Int_t fStepMC; // MC step (for unfolding)
200 Int_t fStepTrue; // MC step of the final spectrum
201 Int_t fStepData; // Data Step (various applications)
3a72645a 202 Int_t fStepBeforeCutsV0; // Before cuts V0
203 Int_t fStepAfterCutsV0; // After cuts V0
c04c80e6 204 Int_t fStepGuessedUnfolding; // Step for first guessed unfolding
205 Int_t fNumberOfIterations; // Number of iterations
e17c1f86 206 Chargetype_t fChargeChoosen; // Select positive or negative electrons
c2690925 207
8c1c76e9 208 Double_t fEtaRange[2]; // Eta range
e17c1f86 209 Double_t fEtaRangeNorm[2]; // Eta range used in the normalization
8c1c76e9 210
11ff28c5 211 Int_t fNCentralityBinAtTheEnd;// Number of centrality class at the end
c2690925 212 Int_t fLowBoundaryCentralityBinAtTheEnd[20]; // Boundary of the bins
213 Int_t fHighBoundaryCentralityBinAtTheEnd[20]; // Boundary of the bins
0e30407a 214 Int_t fTestCentralityLow; // To test one bin in centrality only
215 Int_t fTestCentralityHigh; // To test one bin in centrality only
c2690925 216
217 THnSparseF *fHadronEffbyIPcut;// container for hadron efficiency by IP cut
a8ef1999 218 TH1D *fEfficiencyCharmSigD[kCentrality]; // charm IP cut eff from signal enhanced MC
219 TH1D *fEfficiencyBeautySigD[kCentrality]; // beauty IP cut eff from signal enhanced MC
0e30407a 220 TH1D *fEfficiencyBeautySigesdD[kCentrality]; // beauty IP cut eff from signal enhanced MC for esd
a8ef1999 221 TH1D *fConversionEff[kCentrality]; // conversion IP cut eff
222 TH1D *fNonHFEEff[kCentrality]; // nonhfe IP cut eff
11ff28c5 223 TH1D *fCharmEff[kCentrality]; // charm IP cut eff
224 TH1D *fBeautyEff[kCentrality]; // beauty IP cut eff
225 TH1D *fConversionEffbgc; // conversion IP cut eff
226 TH1D *fNonHFEEffbgc; // nonhfe IP cut eff
a8ef1999 227 TH1D *fBSpectrum2ndMethod; // beauty spectrum for 2nd method
228 const char *fkBeauty2ndMethodfilename; // name of file, which contains beauty spectrum for 2ndmethod
8c1c76e9 229 Char_t fBeamType; // beamtype; default -1; pp =0; PbPb=1
c2690925 230
c04c80e6 231
3a72645a 232 Int_t fDebugLevel; // Debug Level
e17c1f86 233 Bool_t fWriteToFile; // Write plots to eps files
c04c80e6 234
235 ClassDef(AliHFEspectrum, 1)
236};
237#endif
238