]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG4/macros/ConfigGammaConversion.C
Removed the flag selection from the output folder structure
[u/mrichter/AliRoot.git] / PWG4 / macros / ConfigGammaConversion.C
1 /** VERSION NUMBER 1.1 */
2
3 /**************************************************************************
4  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  *                                                                        *
6  * Author: Ana Marin, Kathrin Koch, Kenneth Aamodt
7  * Contact: kenneth.aamodt@cern.ch
8  * Version 1.1                                                            *
9  *                                                                        *
10  * Permission to use, copy, modify and distribute this software and its   *
11  * documentation strictly for non-commercial purposes is hereby granted   *
12  * without fee, provided that the above copyright notice appears in all   *
13  * copies and that both the copyright notice and this permission notice   *
14  * appear in the supporting documentation. The authors make no claims     *
15  * about the suitability of this software for any purpose. It is          *
16  * provided "as is" without express or implied warranty.                  *
17  **************************************************************************/
18 const int c_array_size = 10;
19
20 class AliAnalysisDataContainer;
21 class AliGammaConversionHistograms;
22 class AliAnalysisTaskGammaConversion;
23
24 // set this to a number if you want to analyze a set number of files
25 // if it is 0 it will analyze the files listed in the data list
26 Int_t kGCnumberOfFilesToAnalyze=0;
27
28 Bool_t kGCrunNeutralMeson = kTRUE;
29 Bool_t kGCrunJet          = kFALSE;
30 Bool_t kGCrunChic         = kFALSE;
31 Bool_t kGCrunCF           = kFALSE;
32 Bool_t kGCcalculateBackground = kTRUE;
33 Bool_t kGCdoNeutralMesonV0MCCheck =kFALSE;
34 Bool_t kGCrunOmegaMeson = kFALSE;
35 Bool_t kGCrunRES = kFALSE;
36
37 /** ---------------------------------- define cuts here ------------------------------------*/
38
39 TString kGCAnalysisCutSelectionId="9010111000"; // do not cheange here, use -set-cut-selection in argument instead
40
41 Int_t kGCpidOfNegativeTrack=11;
42 Int_t kGCpidOfPositiveTrack=-11;
43
44 Double_t kGCmaxRCut   = 180.;
45 Double_t kGCetaCut    = 0.9;
46 Double_t kGCptCut     = 0.02;
47 Double_t kGCsingleptCut = 0.02;
48 Double_t kGCmaxZCut     = 240.;
49 Double_t kGCminClsTPCCut= 0.;
50 Double_t kGCchi2CutConversion   = 30.;
51 Double_t kGCchi2CutMeson   = 50.;
52
53 Double_t kGCLineCutZRSlope = tan(2*atan(exp(-kGCetaCut)));
54 Double_t kGCLineCutZValue = 7.;
55
56
57 Double_t kGCxVertexCut = 0.;
58 Double_t kGCyVertexCut = 0.;
59 Double_t kGCzVertexCut = 0.;
60
61 Double_t kGCsigmaCutGammaMass=0.0001;
62
63 Bool_t kGCuseImprovedVertex = kTRUE;
64
65 Bool_t kGCUseOnFlyV0Finder = kTRUE;
66
67 // define masses of different particles, this will be used by the KF particle
68 // together with the width to set mass constraints. Units in GeV.
69 Double_t kGCelectronMass = 0.00051099892;
70 Double_t kGCgammaMass    = 0.;
71 Double_t kGCpi0Mass      = 0.1349766;
72 Double_t kGCetaMass      = 0.54751;
73
74 // define the width constraint used by KF particle.
75 Double_t kGCgammaWidth = 0.01;
76 Double_t kGCpi0Width   = 0.01;
77 Double_t kGCetaWidth   = 0.01;
78
79 // define the probability of track being an electron
80 Double_t kGCprobElectron = 0.000;
81
82 Double_t kGCminOpeningAngleGhostCut = 0.005;
83
84 /** ----------------------------------end define cuts here----------------------------------*/
85
86 /** -------------------------------- Phi/R Mapping ---------------------------------------*/
87 Int_t kGCnPhiIndex = 8;
88 Int_t kGCnRIndex   = 14;
89
90 Double_t kGCminRadius   = 0.;
91 Double_t kGCmaxRadius   = 200.;
92 Double_t kGCminPhi      = -TMath::Pi();
93 Double_t kGCmaxPhi      = TMath::Pi();
94 /** ------------------------------- end Phi/R Mapping ------------------------------------*/
95
96 Bool_t kGCdoOwnXYZCalculation = kFALSE;
97
98 Bool_t kGCWriteStandardAOD =kFALSE; // need to be true for train running? CKB
99
100 /** ------------------- define which histograms to plot here --------------------------------*/
101 /**   NB: to change the bin numbers, see below the histogram flags                           */
102
103 // NEUTRAL MESON PLOTS
104 Bool_t kGCplotMCConversionR             = kTRUE;
105 Bool_t kGCplotMCConversionZR            = kTRUE;
106 Bool_t kGCplotMCConversionXY            = kTRUE;
107 Bool_t kGCplotMCConversionOpeningAngle  = kTRUE;
108 Bool_t kGCplotMCConvGammaEAsymmetryP    = kTRUE;
109 Bool_t kGCplotMCConvGammaPAsymmetryP    = kTRUE;
110
111
112 Bool_t kGCplotMCEEnergy  = kFALSE;
113 Bool_t kGCplotMCEPt      = kTRUE;
114 Bool_t kGCplotMCEEta     = kTRUE;
115 Bool_t kGCplotMCEPhi     = kTRUE;
116 Bool_t kGCplotMCENTPCClusters = kTRUE;
117 Bool_t kGCplotMCENITSClusters = kTRUE;
118
119 Bool_t kGCplotMCPEnergy  = kFALSE;
120 Bool_t kGCplotMCPPt      = kTRUE;
121 Bool_t kGCplotMCPEta     = kTRUE;
122 Bool_t kGCplotMCPPhi     = kTRUE;
123 Bool_t kGCplotMCPNTPCClusters = kTRUE;
124 Bool_t kGCplotMCPNITSClusters = kTRUE;
125
126 Bool_t kGCplotMCallGammaEnergy = kFALSE;
127 Bool_t kGCplotMCallGammaPt     = kTRUE;
128 Bool_t kGCplotMCallGammaEta    = kTRUE;
129 Bool_t kGCplotMCallGammaPhi    = kTRUE;
130 Bool_t kGCplotMCallGammaRapid  = kTRUE;
131
132
133 Bool_t kGCplotMCConvGammaEnergy  = kFALSE;
134 Bool_t kGCplotMCConvGammaPt      = kTRUE;
135 Bool_t kGCplotMCConvGammaEta     = kTRUE;
136 Bool_t kGCplotMCConvGammaPhi     = kTRUE;
137 Bool_t kGCplotMCConvGammaRapid   = kTRUE;
138 Bool_t kGCplotMCConvGammaPtvsEta = kTRUE;
139
140 Bool_t kGCplotMCallDirectGammaEnergy  = kFALSE;
141 Bool_t kGCplotMCallDirectGammaPt      = kTRUE;
142 Bool_t kGCplotMCallDirectGammaEta     = kTRUE;
143 Bool_t kGCplotMCallDirectGammaPhi     = kTRUE;
144 Bool_t kGCplotMCallDirectGammaRapid   = kTRUE;
145
146 Bool_t kGCplotMCConvDirectGammaEnergy  = kFALSE;
147 Bool_t kGCplotMCConvDirectGammaPt      = kTRUE;
148 Bool_t kGCplotMCConvDirectGammaEta     = kTRUE;
149 Bool_t kGCplotMCConvDirectGammaPhi     = kTRUE;
150 Bool_t kGCplotMCConvDirectGammaRapid   = kTRUE;
151
152 Bool_t kGCplotMCMotherEta                                       = kTRUE;
153 Bool_t kGCplotMCMotherRapid                                = kTRUE;
154 Bool_t kGCplotMCMotherPhi                                       = kTRUE;
155 Bool_t kGCplotMCMotherPt                                        = kTRUE;
156 Bool_t kGCplotMCMotherEnergy                            = kFALSE;
157 Bool_t kGCplotMCMotherMass                                      = kTRUE;
158 Bool_t kGCplotMCMotherOpeningAngle                              = kTRUE;
159 Bool_t kGCplotMCMotherR                                 = kTRUE;
160 Bool_t kGCplotMCMotherZR                                        = kFALSE;
161 Bool_t kGCplotMCMotherXY                                        = kFALSE;
162 Bool_t kGCplotMCMotherPtvsEtaWithinAcceptance              = kTRUE;
163 Bool_t kGCplotMCMotherPtvsRapidWithinAcceptance            = kTRUE;
164 Bool_t kGCplotMCMotherPtvsEtaConvGammaWithinAcceptance     = kTRUE;
165 Bool_t kGCplotMCMotherPtvsRapidConvGammaWithinAcceptance   = kTRUE;
166 Bool_t kGCplotMCMotherSpectra                           = kTRUE;
167
168 Bool_t kGCplotMCPi0Eta                                  = kTRUE;
169 Bool_t kGCplotMCPi0Rapid                                   = kTRUE;
170 Bool_t kGCplotMCPi0Phi                                     = kTRUE;
171 Bool_t kGCplotMCPi0Pt                                      = kTRUE;
172 Bool_t kGCplotMCPi0PtFiducial                              = kTRUE;
173 Bool_t kGCplotMCPi0PtWithinAcceptanceFiducial              = kTRUE;
174 Bool_t kGCplotMCPi0PtConvGammaWithinAcceptanceFiducial     = kTRUE;
175 Bool_t kGCplotMCPi0Energy                                  = kFALSE;
176 Bool_t kGCplotMCPi0Mass                                    = kTRUE;
177 Bool_t kGCplotMCPi0Alpha                                   = kTRUE;
178 Bool_t kGCplotMCPi0OpeningAngle                            = kTRUE;
179 Bool_t kGCplotMCPi0R                                       = kTRUE;
180 Bool_t kGCplotMCPi0ZR                                      = kFALSE;
181 Bool_t kGCplotMCPi0XY                                      = kFALSE;
182 Bool_t kGCplotMCPi0PtvsEtaWithinAcceptance                 = kTRUE;
183 Bool_t kGCplotMCPi0PtvsRapidWithinAcceptance               = kTRUE;
184 Bool_t kGCplotMCPi0PtvsEtaConvGammaWithinAcceptance        = kTRUE;
185 Bool_t kGCplotMCPi0PtvsRapidConvGammaWithinAcceptance      = kTRUE;
186 Bool_t kGCplotMCPi0ZRConvGammaWithinAcceptance          = kTRUE;
187
188 Bool_t kGCplotMCPi0SecondaryEta                                = kTRUE;
189 Bool_t kGCplotMCPi0SecondaryRapid                              = kTRUE;
190 Bool_t kGCplotMCPi0SecondaryPhi                                = kTRUE;
191 Bool_t kGCplotMCPi0SecondaryPt                                 = kTRUE;
192 Bool_t kGCplotMCPi0SecondaryEnergy                             = kFALSE;
193 Bool_t kGCplotMCPi0SecondaryMass                               = kTRUE;
194 Bool_t kGCplotMCPi0SecondaryOpeningAngle                       = kTRUE;
195 Bool_t kGCplotMCPi0SecondaryR                                  = kTRUE;
196 Bool_t kGCplotMCPi0SecondaryZR                                 = kFALSE;
197 Bool_t kGCplotMCPi0SecondaryXY                                 = kFALSE;
198 Bool_t kGCplotMCPi0SecondaryPtvsEtaWithinAcceptance            = kTRUE;
199 Bool_t kGCplotMCPi0SecondaryPtvsRapidWithinAcceptance          = kTRUE;
200 Bool_t kGCplotMCPi0SecondaryPtvsEtaConvGammaWithinAcceptance   = kTRUE;
201 Bool_t kGCplotMCPi0SecondaryPtvsRapidConvGammaWithinAcceptance = kTRUE;
202
203 Bool_t kGCplotMCEtaEta                                = kTRUE;
204 Bool_t kGCplotMCEtaRapid                              = kTRUE;
205 Bool_t kGCplotMCEtaPhi                                = kTRUE;
206 Bool_t kGCplotMCEtaPt                                 = kTRUE;
207 Bool_t kGCplotMCEtaEnergy                             = kFALSE;
208 Bool_t kGCplotMCEtaMass                               = kTRUE;
209 Bool_t kGCplotMCEtaOpeningAngleGamma                  = kTRUE;
210 Bool_t kGCplotMCEtaR                                  = kTRUE;
211 Bool_t kGCplotMCEtaZR                                 = kFALSE;
212 Bool_t kGCplotMCEtaXY                                 = kFALSE;
213 Bool_t kGCplotMCEtaPtvsEtaWithinAcceptance                 = kTRUE;
214 Bool_t kGCplotMCEtaPtvsRapidWithinAcceptance       = kTRUE;
215 Bool_t kGCplotMCEtaPtvsEtaConvGammaWithinAcceptance   = kTRUE;
216 Bool_t kGCplotMCEtaPtvsRapidConvGammaWithinAcceptance = kTRUE;
217 Bool_t kGCplotMCEtaZRConvGammaWithinAcceptance = kTRUE;
218
219 // Histograms from esd tracks
220 Bool_t kGCplotESDConversionR                   = kTRUE;
221 Bool_t kGCplotESDConversionZR                  = kTRUE;
222 Bool_t kGCplotESDConversionXY                  = kTRUE;
223 Bool_t kGCplotESDConversionOpeningAngle        = kTRUE;
224 Bool_t kGCplotESDConvGammaCosPointingAngle     = kTRUE;
225 Bool_t kGCplotESDConvGammaDcaDaugthers         = kTRUE;
226 Bool_t kGCplotESDConvGammaNormDcaDistDaugthers = kTRUE;
227 Bool_t kGCplotESDConvGammaLikelihoodAP         = kTRUE;
228 Bool_t kGCplotESDConvGammaEAsymmetryP         = kTRUE;
229 Bool_t kGCplotESDConvGammaPAsymmetryP         = kTRUE;
230 Bool_t kGCplotESDConvGammaEdEdxP         = kTRUE;
231 Bool_t kGCplotESDConvGammaPdEdxP         = kTRUE;
232 Bool_t kGCplotESDConvGammaQtAlfa         = kTRUE;
233
234
235 Bool_t kGCplotESDEEnergy = kFALSE;
236 Bool_t kGCplotESDEPt     = kTRUE;
237 Bool_t kGCplotESDEEta    = kTRUE;
238 Bool_t kGCplotESDEPhi    = kTRUE;
239 Bool_t kGCplotESDENTPCClusters = kTRUE;
240 Bool_t kGCplotESDENITSClusters = kTRUE;
241
242 Bool_t kGCplotESDPEnergy = kFALSE;
243 Bool_t kGCplotESDPPt     = kTRUE;
244 Bool_t kGCplotESDPEta    = kTRUE;
245 Bool_t kGCplotESDPPhi    = kTRUE;
246 Bool_t kGCplotESDPNTPCClusters = kTRUE;
247 Bool_t kGCplotESDPNITSClusters = kTRUE;
248
249 Bool_t kGCplotESDConvGammaEnergy = kFALSE;
250 Bool_t kGCplotESDConvGammaPt     = kTRUE;
251 Bool_t kGCplotESDConvGammaEta    = kTRUE;
252 Bool_t kGCplotESDConvGammaPhi    = kTRUE;
253 Bool_t kGCplotESDConvGammaMass   = kTRUE;
254 Bool_t kGCplotESDConvGammaWidth  = kTRUE;
255 Bool_t kGCplotESDConvGammaChi2   = kTRUE;
256 Bool_t kGCplotESDConvGammaNDF    = kTRUE;
257 Bool_t kGCplotESDConvGammaRapid  = kTRUE;
258 Bool_t kGCplotESDConvGammaPtvsEta = kTRUE;
259 Bool_t kGCplotESDConvGammaPtvsChi2 = kTRUE;
260 Bool_t kGCplotESDConvGammaEtavsChi2 = kTRUE;
261
262
263 Bool_t kGCplotESDTrueDalitzContaminationR    = kTRUE;
264 Bool_t kGCplotESDTrueConvGammaEnergy         = kFALSE;
265 Bool_t kGCplotESDTrueConvGammaPt             = kTRUE;
266 Bool_t kGCplotESDTrueConvGammaEta            = kTRUE;
267 Bool_t kGCplotESDTrueConvGammaPhi            = kTRUE;
268 Bool_t kGCplotESDTrueConvGammaMass           = kTRUE;
269 Bool_t kGCplotESDTrueConvGammaWidth          = kTRUE;
270 Bool_t kGCplotESDTrueConvGammaChi2           = kTRUE;
271 Bool_t kGCplotESDTrueConvGammaNDF            = kTRUE;
272 Bool_t kGCplotESDTrueConvGammaRapid          = kTRUE;
273 Bool_t kGCplotESDTrueConvGammaPtvsEta        = kTRUE;
274 Bool_t kGCplotESDTrueConversionR             = kTRUE;
275 Bool_t kGCplotESDTrueConversionZR            = kFALSE;
276 Bool_t kGCplotESDTrueConversionXY            = kFALSE;
277 Bool_t kGCplotESDTrueConversionOpeningAngle  = kTRUE;
278 Bool_t kGCplotESDTrueConvGammaCosPointingAngle     = kTRUE;
279 Bool_t kGCplotESDTrueConvGammaDcaDaugthers         = kTRUE;
280 Bool_t kGCplotESDTrueConvGammaNormDcaDistDaugthers = kTRUE;
281 Bool_t kGCplotESDTrueConvGammaLikelihoodAP         = kTRUE;
282 Bool_t kGCplotESDTrueConvGammaEAsymmetryP         = kTRUE;
283 Bool_t kGCplotESDTrueConvGammaPAsymmetryP         = kTRUE;
284 Bool_t kGCplotESDTrueConvGammaEdEdxP         = kTRUE;
285 Bool_t kGCplotESDTrueConvGammaPdEdxP         = kTRUE;
286
287
288 Bool_t kGCplotESDTrueConvGammaPtvsChi2       = kTRUE;
289 Bool_t kGCplotESDTrueConvGammaEtavsChi2      = kTRUE;
290 Bool_t kGCplotESDTrueConvGammaMCPtEta        = kTRUE;
291 Bool_t kGCplotESDTrueConversionMCZR          = kFALSE;
292 Bool_t kGCplotESDTrueConversionMCXY          = kFALSE;
293
294 Bool_t kGCplotESDNoCutConvGammaEnergy         = kFALSE;
295 Bool_t kGCplotESDNoCutConvGammaPt             = kTRUE;
296 Bool_t kGCplotESDNoCutConvGammaEta            = kTRUE;
297 Bool_t kGCplotESDNoCutConvGammaPhi            = kTRUE;
298 Bool_t kGCplotESDNoCutConvGammaMass           = kTRUE;
299 Bool_t kGCplotESDNoCutConvGammaWidth          = kTRUE;
300 Bool_t kGCplotESDNoCutConvGammaChi2           = kTRUE;
301 Bool_t kGCplotESDNoCutConvGammaNDF            = kTRUE;
302 Bool_t kGCplotESDNoCutConvGammaRapid          = kTRUE;
303 Bool_t kGCplotESDNoCutConvGammaPtvsEta        = kTRUE;
304 Bool_t kGCplotESDNoCutConversionR             = kTRUE;
305 Bool_t kGCplotESDNoCutConversionZR            = kFALSE;
306 Bool_t kGCplotESDNoCutConversionXY            = kFALSE;
307 Bool_t kGCplotESDNoCutConversionOpeningAngle  = kTRUE;
308 Bool_t kGCplotESDNoCutConvGammaCosPointingAngle     = kTRUE;
309 Bool_t kGCplotESDNoCutConvGammaDcaDaugthers         = kTRUE;
310 Bool_t kGCplotESDNoCutConvGammaNormDcaDistDaugthers = kTRUE;
311 Bool_t kGCplotESDNoCutConvGammaLikelihoodAP         = kTRUE;
312
313 Bool_t kGCplotESDNoCutConvGammaEAsymmetryP         = kTRUE;
314 Bool_t kGCplotESDNoCutConvGammaPAsymmetryP         = kTRUE;
315 Bool_t kGCplotESDNoCutConvGammaEdEdxP         = kTRUE;
316 Bool_t kGCplotESDNoCutConvGammaPdEdxP         = kTRUE;
317 Bool_t kGCplotESDNoCutConvGammaPtvsChi2       = kTRUE;
318 Bool_t kGCplotESDNoCutConvGammaEtavsChi2      = kTRUE;
319 Bool_t kGCplotESDNoCutConvGammaMCPtEta        = kTRUE;
320 Bool_t kGCplotESDNoCutConversionMCZR          = kFALSE;
321 Bool_t kGCplotESDNoCutConversionMCXY          = kFALSE;
322
323 Bool_t kGCplotESDMotherOpeningAngleGamma = kTRUE;
324 Bool_t kGCplotESDMotherEnergy            = kFALSE;
325 Bool_t kGCplotESDMotherPt                = kFALSE;
326 Bool_t kGCplotESDMotherEta               = kTRUE;
327 Bool_t kGCplotESDMotherPhi               = kFALSE;
328 Bool_t kGCplotESDMotherMass              = kFALSE;
329 Bool_t kGCplotESDMotherR                 = kFALSE;
330 Bool_t kGCplotESDMotherZR                = kFALSE;
331 Bool_t kGCplotESDMotherXY                = kFALSE;
332 Bool_t kGCplotESDMotherRapid             = kTRUE;
333
334 Bool_t kGCplotESDBackgroundOpeningAngleGamma = kTRUE;
335 Bool_t kGCplotESDBackgroundEnergy            = kFALSE;
336 Bool_t kGCplotESDBackgroundPt                = kFALSE;
337 Bool_t kGCplotESDBackgroundEta               = kFALSE;
338 Bool_t kGCplotESDBackgroundPhi               = kFALSE;
339 Bool_t kGCplotESDBackgroundMass              = kFALSE;
340 Bool_t kGCplotESDBackgroundR                 = kFALSE;
341 Bool_t kGCplotESDBackgroundZR                = kFALSE;
342 Bool_t kGCplotESDBackgroundXY                = kFALSE;
343 Bool_t kGCplotESDBackgroundRapid             = kFALSE;
344
345 Bool_t kGCplotMapping = kTRUE;       
346
347 Bool_t kGCplotResolutiondPt = kTRUE;
348 Bool_t kGCplotResolutiondR  = kTRUE;
349 Bool_t kGCplotResolutiondZ  = kTRUE;
350
351 Bool_t kGCplotResolutiondRAbs  = kTRUE;
352 Bool_t kGCplotResolutiondZAbs  = kTRUE;
353 Bool_t kGCplotResolutiondPhiAbs  = kTRUE;
354
355 Bool_t kGCplotResolutiondRdPt = kTRUE;
356
357 Bool_t kGCplotResolutionMCPt = kTRUE;
358 Bool_t kGCplotResolutionMCR  = kTRUE;
359 Bool_t kGCplotResolutionMCZ  = kTRUE;
360
361 Bool_t kGCplotResolutionESDPt = kTRUE;
362 Bool_t kGCplotResolutionESDR  = kTRUE;
363 Bool_t kGCplotResolutionESDZ  = kTRUE;
364
365 Bool_t kGCplotResolutionPtdPt = kTRUE;
366
367 Bool_t kGCplotESDNumberOfV0s          = kTRUE;
368 Bool_t kGCplotESDNumberOfSurvivingV0s = kTRUE;
369 Bool_t kGCplotESDNumberOfContributorsVtx = kTRUE;
370 Bool_t kGCplotESDNumberOfGoodESDTracks = kTRUE;
371
372 //  debug histograms
373 Bool_t kGCplotESDCutGetOnFly      = kTRUE;
374 Bool_t kGCplotESDCutNContributors = kTRUE;
375 Bool_t kGCplotESDCutLikeSign      = kTRUE;
376 Bool_t kGCplotESDCutRefit         = kTRUE;
377 Bool_t kGCplotESDCutKink          = kTRUE;
378 Bool_t kGCplotESDCutPIDProb       = kTRUE;
379 Bool_t kGCplotESDCutdedxSigmaElectronLine=kTRUE;
380 Bool_t kGCplotESDCutdedxSigmaPionLine=kTRUE;
381 Bool_t kGCplotESDCutR             = kTRUE;
382 Bool_t kGCplotESDCutLine          = kTRUE;
383 Bool_t kGCplotESDCutZ             = kTRUE;
384 Bool_t kGCplotESDCutMinClsTPC     = kTRUE;
385 Bool_t kGCplotESDGoodV0s          = kTRUE;
386 Bool_t kGCplotESDAllV0s           = kTRUE;
387 Bool_t kGCplotESDAllV0sCurrentFinder = kTRUE;
388 Bool_t kGCplotESDAllV0sCurrentFinderQtAlfa = kTRUE;
389
390 Bool_t kGCplotESDCutNDF           = kTRUE;
391 Bool_t kGCplotESDCutChi2          = kTRUE;
392 Bool_t kGCplotESDCutEta           = kTRUE;
393 Bool_t kGCplotESDCutPt            = kTRUE;
394 Bool_t kGCplotESDTrueConvGammaTrackLength =kFALSE;
395 Bool_t kGCplotESDTrueConvGammaTrackLengthVSInvMass =kFALSE;
396
397 Bool_t kGCplotPi0Spectra = kTRUE;
398 Bool_t kGCplotEtaSpectra = kTRUE;
399 Bool_t kGCplotOmegaSpectra = kTRUE;
400
401 /////////////Chi_c Analysis//////////////////////////
402 Bool_t kGCplotStatsElectrons                                  = kTRUE;
403 Bool_t kGCplotRecENegJPsiPtDiff                               = kTRUE;
404 Bool_t kGCplotRecEPosJPsiPtDiff                               = kTRUE;
405 Bool_t kGCplotRecEPosENegR                                    = kTRUE;
406 Bool_t kGCplotRecEPosENegEta                                  = kTRUE;
407 Bool_t kGCplotESDInvMassePluseMinus                           = kTRUE;
408 Bool_t kGCplotESDInvMassGammaePluseMinusChiC                  = kTRUE;
409 Bool_t kGCplotESDInvMassGammaePluseMinusPi0                   = kTRUE;
410 Bool_t kGCplotESDElectronPosNegPt                             = kTRUE;
411 Bool_t kGCplotESDElectronPosNegEta                            = kTRUE;
412 Bool_t kGCplotESDElectronPosNegAngle                          = kTRUE;
413 Bool_t kGCplotMCElectronPosNegPt                              = kTRUE;
414 Bool_t kGCplotMCElectronPosNegEta                             = kTRUE;
415 Bool_t kGCplotMCElectronPosNegJPsiAngle                       = kTRUE;
416 Bool_t kGCplotESDElectronPosNegPi0Angle                       = kTRUE;
417 Bool_t kGCplotMCElectronPosNegPi0Angle                        = kTRUE;
418 Bool_t kGCplotTableElectrons                                  = kTRUE;
419 Bool_t kGCplotESDEPosBackground                               = kTRUE;
420 Bool_t kGCplotESDENegBackground                               = kTRUE;
421 Bool_t kGCplotESDEPosENegBackground                           = kTRUE;
422 Bool_t kGCplotESDEPosENegBackgroundCut                        = kTRUE;
423 Bool_t kGCplotESDePoseNegAngle                                = kTRUE;
424 Bool_t kGCplotESDEPosENegGammaBackgroundMX                    = kTRUE;
425 Bool_t kGCplotMCLabels                                        = kTRUE;
426 ///////////////////////////////////////////////////////////////////
427
428 //---------------- Gamma Jet analysis ----------------------------
429 Bool_t kGCplotdPhiHdrGam            = kTRUE;
430 Bool_t kGCplotdPhiHdrGamIsolated    = kTRUE;
431 Bool_t kGCplotMinimumIsoDistance    = kTRUE;
432 Bool_t kGCplotFFzHdrGam             = kTRUE;
433 Bool_t kGCplotImbalanceHdrGam       = kTRUE;
434 //----------------------------------------------------------------
435
436
437 /** ----------------- end define which histograms to plot here -------------------------------*/
438
439
440
441 /** ----------- Define the binning for the different plot types here -------------------------*/
442 //R-plots
443 Int_t kGCnXBinsR = 400;
444 Double_t kGCfirstXBinR = 0.;
445 Double_t kGClastXBinR = 200.;
446
447 //ZR-plots
448 Int_t kGCnXBinsZR = 1000;
449 Double_t kGCfirstXBinZR = -250.;
450 Double_t kGClastXBinZR = 250.;
451 Int_t kGCnYBinsZR = 400;
452 Double_t kGCfirstYBinZR = 0.;
453 Double_t kGClastYBinZR = 200.;
454
455 //XY-plots
456 Int_t kGCnXBinsXY = 800;
457 Double_t kGCfirstXBinXY = -200.;
458 Double_t kGClastXBinXY = 200.;
459 Int_t kGCnYBinsXY = 800;
460 Double_t kGCfirstYBinXY = -200.;
461 Double_t kGClastYBinXY = 200.;
462
463 //OpenAngle-plots
464 Int_t kGCnXBinsOpeningAngle = 400;
465 Double_t kGCfirstXBinOpeningAngle = 0.;
466 Double_t kGClastXBinOpeningAngle = TMath::Pi();
467
468 //CosPointingAngle-plots
469 Int_t kGCnXBinsCosPointingAngle = 400;
470 Double_t kGCfirstXBinCosPointingAngle = 0.99;
471 Double_t kGClastXBinCosPointingAngle = 1.01;
472
473 //DCA Daugthers-plots
474 Int_t kGCnXBinsDcaDaughters = 400;
475 Double_t kGCfirstXBinDcaDaughters= 0.;
476 Double_t kGClastXBinDcaDaughters = 5.;
477
478 //Norm DCA dist Daugthers-plots
479 Int_t kGCnXBinsNormDcaDistDaughters = 400;
480 Double_t kGCfirstXBinNormDcaDistDaughters= 0.;
481 Double_t kGClastXBinNormDcaDistDaughters = 10.;
482
483 //LikelihoodAP Plots
484 Int_t kGCnXBinsLikelihoodAP = 400;
485 Double_t kGCfirstXBinLikelihoodAP= 0.;
486 Double_t kGClastXBinLikelihoodAP = 2.;
487
488
489 //Energy-plots
490 Int_t kGCnXBinsEnergy = 200;
491 Double_t kGCfirstXBinEnergy = 0.;
492 Double_t kGClastXBinEnergy = 50.;
493
494 //P-plots
495 Int_t kGCnXBinsP = 200;
496 Double_t kGCfirstXBinP = 0.;
497 Double_t kGClastXBinP = 50.;
498
499 //dEdx-plots
500 Int_t kGCnYBinsdEdx = 200;
501 Double_t kGCfirstYBindEdx = 0.;
502 Double_t kGClastYBindEdx = 200.;
503
504 //Qt-plots
505 Int_t kGCnYBinsQt = 250;
506 Double_t kGCfirstYBinQt = 0.;
507 Double_t kGClastYBinQt = 0.25;
508
509
510
511 //Asymmetry-plots
512 Int_t kGCnYBinsAsymmetry = 200;
513 Double_t kGCfirstYBinAsymmetry = 0.;
514 Double_t kGClastYBinAsymmetry = 1.;
515
516
517 //Pt-plots
518 Int_t kGCnXBinsPt = 500;
519 Double_t kGCfirstXBinPt = 0.;
520 Double_t kGClastXBinPt = 50.;
521
522 //Eta-plots
523 Int_t kGCnXBinsEta = 40;
524 Double_t kGCfirstXBinEta = -2.;
525 Double_t kGClastXBinEta = 2.;
526
527 //Rapidity
528 Int_t kGCnXBinsRapid = 200;
529 Double_t kGCfirstXBinRapid = -10.;
530 Double_t kGClastXBinRapid = 10.;
531
532 //Phi-plots
533 Int_t kGCnXBinsPhi = 72;
534 Double_t kGCfirstXBinPhi = -TMath::Pi();
535 Double_t kGClastXBinPhi = TMath::Pi();
536
537 //nTPCCluster-plots
538 Int_t kGCnXBinsNTPCClusters = 201;
539 Double_t kGCfirstXBinNTPCClusters = -0.5;
540 Double_t kGClastXBinNTPCClusters = 200.5;
541
542 //nITSCluster-plots
543 Int_t kGCnXBinsNITSClusters = 7;
544 Double_t kGCfirstXBinNITSClusters = -0.5;
545 Double_t kGClastXBinNITSClusters = 6.5;
546
547
548
549 //Mapping-plots
550 Int_t kGCnXBinsMapping = 800;
551 Double_t kGCfirstXBinMapping = -100.;
552 Double_t kGClastXBinMapping = 100.;
553 Int_t kGCnYBinsMapping = 40;
554 Double_t kGCfirstYBinMapping = -2;
555 Double_t kGClastYBinMapping = 2;
556
557 //ResolutionPlots
558 //RESdPt
559 Int_t kGCnXBinsResdPt=1000;
560 Int_t kGCfirstXBinResdPt= 0;
561 Int_t kGClastXBinResdPt=100;
562 Int_t kGCnYBinsResdPt=500;
563 Int_t kGCfirstYBinResdPt= -10;
564 Int_t kGClastYBinResdPt=10;
565
566 //RESdR
567 Int_t kGCnXBinsResdR=500;
568 Int_t kGCfirstXBinResdR= 0;
569 Int_t kGClastXBinResdR=250;
570 Int_t kGCnYBinsResdR=100;
571 Int_t kGCfirstYBinResdR= -25;
572 Int_t kGClastYBinResdR=25;
573
574 //RESdZ
575 Int_t kGCnXBinsResdZ=80;
576 Int_t kGCfirstXBinResdZ= -20;
577 Int_t kGClastXBinResdZ=20;
578 Int_t kGCnYBinsResdZ=80;
579 Int_t kGCfirstYBinResdZ= -20;
580 Int_t kGClastYBinResdZ=20;
581
582 //RESdRdPt
583 Int_t kGCnYBinsResdRdPt=400;
584 Int_t kGCfirstYBinResdRdPt= -10;
585 Int_t kGClastYBinResdRdPt=10;
586
587 //RESMCPt
588 Int_t kGCnXBinsResPt=500;
589 Int_t kGCfirstXBinResPt= 0;
590 Int_t kGClastXBinResPt=100;
591
592 //RESMCR
593 Int_t kGCnXBinsResR=500;
594 Int_t kGCfirstXBinResR= 0;
595 Int_t kGClastXBinResR=250;
596
597 //RESMCZ
598 Int_t kGCnXBinsResZ=500;
599 Int_t kGCfirstXBinResZ= 0;
600 Int_t kGClastXBinResZ=250;
601
602 //GammaMass-plots
603 Int_t kGCnXBinsGammaMass = 4000;
604 Double_t kGCfirstXBinGammaMass = 0.;
605 Double_t kGClastXBinGammaMass = 1.;
606
607 //Pi0Mass-plots
608 Int_t kGCnXBinsPi0Mass = 1000;
609 Double_t kGCfirstXBinPi0Mass = 0.;
610 Double_t kGClastXBinPi0Mass = 1.;
611 Double_t kGCfirstXBinPi0Alpha = -1.;
612 Double_t kGClastXBinPi0Alpha = 1.;
613
614
615 //EtaMass-plots
616 Int_t kGCnXBinsEtaMass = 1000;
617 Double_t kGCfirstXBinEtaMass = 0.;
618 Double_t kGClastXBinEtaMass = 1.;
619
620 //GammaWidth-plots
621 Int_t kGCnXBinsGammaWidth = 100;
622 Double_t kGCfirstXBinGammaWidth = 0.;
623 Double_t kGClastXBinGammaWidth = 1.;
624
625 //GammaChi2-plots
626 Int_t kGCnXBinsGammaChi2 = 100;
627 Double_t kGCfirstXBinGammaChi2 = 0;
628 Double_t kGClastXBinGammaChi2 = 200.;
629
630 //GammaNDF-plots
631 Int_t kGCnXBinsGammaNDF = 10;
632 Double_t kGCfirstXBinGammaNDF = 0.;
633 Double_t kGClastXBinGammaNDF = 10.;
634
635 //Spectra-plots
636 Int_t kGCnXBinsSpectra = 1000;
637 Double_t kGCfirstXBinSpectra = 0.;
638 Double_t kGClastXBinSpectra = 1.;
639 Int_t kGCnYBinsSpectra = 250;
640 Double_t kGCfirstYBinSpectra = 0.;
641 Double_t kGClastYBinSpectra = 25.;
642
643 Double_t kGCfirstXBinAlpha = -1.;
644 Double_t kGClastXBinAlpha = 1.;
645
646 //track length plots
647 Int_t kGCnXBinsTrackLength = 1000;
648 Double_t kGCfirstXBinTrackLength = 0;
649 Double_t kGClastXBinTrackLength = 500;
650
651 /////////Chic_Analysis///////////////////////////////////
652 Int_t kGCnXBinsEPt = 1000;
653 Double_t kGCfirstXBinEPt = 0.;
654 Double_t kGClastXBinJPsiPt  = 10;
655
656 Int_t kGCnXBinsJPsiMass = 1000;
657 Double_t kGCfirstXBinJPsiMass = 0.;
658 Double_t kGClastXBinJPsiMass = 10.;
659
660 Int_t kGCnXBinsChicMass = 1000;
661 Double_t kGCfirstXBinChicMass = 0.;
662 Double_t kGClastXBinChicMass  = 10.;
663
664 Int_t kGCnXBinsPi0Mass  = 1000;
665 Double_t kGCfirstXBinPi0Mass = 0.;
666 Double_t kGClastXBinPi0Mass  = 1.;
667
668 Int_t kGCnXBinsEPosNegPt = 1000;
669 Double_t kGCfirstXBinEPosNegPt = 0.;
670 Double_t kGClastXBinEPosNegPt  = 10.;
671
672 Int_t kGCnXBinsEPosNegEta = 200;
673 Double_t kGCfirstXBinEPosNegEta = -1.2;
674 Double_t kGClastXBinEPosNegEta  = 1.2;
675
676 Int_t kGCnXBinsEPosNegAngle = 200;
677 Double_t kGCfirstXBinEPosNegAngle = 0.;
678 Double_t kGClastXBinEPosNegAngle = TMath::Pi();
679
680 Int_t kGCnXBinsEBackground = 1000;
681 Double_t kGCfirstXBinEBackground = 0.;
682 Double_t kGClastXBinEBackground  = 10.;
683
684 Int_t kGCnXBinsEBackgroundCut = 100;
685 Double_t kGCfirstXBinEBackgroundCut = 0.;
686 Double_t kGClastXBinEBackgroundCut  = 0.015.;
687
688 Int_t kGCnXBinsMCLabels = 10;
689 Double_t kGCfirstXBinMCLabels = 0.;
690 Double_t kGClastXBinMCLabels  = 10.;
691
692 Int_t kGCnElementsElectronTable = 19;
693
694 //18 elements
695 const char * kGCelectronTable[] = {
696   "Num. Events",  "MC e+ J/Psi |\\eta|<0.9","MC e- J/Psi |\\eta|<0.9","MC e+ e+ from J/Psi |\\eta|<0.9",
697   "ESDtracks",    "Kink Cut",
698   "Vertex Cut","TRDOut","TRDrefit","TPCrefit",
699   "ITSrefit","TRDout+TPC+TPC+ITS+nsigma>3 Pass","pid!=0","ESDElec","ESD e+ JPsi",
700   "ESD e- JPsi","ESD e+ e- JPSI","MC: gamma < 1.2","e+,e- < 0.9 g <1.2"
701 };
702
703
704 // for Gamma Jet analysis
705 Int_t kGCnXBinsdphiHdrGam = 100;
706 Double_t kGCfirstXBindphiHdrGam = -TMath::PiOver2();
707 Double_t kGClastXBindphiHdrGam = 3*TMath::PiOver2();
708
709 Int_t kGCnXBinsMinimumIsoDistance = 100;
710 Double_t kGCfirstXBinMinimumIsoDistance = 0.;
711 Double_t kGClastXBinMinimumIsoDistance = TMath::PiOver2();
712
713 Int_t kGCnXBinsFFzHdrGam = 100;
714 Double_t kGCfirstXBinFFzHdrGam = 0.;
715 Double_t kGClastXBinFFzHdrGam = 5;
716
717 Int_t kGCnXBinsImbalanceHdrGam = 100;
718 Double_t kGCfirstXBinImbalanceHdrGam = -5.;
719 Double_t kGClastXBinImbalanceHdrGam = 5.;
720 ////////////////////////////////////////////////////////
721
722
723 /** ---------- end Define the binning for the different plot types here ----------------------*/
724
725
726 /************************************************************************************************
727  *                                                                                              *
728  *                                                                                              *
729  *                     EVERYTHING BELOW IS FOR DEVELOPERS ONLY                                  *
730  *                                                                                              *
731  *                                                                                              *
732  ************************************************************************************************/
733 TString kGCoutputFileName = "histogramsGammaConversion";
734 TString kGCoutputFileAppendix = "";
735 TString kGCdataList = "";
736 Bool_t kGCwriteNtuple = kFALSE;
737 // WE DOO NOT NEED TO CHANGE THIS (kGCusePWG4PartCorr) ANYMORE SINCE IT IS TAKEN CARE OF AUTOMATICALLY NOW
738 Bool_t kGCusePWG4PartCorr = kTRUE;
739
740 /** Flag to enable running on train  */
741 Bool_t kGCrunOnTrain = kFALSE;
742
743 /** ------------------------------ Monte Carlo flag -----------------------------------------*/
744 Bool_t kGCdoMCTruth = kTRUE;
745 /** ---------------------------- end Monte Carlo flag ---------------------------------------*/
746
747 /** ------------------------------ Selecting trigger CINT1B -----------------------------------*/
748 Bool_t kGCtriggerCINT1B = kFALSE;
749 /** ---------------------------- end Monte Carlo flag ---------------------------------------*/
750
751 /** ------------------------- Choose KFParticle OR ESDTrack  --------------------------------*/
752 Bool_t kGCuseKFParticle = kTRUE;
753 Bool_t kGCuseESDTrack   = kFALSE;
754 /** ----------------------- end Choose KFParticle OR ESDTrack  -----------------------------*/
755
756 /**------------------------------Flag to apply dEdx cut base on sigmas to electron line----------*/
757 Bool_t kGCdodEdxSigmaCut= kTRUE;
758 /**------------------------------end Flag to apply NsigmadEdx cut ----------*/
759 Double_t kGCPIDnSigmaAboveElectronLine=5;
760 Double_t kGCPIDnSigmaBelowElectronLine=-3;
761 Double_t kGCPIDnSigmaAbovePionLine=0;
762 Double_t kGCPIDMinPnSigmaAbovePionLine=1;
763  
764
765
766
767 Bool_t scanArguments(TString arguments){
768   
769   Bool_t iResult = kTRUE;
770         
771   TString allArgs=arguments;
772   TString argument;
773   int bMissingParam=0;
774
775   cout<<"Arguments received: "<<allArgs.Data()<<endl;
776         
777   TObjArray* pTokens=allArgs.Tokenize(" ");
778   if (pTokens) {
779                 
780     for(int i=0; i<pTokens->GetEntries() && iResult==kTRUE; i++) {
781       argument=((TObjString*)pTokens->At(i))->GetString();
782                         
783       if(argument.IsNull()) continue;
784       // -- deconvolute-time option
785       if(argument.CompareTo("-data-list") == 0){
786         if((bMissingParam=(++i>=pTokens->GetEntries()))) break;
787         kGCdataList = ((TObjString*)pTokens->At(i))->GetString();
788         if(kGCdataList.IsNull()){
789           cout<<"-data-list is NULL"<<endl;
790           iResult=kFALSE;
791         }
792         else{
793           cout<<"Data list is set to: "<<kGCdataList<<endl;
794         }
795       }
796       else if(argument.CompareTo("-output-file-name") == 0){
797         if((bMissingParam=(++i>=pTokens->GetEntries()))) break;
798         kGCoutputFileName = ((TObjString*)pTokens->At(i))->GetString();
799         if(kGCoutputFileName.IsNull()){
800           cout<<"-output-file-name is NULL"<<endl;
801           iResult=kFALSE;
802         }
803         else{
804           cout<<"Setting output file name to: "<<kGCoutputFileName<<endl;
805         }
806       }
807       else if (argument.CompareTo("-bg-off") == 0){
808         kGCcalculateBackground =kFALSE;
809       }
810       else if (argument.CompareTo("-check-neutralmeson-pi0s") == 0){
811         kGCdoNeutralMesonV0MCCheck=kTRUE;
812       }
813       else if (argument.CompareTo("-use-offline-finder") == 0){
814         kGCUseOnFlyV0Finder = kFALSE;
815       }
816       else if (argument.CompareTo("-write-ntuple") == 0){
817         cout<<"Writing ntuple to file."<<endl;
818         kGCwriteNtuple = kTRUE;
819       }
820       else if (argument.CompareTo("-run-on-train") == 0){
821         cout<<"Running on train"<<endl;
822         kGCWriteStandardAOD=kTRUE;
823         kGCrunOnTrain = kTRUE;
824       }
825       else if (argument.CompareTo("-run-on-gsi-train") == 0){
826         cout<<"Running on gsi train"<<endl;
827         kGCWriteStandardAOD=kFALSE;
828         kGCrunOnTrain = kTRUE;
829       }
830       else if (argument.CompareTo("-run-jet") == 0){
831         cout<<"Running jet analysis"<<endl;
832         kGCrunJet = kTRUE;
833       }
834       else if (argument.CompareTo("-run-neutralmeson") == 0){
835         cout<<"Running neutral meson analysis"<<endl;
836         kGCrunNeutralMeson = kTRUE;
837       }
838       else if (argument.CompareTo("-run-neutral-meson") == 0){
839         cout<<"Running neutral meson analysis"<<endl;
840         kGCrunNeutralMeson = kTRUE;
841       }
842       else if (argument.CompareTo("-run-omega-meson") == 0){
843         cout<<"Running omega meson analysis"<<endl;
844         kGCrunOmegaMeson = kTRUE;
845       }
846       else if (argument.CompareTo("-run-chic") == 0){
847         cout<<"Running Chi_c analysis"<<endl;
848         kGCrunChic = kTRUE;
849       }
850       else if (argument.CompareTo("-run-cf") == 0){
851         cout<<"Running CF"<<endl;
852         kGCrunCF = kTRUE;
853       }
854       else if (argument.CompareTo("-run-resolution") == 0){
855         cout<<"Running Resolution"<<endl;
856         kGCrunRES = kTRUE;
857       }
858       else if (argument.CompareTo("-jet-off") == 0){
859         cout<<"Skipping jet analysis"<<endl;
860         kGCrunJet = kFALSE;
861       }
862       else if (argument.CompareTo("-neutralmeson-off") == 0){
863         cout<<"Skipping neutral meson analysis"<<endl;
864         kGCrunNeutralMeson = kFALSE;
865       }
866       else if (argument.CompareTo("-neutral-meson-off") == 0){
867         cout<<"Skipping neutral meson analysis"<<endl;
868         kGCrunNeutralMeson = kFALSE;
869       }
870       else if (argument.CompareTo("-chic-off") == 0){
871         cout<<"Skipping Chi_c analysis"<<endl;
872         kGCrunChic = kFALSE;
873       }
874       else if (argument.CompareTo("-mc-off") == 0){
875         cout<<"Switching off kGCdoMCTruth"<<endl;
876         kGCdoMCTruth = kFALSE;
877       }
878       else if (argument.CompareTo("-trigger-CINT1B") == 0){
879         cout<<"Selecting ONLY kGCtriggerCINT1B"<<endl;
880         kGCtriggerCINT1B = kTRUE;
881       }
882       else if (argument.CompareTo("-use-own-xyz") == 0){
883         cout<<"Switching on use own xyz calculation"<<endl;
884         kGCdoOwnXYZCalculation = kTRUE;
885       }
886       else if(argument.CompareTo("-append-to-output-file") == 0){
887         if((bMissingParam=(++i>=pTokens->GetEntries()))) break;
888         kGCoutputFileAppendix = TString("_")+((TObjString*)pTokens->At(i))->GetString();
889         if(kGCoutputFileAppendix.IsNull()){
890           cout<<"-appending-to-output-file is NULL"<<endl;
891           iResult=kFALSE;
892         }
893         else{
894           cout<<"Appending to the output file: "<<kGCoutputFileAppendix<<endl;
895         }
896       }
897       else if(argument.CompareTo("-set-cut-selection") == 0){
898         if((bMissingParam=(++i>=pTokens->GetEntries()))) break;
899         kGCAnalysisCutSelectionId = ((TObjString*)pTokens->At(i))->GetString();
900         cout<<"The analysis cut selection is set to: "<<kGCAnalysisCutSelectionId.Data()<<endl;
901       }
902     }
903     delete pTokens;
904   }
905   if (bMissingParam) {
906     cout<<"Missing parameter for argument "<< argument.Data()<<endl;
907     iResult=kFALSE;
908   }
909   return iResult;
910 }
911
912 void SetVersionLibrary(){
913   // Check if the file $ALICE_ROOT/PWG4/GammaConv/AliAnalysisTaskGammaConversion.cxx exists.
914   // If yes, we set kGCusePWG4PartCorr to false since we have a newer version
915   // If no, kGCusePWG4PartCorr is true.
916         
917   TString file = gSystem->Getenv("ALICE_ROOT");
918   file+="/PWG4/PartCorr/AliAnalysisTaskGammaConversion.cxx";
919         
920   ifstream stream;
921   stream.open(file.Data());
922         
923   if(!stream){
924     kGCusePWG4PartCorr=kFALSE;
925   }
926   else{
927     kGCusePWG4PartCorr=kTRUE;
928   }
929   stream.close();
930 }
931
932
933
934 AliAnalysisTaskGammaConversion* ConfigGammaConversion(TString arguments, AliAnalysisDataContainer *cin_esd=NULL){ 
935                                                       
936         
937   
938   if(!scanArguments(arguments)){
939     break;
940   }
941         
942   SetVersionLibrary(); // checks if PWG4GammaConv or PWG4PartCorr is used
943         
944   if(cin_esd == NULL && kGCrunOnTrain == kTRUE){
945     cout<<"Error: kGCrunOnTrain flag is set to true but the input AliAnalysisDataContainer is NULL"<<endl;
946     cout<<"       you must also supply the AliAnalysisDataContainer as an argument"<<endl;
947     return;
948   }
949         
950   if(cin_esd != NULL && kGCrunOnTrain == kFALSE){
951     cout<<"Error: kGCrunOnTrain flag is set to false but the input AliAnalysisDataContainer is not null"<<endl;
952     cout<<"       add -run-on-train to the arguments to turn switch kGCrunOnTrain to kTRUE"<<endl;
953     return;
954   }
955   if(kGCrunOnTrain == kFALSE){
956     if(kGCnumberOfFilesToAnalyze==0){
957       ifstream dataInStream;
958       dataInStream.open(kGCdataList.Data());
959       if ( !dataInStream ){
960         cout<<"Data list file does not exist: "<<kGCdataList.Data()<<endl;
961         return 0;
962       }
963       string line;
964       while ( !dataInStream.eof() )
965         {
966           getline(dataInStream, line);
967           if(line.compare("") != 0){//checks if there is an empty line in the data list
968             kGCnumberOfFilesToAnalyze++;
969           }
970         }
971     }
972     cout<<"Number Of files to analyze: "<<kGCnumberOfFilesToAnalyze<<endl;
973                 
974     build();//build (if necessary) and load the libraries needed
975
976     gROOT->LoadMacro("$ALICE_ROOT/PWG0/CreateESDChain.C"); // load the CreateChain macro
977   }
978                 
979   if(!kGCrunOnTrain){
980     // for the train leave this to the steering macro
981     AliLog::SetGlobalDebugLevel(0);
982     AliLog::SetGlobalLogLevel(AliLog::kFatal);
983   }
984   // ------------------------------------------------------------------------
985                 
986     // for CF
987                 
988     //Container def.
989     const Double_t ptmin = kGCfirstXBinPt;
990     const Double_t ptmax = kGClastXBinPt;
991     const Double_t etamin = kGCfirstXBinEta;
992     const Double_t etamax = kGClastXBinEta;
993     const Double_t massmin = kGCfirstXBinPi0Mass;
994     const Double_t massmax = kGClastXBinPi0Mass;
995                 
996                 
997     // sensitive variables
998     UInt_t ipt = 0;
999     UInt_t ieta = 1;
1000     UInt_t imass = 2;   
1001                 
1002     //how many selection steps 
1003     UInt_t nstep = 20;
1004     const Int_t nvar = 3;
1005
1006     Int_t kGCnXBinsPtCF=40;
1007     Int_t kGCnXBinsEtaCF=8;
1008     Int_t kGCnXBinsPi0MassCF=10;
1009
1010     if(!kGCrunCF){
1011       nstep=1;
1012       kGCnXBinsPtCF=1;
1013       kGCnXBinsEtaCF=1;
1014       kGCnXBinsPi0MassCF=1;
1015     }
1016     const Int_t nbin0 = kGCnXBinsPtCF;  // do not use same variable for CF than for histogram
1017     const Int_t nbin1 = kGCnXBinsEtaCF; // do not use same variable for CF than for histogram
1018     const Int_t nbin2 = kGCnXBinsPi0MassCF; // do not use same variable for CF than for histogram               
1019                 
1020     //arrays for the number of bins in each dimension
1021     Int_t iBin[nvar];
1022     iBin[0] = nbin0;
1023     iBin[1] = nbin1;
1024     iBin[2] = nbin2;    
1025                 
1026     //arrays for lower bounds
1027     Double_t *binLim0 = new Double_t[nbin0+1];
1028     Double_t *binLim1 = new Double_t[nbin1+1];  
1029     Double_t *binLim2 = new Double_t[nbin2+1];  
1030                 
1031     // values for lower bounds
1032     for(Int_t i = 0; i <= nbin0; i++) binLim0[i] = ptmin + (ptmax - ptmin)/nbin0*i;
1033     for(Int_t i = 0; i <= nbin1; i++) binLim1[i] = etamin + (etamax - etamin)/nbin1*i;
1034     for(Int_t i = 0; i <= nbin2; i++) binLim2[i] = massmin + (massmax - massmin)/nbin2*i;
1035                 
1036     // create container
1037     AliCFContainer *container = new AliCFContainer("container","container for gammaconversion", nstep,nvar,iBin);
1038     container->SetBinLimits(ipt,binLim0);
1039     container->SetBinLimits(ieta,binLim1);
1040     container->SetBinLimits(imass,binLim2);     
1041                 
1042     AliCFManager *man = new AliCFManager();
1043     man->SetParticleContainer(container);
1044                 
1045     // end ---------------------------------------------------------------------------
1046                 
1047                 
1048
1049         
1050   AliGammaConversionHistograms* histograms = new AliGammaConversionHistograms();  
1051   AddHistograms(histograms);
1052         
1053   // Create the Analysis manager
1054   AliAnalysisManager *mgr =NULL;
1055   if(kGCrunOnTrain == kFALSE){
1056     mgr  = new AliAnalysisManager("My Manager", "My Analysis");
1057   }
1058   else{
1059     mgr = AliAnalysisManager::GetAnalysisManager();
1060   }
1061         
1062   if (!mgr) {
1063     ::Error("ConfigGammaConversion", "No analysis manager to connect to.");
1064     return NULL;
1065   }
1066   if(kGCrunOnTrain == kTRUE){
1067     if (!mgr->GetInputEventHandler()) {
1068       ::Error("ConfigGammaConversion", "This task requires an input event handler");
1069       return NULL;
1070     }
1071   }
1072   AliESDInputHandler* inpHandler = NULL;
1073         
1074   if(kGCrunOnTrain == kFALSE){
1075     // Define Input Event Handler 
1076     inpHandler = new AliESDInputHandler();
1077   }
1078   // Define MC Truth Event Handler
1079   AliMCEventHandler* mcHandler = NULL;
1080   if(kGCdoMCTruth){
1081     if(kGCrunOnTrain == kFALSE){
1082       mcHandler = new AliMCEventHandler();
1083     }
1084     else{
1085       mcHandler = (AliMCEventHandler*)mgr->GetMCtruthEventHandler();
1086     }
1087     if (!mcHandler) {
1088       ::Error("", "No MC handler connected");
1089       return NULL;
1090     }
1091   }
1092         
1093   // Define Output Event Handler and ad
1094   if(kGCrunOnTrain == kFALSE){
1095     if(kGCWriteStandardAOD == kTRUE){
1096       AliAODHandler* aodHandler = new AliAODHandler();
1097       TString fileOutAOD = "AOD_"+ kGCoutputFileName + kGCoutputFileAppendix + ".root";
1098       aodHandler->SetOutputFileName(fileOutAOD);
1099       mgr->SetOutputEventHandler (aodHandler);
1100     }
1101   }
1102         
1103   if(kGCrunOnTrain == kFALSE){
1104     mgr->SetInputEventHandler  (inpHandler);
1105     mgr->SetMCtruthEventHandler(mcHandler);
1106   }
1107   // Be sure you are told what you are doing
1108   // mgr->SetDebugLevel(10);
1109         
1110   // Declare Common Input Tchain
1111   AliAnalysisDataContainer *cinput1 = NULL;
1112   if(kGCusePWG4PartCorr){
1113     if(kGCrunOnTrain == kFALSE){
1114       cinput1 = mgr->CreateContainer("GammaConvChain",TChain::Class(),AliAnalysisManager::kInputContainer);
1115     }
1116     else{
1117       cinput1 = cin_esd;
1118     }
1119   }
1120   else{
1121       cinput1 = mgr->GetCommonInputContainer();
1122   }
1123         
1124   // Common Output Tree in common Ã¢\80\98defaultâ\80\99 output file
1125   // CKB kGCusePWG4PartCorr and writestandard are not mutually exclusive?
1126   AliAnalysisDataContainer *coutput1 = NULL;
1127   if(kGCusePWG4PartCorr){
1128     //    coutput1 = mgr->CreateContainer("GammaConvTree",TTree::Class(),AliAnalysisManager::kOutputContainer, "default");
1129     coutput1 = mgr->CreateContainer("GammaConvTree",TTree::Class(),AliAnalysisManager::kOutputContainer, "default");
1130   }
1131   else{
1132     if(kGCWriteStandardAOD){
1133       coutput1 = mgr->GetCommonOutputContainer();
1134     }
1135   }
1136         
1137   // Private output objects
1138   if(kGCoutputFileName.Contains(".root")){
1139     kGCoutputFileName.ReplaceAll(".root","");
1140   }
1141   if(kGCoutputFileAppendix.Contains(".root")){
1142     kGCoutputFileAppendix.ReplaceAll(".root","");
1143   }
1144   //TString fileOut = kGCoutputFileName + kGCoutputFileAppendix + ".root";
1145
1146   
1147   TString outputfile = AliAnalysisManager::GetCommonFileName();
1148   cout<<"Analyis cut selection ID is: "<<kGCAnalysisCutSelectionId.Data()<<endl;
1149   //  outputfile += Form(":PWG4_GammaConversion_%s",kGCAnalysisCutSelectionId.Data());
1150   outputfile += Form(":PWG4_GammaConversion");
1151   /*  
1152   // this is not really needed
1153   if(kGCrunNeutralMeson==kTRUE) outputfile +="1";  else outputfile +="0";
1154
1155   if(kGCrunJet==kTRUE) outputfile +="1"; else outputfile +="0";
1156
1157   if(kGCrunChic==kTRUE) outputfile +="1"; else outputfile +="0";
1158
1159   if(kGCrunCF==kTRUE) outputfile +="1"; else outputfile +="0";
1160
1161   if(kGCcalculateBackground==kTRUE) outputfile +="1"; else outputfile +="0";
1162
1163   if(kGCdoNeutralMesonV0MCCheck==kTRUE) outputfile +="1"; else outputfile +="0";
1164
1165   if(kGCrunOmegaMeson==kTRUE) outputfile +="1"; else outputfile +="0";
1166
1167   if(kGCrunRES==kTRUE) outputfile +="1"; else outputfile +="0";
1168   */
1169   outputfile += Form("_%s",kGCAnalysisCutSelectionId.Data());
1170
1171   cout<<"Ouput file::"<<  outputfile <<endl;
1172   AliAnalysisDataContainer *coutput2 = mgr->CreateContainer(Form("histogramsAliGammaConversion_%s",kGCAnalysisCutSelectionId.Data()), TList::Class(),AliAnalysisManager::kOutputContainer, outputfile);
1173   // for CF
1174   AliAnalysisDataContainer *coutput3 = mgr->CreateContainer(Form("GammaConvccontainer0_%s",kGCAnalysisCutSelectionId.Data()),AliCFContainer::Class(),AliAnalysisManager::kOutputContainer,outputfile);
1175         
1176   //------------------------ END: Define input/output handlers ---------------------------------------------------
1177         
1178   //check for errors in the specified data
1179   if(kGCuseKFParticle == kTRUE && kGCuseESDTrack == kTRUE){
1180     //Print warning, cannot use both
1181     ::Error("ConfigGammaConversion","Both kGCuseKFParticle and kGCuseESDTracks can be true at the same time")
1182       }
1183   if(kGCuseKFParticle == kFALSE && kGCuseESDTrack == kFALSE){
1184     //Print warning, one have to be specified
1185     ::Error("ConfigGammaConversion","Both kGCuseKFParticle and kGCuseESDTracks can be false at the same time")
1186       }
1187         
1188
1189   if(!SetAnalysisCutSelection(kGCAnalysisCutSelectionId)){
1190     return 0;
1191   }
1192         
1193   //Create the V0Reader
1194   AliV0Reader * v0Reader = new AliV0Reader();
1195   if(kGCuseKFParticle){
1196     v0Reader->UseKFParticle();
1197   }
1198   else if(kGCuseESDTrack){
1199     v0Reader->UseESDTrack();
1200   }
1201   v0Reader->SetNegativeTrackPID(kGCpidOfNegativeTrack);
1202   v0Reader->SetPositiveTrackPID(kGCpidOfPositiveTrack);
1203   v0Reader->SetMaxRCut(kGCmaxRCut);
1204   v0Reader->SetEtaCut(kGCetaCut);
1205   v0Reader->SetPtCut(kGCptCut);
1206   v0Reader->SetSinglePtCut(kGCsingleptCut);
1207   v0Reader->SetLineCutZRSlope(kGCLineCutZRSlope);
1208   v0Reader->SetLineCutZValue(kGCLineCutZValue); 
1209   v0Reader->SetMaxZCut(kGCmaxZCut);     
1210   v0Reader->SetMinClsTPCCut(kGCminClsTPCCut);   
1211   v0Reader->SetChi2CutConversion(kGCchi2CutConversion);
1212   v0Reader->SetChi2CutMeson(kGCchi2CutMeson);
1213   v0Reader->SetPIDProbability(kGCprobElectron);
1214   v0Reader->SetXVertexCut(kGCxVertexCut);
1215   v0Reader->SetYVertexCut(kGCyVertexCut);
1216   v0Reader->SetZVertexCut(kGCzVertexCut);
1217   v0Reader->SetSigmaMass(kGCsigmaCutGammaMass);
1218   v0Reader->SetUseImprovedVertex(kGCuseImprovedVertex);
1219   v0Reader->SetDoMCTruth(kGCdoMCTruth);
1220   v0Reader->SetUseOwnXYZCalculation(kGCdoOwnXYZCalculation);
1221
1222   // for CF
1223   v0Reader->SetCFManager(man);
1224         
1225   // for dEdx N sigma Cut
1226   v0Reader->SetDodEdxSigmaCut(kGCdodEdxSigmaCut);
1227   v0Reader->SetPIDnSigmaAboveElectronLine(kGCPIDnSigmaAboveElectronLine);
1228   v0Reader->SetPIDnSigmaBelowElectronLine(kGCPIDnSigmaBelowElectronLine);
1229   v0Reader->SetPIDnSigmaAbovePionLine(kGCPIDnSigmaAbovePionLine);
1230   v0Reader->SetPIDMinPnSigmaAbovePionLine(kGCPIDMinPnSigmaAbovePionLine);
1231   v0Reader->SetOnFlyFlag(kGCUseOnFlyV0Finder);
1232   v0Reader->SetCalculateBackground(kGCcalculateBackground);
1233
1234
1235   // Create the GammaConversionTask
1236
1237
1238   AliAnalysisTaskGammaConversion *gammaconversion = 
1239     new AliAnalysisTaskGammaConversion(Form("GammaConversionTask_%s",kGCAnalysisCutSelectionId.Data()));
1240
1241   cout<<"name of Task::"<< Form("GammaConversionTask_%s",kGCAnalysisCutSelectionId.Data())<< " "<<gammaconversion->GetName() <<endl;
1242   gammaconversion->SetDebugLevel(0);
1243         
1244   gammaconversion->SetWriteNtuple(kGCwriteNtuple);
1245         
1246   gammaconversion->SetV0Reader(v0Reader);
1247   gammaconversion->SetCalculateBackground(kGCcalculateBackground);
1248   gammaconversion->Init();
1249         
1250   gammaconversion->SetElectronMass(kGCelectronMass);
1251   gammaconversion->SetGammaMass(kGCgammaMass);
1252   gammaconversion->SetPi0Mass(kGCpi0Mass);
1253   gammaconversion->SetEtaMass(kGCetaMass);
1254         
1255   gammaconversion->SetGammaWidth(kGCgammaWidth);
1256   gammaconversion->SetPi0Width(kGCpi0Width);
1257   gammaconversion->SetEtaWidth(kGCetaWidth);
1258         
1259   gammaconversion->SetMinOpeningAngleGhostCut(kGCminOpeningAngleGhostCut);
1260         
1261   Double_t lowPtMapping=0.4;
1262   Double_t highPtMapping=1.5;
1263   gammaconversion->SetLowPtMapping(lowPtMapping);
1264   gammaconversion->SetHighPtMapping(highPtMapping);
1265
1266   // define the width constraint used by KF particle.
1267   Double_t gammaWidth = 0.01;
1268   Double_t pi0Width   = 0.01;
1269   Double_t etaWidth   = 0.01;
1270         
1271   gammaconversion->SetHistograms(histograms);
1272   v0Reader->SetHistograms(histograms);// also give the pointer to the v0reader, for debugging cuts
1273
1274   gammaconversion->SetTriggerCINT1B(kGCtriggerCINT1B);
1275   gammaconversion->SetDoMCTruth(kGCdoMCTruth);
1276         
1277   gammaconversion->SetDoNeutralMeson(kGCrunNeutralMeson);
1278   gammaconversion->SetDoNeutralMesonV0MCCheck(kGCdoNeutralMesonV0MCCheck);
1279   gammaconversion->SetDoJet(kGCrunJet);
1280   gammaconversion->SetDoChic(kGCrunChic);
1281   gammaconversion->SetDoOmegaMeson(kGCrunOmegaMeson);
1282
1283   // for CF
1284   gammaconversion->SetCFManager(man);
1285   gammaconversion->SetDoCF(kGCrunCF);
1286   v0Reader->SetDoCF(kGCrunCF);
1287         
1288   // Add task to the manager 
1289   mgr->AddTask(gammaconversion);
1290         
1291   // Connect I/O to the task
1292   mgr->ConnectInput (gammaconversion, 0, cinput1);
1293   
1294
1295   // CKB Output slot 0 is NOT connected if WriteStandardAOD is false?
1296   if(kGCWriteStandardAOD){
1297     mgr->ConnectOutput(gammaconversion, 0, coutput1);
1298   }
1299   mgr->ConnectOutput(gammaconversion, 1, coutput2);
1300   mgr->ConnectOutput(gammaconversion, 2, coutput3);
1301
1302   if(kGCrunOnTrain == kFALSE){
1303     if(kGCdataList.IsNull()){
1304       cout<<"Data list is not set, aborting."<<endl;
1305       return;
1306     }
1307     /*
1308       gROOT->LoadMacro("$ALICE_ROOT/ANALYSIS/macros/AddTaskPhysicsSelection.C");
1309       AliPhysicsSelectionTask* physSelTask = AddTaskPhysicsSelection();
1310       if(kGCdoMCTruth)physSelTask->GetPhysicsSelection()->SetAnalyzeMC();
1311       physSelTask->GetPhysicsSelection()->AddBackgroundIdentification(new AliBackgroundSelection());
1312       gammaconversion->SelectCollisionCandidates();     
1313     */
1314
1315     gROOT->LoadMacro("$ALICE_ROOT/ANALYSIS/macros/AddTaskPhysicsSelection.C");
1316     AliPhysicsSelectionTask* physSelTask = AddTaskPhysicsSelection(kGCdoMCTruth,kTRUE);
1317     gammaconversion->SelectCollisionCandidates(); 
1318
1319     //    if(kGCrunOnTrain == kFALSE){
1320       TChain* chain= CreateESDChain(kGCdataList,kGCnumberOfFilesToAnalyze);
1321                         
1322       mgr->InitAnalysis();
1323                         
1324       mgr->PrintStatus();
1325                         
1326       mgr->StartAnalysis("local",chain);
1327       //    }
1328   }
1329   return gammaconversion;
1330 }
1331
1332 void build() {
1333         
1334   TStopwatch timer;
1335   timer.Start();
1336   gSystem->Load("libTree.so");
1337   gSystem->Load("libGeom");
1338         
1339   ////
1340   //Setting up ESD.par//
1341   ////
1342   cout<<"compiling ESD"<<endl;
1343   setupPar("ESD");
1344   gSystem->Load("libVMC.so");
1345   gSystem->Load("libESD.so");
1346         
1347   ////
1348   ////
1349   //Setting up STEERBase.par//
1350   ////
1351   cout<<"compiling STEERBase"<<endl;
1352   setupPar("STEERBase");
1353   gSystem->Load("libSTEERBase.so");
1354         
1355   ////
1356   //Setting up AOD.par//
1357   ////
1358   cout<<"compiling AOD"<<endl;
1359   setupPar("AOD");
1360   gSystem->Load("libAOD.so");
1361         
1362   ////
1363   //Setting up ANALYSIS.par//
1364   ////
1365   cout<<"compiling ANALYSIS"<<endl;
1366   setupPar("ANALYSIS");
1367   gSystem->Load("libANALYSIS.so");
1368         
1369   ////
1370   //Setting up ANALYSISalice.par//
1371   ////
1372   cout<<"compiling ANALYSISalice"<<endl;
1373   setupPar("ANALYSISalice");
1374   gSystem->Load("libANALYSISalice.so");
1375         
1376   ////
1377   //Setting up CORRFW.par//
1378   ////
1379   cout<<"compiling CORRFW"<<endl;
1380   setupPar("CORRFW");
1381   gSystem->Load("CORRFW.so");
1382         
1383   ////
1384   //Setting up PWG4GammaConv.par//
1385   ////
1386   cout<<"compiling PWG4GammaConv"<<endl;
1387   setupPar("PWG4GammaConv");
1388   gSystem->Load("libPWG4GammaConv.so");
1389 }
1390
1391 Int_t setupPar(const char* pararchivename) {
1392   ///////////////////
1393   // Setup PAR File//
1394   ///////////////////
1395   if (pararchivename) {
1396     char processline[1024];
1397     sprintf(processline,".! tar xvzf %s.par",pararchivename);
1398     gROOT->ProcessLine(processline);
1399     const char* ocwd = gSystem->WorkingDirectory();
1400     gSystem->ChangeDirectory(pararchivename);
1401                 
1402     // check for BUILD.sh and execute
1403     if (!gSystem->AccessPathName("PROOF-INF/BUILD.sh")) {
1404       printf("*******************************\n");
1405       printf("*** Building PAR archive    ***\n");
1406       printf("*******************************\n");
1407                         
1408       if (gSystem->Exec("PROOF-INF/BUILD.sh")) {
1409         Error("runAnalysis","Cannot Build the PAR Archive! - Abort!");
1410         return -1;
1411       }
1412     }
1413     // check for SETUP.C and execute
1414     if (!gSystem->AccessPathName("PROOF-INF/SETUP.C")) {
1415       printf("*******************************\n");
1416       printf("*** Setup PAR archive       ***\n");
1417       printf("*******************************\n");
1418       gROOT->Macro("PROOF-INF/SETUP.C");
1419     }
1420                 
1421     gSystem->ChangeDirectory("../");
1422   }                                                                                                                                               
1423   return 1;
1424 }
1425
1426
1427
1428 void AddHistograms(AliGammaConversionHistograms *histograms){
1429   //---------------------------------------------- Jets ---------------------------------------------------------
1430   if(kGCrunJet == kTRUE){
1431     if (kGCplotdPhiHdrGam == kTRUE){
1432       histograms->AddHistogram("ESD_dphiHdrGam","ESD_dphiHdrGam", kGCnXBinsdphiHdrGam,kGCfirstXBindphiHdrGam,kGClastXBindphiHdrGam,"dphiHdrGam (rad)","Counts");
1433     }
1434                 
1435     if (kGCplotdPhiHdrGamIsolated == kTRUE){
1436       histograms->AddHistogram("ESD_dphiHdrGamIsolated","ESD_dphiHdrGamIsolated",  kGCnXBinsdphiHdrGam,kGCfirstXBindphiHdrGam,kGClastXBindphiHdrGam,"dphiHdrGamIsolated (rad)","Counts");
1437     }
1438                 
1439     if (kGCplotMinimumIsoDistance == kTRUE){
1440       histograms->AddHistogram("ESD_MinimumIsoDistance","ESD_MinimumIsoDistance", kGCnXBinsMinimumIsoDistance,kGCfirstXBinMinimumIsoDistance,kGClastXBinMinimumIsoDistance,"Minimum Iso Distance (rad)","Counts");
1441     }
1442                 
1443     if (kGCplotFFzHdrGam == kTRUE){
1444       histograms->AddHistogram("ESD_FFzHdrGam","ESD_FFzHdrGam", kGCnXBinsFFzHdrGam, kGCfirstXBinFFzHdrGam,kGClastXBinFFzHdrGam,"FFz Hdr Gam","Counts");
1445     }
1446                 
1447     if (kGCplotImbalanceHdrGam == kTRUE){
1448       histograms->AddHistogram("ESD_ImbalanceHdrGam","ESD_ImbalanceHdrGam", kGCnXBinsImbalanceHdrGam, kGCfirstXBinImbalanceHdrGam,kGClastXBinImbalanceHdrGam,"Imbalance Hdr Gam","Counts");
1449     }
1450   }//end if(kGCrunJet)
1451         
1452   //---------------------------------------------- Chi_c ---------------------------------------------------------
1453   if(kGCrunChic){
1454                 
1455     if(kGCplotESDInvMassePluseMinus == kTRUE){histograms->AddHistogram("ESD_InvMass_ePluseMinus","",kGCnXBinsJPsiMass, kGCfirstXBinJPsiMass, kGClastXBinJPsiMass, "",
1456                                                                        "");}
1457     if(kGCplotESDInvMassePluseMinus == kTRUE){histograms->AddHistogram("ESD_InvMass_ePluseMinusTest","",kGCnXBinsJPsiMass, kGCfirstXBinJPsiMass, kGClastXBinJPsiMass,
1458                                                                        "","");}
1459     if(kGCplotESDInvMassePluseMinus == kTRUE){histograms->AddHistogram("ESD_InvMass_xPlusxMinus","",kGCnXBinsJPsiMass, kGCfirstXBinJPsiMass, kGClastXBinJPsiMass, "",
1460                                                                        "");}
1461     if(kGCplotESDElectronPosNegPt == kTRUE){histograms->AddHistogram("ESD_ElectronPosNegPt","",kGCnXBinsEPosNegPt,kGCfirstXBinEPosNegPt,kGClastXBinEPosNegPt,"","");}
1462     if(kGCplotESDElectronPosNegEta == kTRUE){histograms->AddHistogram("ESD_ElectronPosNegEta","",kGCnXBinsEPosNegEta,kGCfirstXBinEPosNegEta,kGClastXBinEPosNegEta,"","
1463                                                                                                                                                   ");}
1464                 
1465     if(kGCplotESDElectronPosNegPt == kTRUE){histograms->AddHistogram("ESD_ElectronPosPt","",kGCnXBinsEPosNegPt,kGCfirstXBinEPosNegPt,kGClastXBinEPosNegPt,"","");}
1466     if(kGCplotESDElectronPosNegPt == kTRUE){histograms->AddHistogram("ESD_ElectronNegPt","",kGCnXBinsEPosNegPt,kGCfirstXBinEPosNegPt,kGClastXBinEPosNegPt,"","");}
1467                 
1468     if(kGCplotESDElectronPosNegAngle == kTRUE){histograms->AddHistogram("ESD_ElectronPosNegJPsiAngle","",kGCnXBinsEPosNegAngle,kGCfirstXBinEPosNegAngle,kGClastXBinEPosNegAngle,"","");}
1469
1470     if(kGCplotESDePoseNegAngle == kTRUE){histograms->AddHistogram("ESD_eNegePosAngleBeforeCut","",kGCnXBinsEPosNegAngle,kGCfirstXBinEPosNegAngle,kGClastXBinEPosNegAngle,"","");}
1471     if(kGCplotESDePoseNegAngle == kTRUE){histograms->AddHistogram("ESD_eNegePosAngleAfterCut","",kGCnXBinsEPosNegAngle,kGCfirstXBinEPosNegAngle,kGClastXBinEPosNegAngle,"","");}
1472     if(kGCplotESDInvMassGammaePluseMinusChiC == kTRUE) {histograms->AddHistogram("ESD_InvMass_GammaePluseMinusChiC","",kGCnXBinsChicMass,kGCfirstXBinChicMass,kGClastXBinChicMass,"","");}
1473     if(kGCplotESDInvMassGammaePluseMinusChiC == kTRUE) {histograms->AddHistogram("ESD_InvMass_GammaePluseMinusChiCDiff","",kGCnXBinsChicMass,kGCfirstXBinChicMass,kGClastXBinChicMass,"","");}
1474     if(kGCplotESDInvMassGammaePluseMinusPi0 == kTRUE) {histograms->AddHistogram("ESD_InvMass_GammaePluseMinusPi0","",kGCnXBinsPi0Mass,kGCfirstXBinPi0Mass,kGClastXBinPi0Mass,"","");}
1475     if(kGCplotESDElectronPosNegPi0Angle == kTRUE){histograms->AddHistogram("ESD_ElectronPosNegPi0Angle","",kGCnXBinsEPosNegAngle,kGCfirstXBinEPosNegAngle,kGClastXBinEPosNegAngle,"","");}
1476                 
1477     if(kGCplotESDEPosBackground == kTRUE){histograms->AddHistogram("ESD_EPosBackground","",kGCnXBinsEBackground,kGCfirstXBinEBackground,kGClastXBinEBackground,"","");}
1478                 
1479     if(kGCplotESDEPosBackground == kTRUE){histograms->AddHistogram("ESD_EPosENegNoJPsiBG","",kGCnXBinsEBackground,kGCfirstXBinEBackground,kGClastXBinEBackground,"","");}
1480                 
1481                 
1482     if(kGCplotESDENegBackground == kTRUE){histograms->AddHistogram("ESD_ENegBackground","",kGCnXBinsEBackground,kGCfirstXBinEBackground,kGClastXBinEBackground,"","");}
1483     if(kGCplotESDEPosENegBackground == kTRUE){histograms->AddHistogram("ESD_EPosENegBackground","",kGCnXBinsEBackground,kGCfirstXBinEBackground,kGClastXBinEBackground,"","");}
1484     if(kGCplotESDEPosENegBackgroundCut == kTRUE){histograms->AddHistogram("ESD_EPosENegBackgroundCut","",kGCnXBinsEBackgroundCut,kGCfirstXBinEBackgroundCut,kGClastXBinEBackgroundCut,"","");}
1485                 
1486     if(kGCplotESDEPosENegGammaBackgroundMX == kTRUE){histograms->AddHistogram("ESD_EPosENegGammaBackgroundMX","",kGCnXBinsEBackground,kGCfirstXBinEBackground,kGClastXBinEBackground,"","");}
1487     if(kGCplotESDEPosENegGammaBackgroundMX == kTRUE){histograms->AddHistogram("ESD_EPosENegGammaBackgroundMXDiff","",kGCnXBinsEBackground,kGCfirstXBinEBackground,kGClastXBinEBackground,"","");}
1488                 
1489     if(kGCplotTableElectrons == kTRUE){ histograms->AddTable("Table_Electrons","",kGCnElementsElectronTable,kGCelectronTable);}
1490
1491     if(kGCdoMCTruth){
1492       if(kGCplotMCElectronPosNegPt == kTRUE){histograms->AddHistogram("MC_ElectronPosNegPt","",kGCnXBinsEPosNegPt,kGCfirstXBinEPosNegPt,kGClastXBinEPosNegPt,"","");}
1493       if(kGCplotMCElectronPosNegEta == kTRUE){histograms->AddHistogram("MC_ElectronPosNegEta","",kGCnXBinsEPosNegEta,kGCfirstXBinEPosNegEta,kGClastXBinEPosNegEta,"","");}
1494       if(kGCplotMCElectronPosNegJPsiAngle == kTRUE){histograms->AddHistogram("MC_ElectronPosNegJPsiAngle","",kGCnXBinsEPosNegAngle,kGCfirstXBinEPosNegAngle,kGClastXBinEPosNegAngle,"","");}
1495       if(kGCplotMCElectronPosNegPi0Angle == kTRUE){histograms->AddHistogram("MC_ElectronPosNegPi0Angle","",kGCnXBinsEPosNegAngle,kGCfirstXBinEPosNegAngle,kGClastXBinEPosNegAngle,"","");}
1496     }
1497
1498   }// end kGCrunChic
1499         
1500   //---------------------------------------------- Neutral Meson ---------------------------------------------------------
1501   if(kGCrunNeutralMeson){
1502                 
1503     // Histograms from esd tracks       
1504     if(kGCplotESDEEnergy == kTRUE){ histograms->AddHistogram("ESD_E_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1505     if(kGCplotESDEPt == kTRUE){ histograms->AddHistogram("ESD_E_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1506     if(kGCplotESDEEta == kTRUE){ histograms->AddHistogram("ESD_E_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1507     if(kGCplotESDEPhi == kTRUE){ histograms->AddHistogram("ESD_E_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1508     if(kGCplotESDENTPCClusters == kTRUE){ histograms->AddHistogram("ESD_E_nTPCClusters" ,"" , kGCnXBinsNTPCClusters, kGCfirstXBinNTPCClusters, kGClastXBinNTPCClusters, "", "");}
1509     if(kGCplotESDENITSClusters == kTRUE){ histograms->AddHistogram("ESD_E_nITSClusters" ,"" , kGCnXBinsNITSClusters, kGCfirstXBinNITSClusters, kGClastXBinNITSClusters, "", "");}
1510                 
1511     if(kGCplotESDPEnergy == kTRUE){ histograms->AddHistogram("ESD_P_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1512     if(kGCplotESDPPt == kTRUE){ histograms->AddHistogram("ESD_P_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1513     if(kGCplotESDPEta == kTRUE){ histograms->AddHistogram("ESD_P_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1514     if(kGCplotESDPPhi == kTRUE){ histograms->AddHistogram("ESD_P_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1515     if(kGCplotESDPNTPCClusters == kTRUE){ histograms->AddHistogram("ESD_P_nTPCClusters" ,"" , kGCnXBinsNTPCClusters, kGCfirstXBinNTPCClusters, kGClastXBinNTPCClusters, "", "");}
1516     if(kGCplotESDPNITSClusters == kTRUE){ histograms->AddHistogram("ESD_P_nITSClusters" ,"" , kGCnXBinsNITSClusters, kGCfirstXBinNITSClusters, kGClastXBinNITSClusters, "", "");}
1517                 
1518     if(kGCplotESDConvGammaEnergy == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1519     if(kGCplotESDConvGammaPt == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1520     if(kGCplotESDConvGammaEta == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1521     if(kGCplotESDConvGammaPhi == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1522     if(kGCplotESDConvGammaMass == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Mass" ,"" ,  kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass, "", "");}
1523     if(kGCplotESDConvGammaWidth == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Width" ,"" , kGCnXBinsGammaWidth, kGCfirstXBinGammaWidth, kGClastXBinGammaWidth, "", "");}
1524     if(kGCplotESDConvGammaChi2 == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Chi2" ,"" , kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1525     if(kGCplotESDConvGammaNDF == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_NDF" ,"" , kGCnXBinsGammaNDF, kGCfirstXBinGammaNDF, kGClastXBinGammaNDF, "", "");}
1526     if(kGCplotESDConvGammaRapid == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1527     if(kGCplotESDConvGammaPtvsEta == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Pt_Eta","", kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt,kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta,"","" );}
1528     if(kGCplotESDConvGammaPtvsChi2 == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Pt_Chi2" ,"" ,kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1529     if(kGCplotESDConvGammaEtavsChi2 == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_Eta_Chi2" ,"" ,kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1530                 
1531                 
1532                 
1533     if(kGCplotESDConversionR == kTRUE){ histograms->AddHistogram("ESD_Conversion_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1534     if(kGCplotESDConversionZR == kTRUE){ histograms->AddHistogram("ESD_Conversion_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1535     if(kGCplotESDConversionXY == kTRUE){ histograms->AddHistogram("ESD_Conversion_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1536     if(kGCplotESDConversionOpeningAngle == kTRUE){ histograms->AddHistogram("ESD_Conversion_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1537
1538     if(kGCplotESDConvGammaCosPointingAngle == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_CosPointingAngle" ,"" , kGCnXBinsCosPointingAngle, kGCfirstXBinCosPointingAngle, kGClastXBinCosPointingAngle, "", "");}
1539     if(kGCplotESDConvGammaDcaDaugthers == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_DcaDaughters" ,"" , kGCnXBinsDcaDaughters, kGCfirstXBinDcaDaughters, kGClastXBinDcaDaughters, "", "");}
1540     if(kGCplotESDConvGammaNormDcaDistDaugthers == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_NormDcaDistDaughters" ,"" , kGCnXBinsNormDcaDistDaughters, kGCfirstXBinNormDcaDistDaughters, kGClastXBinNormDcaDistDaughters, "", "");}
1541     if(kGCplotESDConvGammaLikelihoodAP == kTRUE){ histograms->AddHistogram("ESD_ConvGamma_LikelihoodAP" ,"" , kGCnXBinsLikelihoodAP, kGCfirstXBinLikelihoodAP, kGClastXBinLikelihoodAP, "", "");}
1542     if(kGCplotESDConvGammaEAsymmetryP== kTRUE){ histograms->AddHistogram("ESD_ConvGamma_E_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1543     if(kGCplotESDConvGammaPAsymmetryP== kTRUE){ histograms->AddHistogram("ESD_ConvGamma_P_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1544     if(kGCplotESDConvGammaEdEdxP== kTRUE){ histograms->AddHistogram("ESD_ConvGamma_E_dEdxP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsdEdx, kGCfirstYBindEdx, kGClastYBindEdx,"", "");}
1545     if(kGCplotESDConvGammaPdEdxP== kTRUE){ histograms->AddHistogram("ESD_ConvGamma_P_dEdxP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsdEdx, kGCfirstYBindEdx, kGClastYBindEdx,"", "");}
1546
1547     if(kGCplotESDConvGammaQtAlfa== kTRUE){ histograms->AddHistogram("ESD_ConvGamma_alfa_qt" ,"" ,kGCnXBinsP, kGCfirstXBinAlpha, kGClastXBinAlpha,kGCnYBinsQt, kGCfirstYBinQt, kGClastYBinQt,"", "");}
1548
1549
1550                 
1551     if(kGCplotESDTrueDalitzContaminationR == kTRUE){ histograms->AddHistogram("ESD_TrueDalitzContamination_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1552                 
1553     if(kGCplotESDTrueConvGammaEnergy == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1554     if(kGCplotESDTrueConvGammaPt == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1555     if(kGCplotESDTrueConvGammaEta == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1556     if(kGCplotESDTrueConvGammaPhi == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1557     if(kGCplotESDTrueConvGammaMass == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Mass" ,"" ,  kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass, "", "");}
1558     if(kGCplotESDTrueConvGammaWidth == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Width" ,"" , kGCnXBinsGammaWidth, kGCfirstXBinGammaWidth, kGClastXBinGammaWidth, "", "");}
1559     if(kGCplotESDTrueConvGammaChi2 == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Chi2" ,"" , kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1560     if(kGCplotESDTrueConvGammaNDF == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_NDF" ,"" , kGCnXBinsGammaNDF, kGCfirstXBinGammaNDF, kGClastXBinGammaNDF, "", "");}
1561     if(kGCplotESDTrueConvGammaRapid == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1562     if(kGCplotESDTrueConvGammaPtvsEta == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Pt_Eta" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt,kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1563     if(kGCplotESDTrueConvGammaPtvsChi2 == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Pt_Chi2" ,"" ,kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1564     if(kGCplotESDTrueConvGammaEtavsChi2 == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_Eta_Chi2" ,"" ,kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1565                 
1566     if(kGCplotESDTrueConversionR == kTRUE){ histograms->AddHistogram("ESD_TrueConversion_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1567     if(kGCplotESDTrueConversionZR == kTRUE){ histograms->AddHistogram("ESD_TrueConversion_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1568     if(kGCplotESDTrueConversionXY == kTRUE){ histograms->AddHistogram("ESD_TrueConversion_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1569     if(kGCplotESDTrueConversionOpeningAngle == kTRUE){ histograms->AddHistogram("ESD_TrueConversion_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1570
1571     if(kGCplotESDTrueConvGammaCosPointingAngle == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_CosPointingAngle" ,"" , kGCnXBinsCosPointingAngle, kGCfirstXBinCosPointingAngle, kGClastXBinCosPointingAngle, "", "");}
1572     if(kGCplotESDTrueConvGammaDcaDaugthers == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_DcaDaughters" ,"" , kGCnXBinsDcaDaughters, kGCfirstXBinDcaDaughters, kGClastXBinDcaDaughters, "", "");}
1573     if(kGCplotESDTrueConvGammaNormDcaDistDaugthers == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_NormDcaDistDaughters" ,"" , kGCnXBinsNormDcaDistDaughters, kGCfirstXBinNormDcaDistDaughters, kGClastXBinNormDcaDistDaughters, "", "");}
1574     if(kGCplotESDTrueConvGammaLikelihoodAP == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_LikelihoodAP" ,"" , kGCnXBinsLikelihoodAP, kGCfirstXBinLikelihoodAP, kGClastXBinLikelihoodAP, "", "");}
1575     if(kGCplotESDTrueConvGammaEAsymmetryP== kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_E_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1576     if(kGCplotESDTrueConvGammaPAsymmetryP== kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_P_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1577     if(kGCplotESDTrueConvGammaEdEdxP== kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_E_dEdxP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsdEdx, kGCfirstYBindEdx, kGClastYBindEdx,"", "");}
1578     if(kGCplotESDTrueConvGammaPdEdxP== kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_P_dEdxP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsdEdx, kGCfirstYBindEdx, kGClastYBindEdx,"", "");}
1579
1580                 
1581     if(kGCplotESDTrueConvGammaMCPtEta == kTRUE){ histograms->AddHistogram("ESD_TrueConvGamma_MC_Pt_Eta" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1582     if(kGCplotESDTrueConversionMCZR == kTRUE){ histograms->AddHistogram("ESD_TrueConversion_MC_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1583     if(kGCplotESDTrueConversionMCXY == kTRUE){ histograms->AddHistogram("ESD_TrueConversion_MC_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1584                 
1585                 
1586                 
1587     if(kGCplotESDNoCutConvGammaEnergy == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1588     if(kGCplotESDNoCutConvGammaPt == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1589     if(kGCplotESDNoCutConvGammaEta == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1590     if(kGCplotESDNoCutConvGammaPhi == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1591     if(kGCplotESDNoCutConvGammaMass == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Mass" ,"" ,  kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass, "", "");}
1592     if(kGCplotESDNoCutConvGammaWidth == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Width" ,"" , kGCnXBinsGammaWidth, kGCfirstXBinGammaWidth, kGClastXBinGammaWidth, "", "");}
1593     if(kGCplotESDNoCutConvGammaChi2 == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Chi2" ,"" , kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1594     if(kGCplotESDNoCutConvGammaNDF == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_NDF" ,"" , kGCnXBinsGammaNDF, kGCfirstXBinGammaNDF, kGClastXBinGammaNDF, "", "");}
1595     if(kGCplotESDNoCutConvGammaRapid == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1596     if(kGCplotESDNoCutConvGammaPtvsEta == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Pt_Eta" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt,kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1597     if(kGCplotESDNoCutConvGammaPtvsChi2 == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Pt_Chi2" ,"" ,kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1598     if(kGCplotESDNoCutConvGammaEtavsChi2 == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_Eta_Chi2" ,"" ,kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, kGCnXBinsGammaChi2, kGCfirstXBinGammaChi2, kGClastXBinGammaChi2, "", "");}
1599                 
1600     if(kGCplotESDNoCutConversionR == kTRUE){ histograms->AddHistogram("ESD_NoCutConversion_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1601     if(kGCplotESDNoCutConversionZR == kTRUE){ histograms->AddHistogram("ESD_NoCutConversion_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1602     if(kGCplotESDNoCutConversionXY == kTRUE){ histograms->AddHistogram("ESD_NoCutConversion_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1603     if(kGCplotESDNoCutConversionOpeningAngle == kTRUE){ histograms->AddHistogram("ESD_NoCutConversion_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1604
1605     if(kGCplotESDNoCutConvGammaCosPointingAngle == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_CosPointingAngle" ,"" , kGCnXBinsCosPointingAngle, kGCfirstXBinCosPointingAngle, kGClastXBinCosPointingAngle, "", "");}
1606     if(kGCplotESDNoCutConvGammaDcaDaugthers == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_DcaDaughters" ,"" , kGCnXBinsDcaDaughters, kGCfirstXBinDcaDaughters, kGClastXBinDcaDaughters, "", "");}
1607     if(kGCplotESDNoCutConvGammaNormDcaDistDaugthers == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_NormDcaDistDaughters" ,"" , kGCnXBinsNormDcaDistDaughters, kGCfirstXBinNormDcaDistDaughters, kGClastXBinNormDcaDistDaughters, "", "");}
1608     if(kGCplotESDNoCutConvGammaLikelihoodAP == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_LikelihoodAP" ,"" , kGCnXBinsLikelihoodAP, kGCfirstXBinLikelihoodAP, kGClastXBinLikelihoodAP, "", "");}
1609     if(kGCplotESDNoCutConvGammaEAsymmetryP== kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_E_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1610     if(kGCplotESDNoCutConvGammaPAsymmetryP== kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_P_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1611
1612
1613     if(kGCplotESDNoCutConvGammaEdEdxP== kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_E_dEdxP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsdEdx, kGCfirstYBindEdx, kGClastYBindEdx,"", "");}
1614     if(kGCplotESDNoCutConvGammaPdEdxP== kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_P_dEdxP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsdEdx, kGCfirstYBindEdx, kGClastYBindEdx,"", "");}
1615
1616     if(kGCplotESDNoCutConvGammaMCPtEta == kTRUE){ histograms->AddHistogram("ESD_NoCutConvGamma_MC_Pt_Eta" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1617     if(kGCplotESDNoCutConversionMCZR == kTRUE){ histograms->AddHistogram("ESD_NoCutConversion_MC_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1618     if(kGCplotESDNoCutConversionMCXY == kTRUE){ histograms->AddHistogram("ESD_NoCutConversion_MC_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1619                 
1620                 
1621                 
1622     if(kGCplotESDMotherOpeningAngleGamma == kTRUE){ histograms->AddHistogram("ESD_Mother_GammaDaughter_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1623     if(kGCplotESDMotherEnergy == kTRUE){ histograms->AddHistogram("ESD_Mother_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1624     if(kGCplotESDMotherPt == kTRUE){ histograms->AddHistogram("ESD_Mother_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1625     if(kGCplotESDMotherEta == kTRUE){ histograms->AddHistogram("ESD_Mother_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1626     if(kGCplotESDMotherPhi == kTRUE){ histograms->AddHistogram("ESD_Mother_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1627     if(kGCplotESDMotherMass == kTRUE){ histograms->AddHistogram("ESD_Mother_Mass" ,"" , kGCnXBinsPi0Mass, kGCfirstXBinPi0Mass, kGClastXBinPi0Mass, "", "");}
1628     if(kGCplotESDMotherR == kTRUE){ histograms->AddHistogram("ESD_Mother_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1629     if(kGCplotESDMotherZR == kTRUE){ histograms->AddHistogram("ESD_Mother_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1630     if(kGCplotESDMotherXY == kTRUE){ histograms->AddHistogram("ESD_Mother_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1631     if(kGCplotESDMotherRapid == kTRUE){ histograms->AddHistogram("ESD_Mother_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1632                 
1633     for(Int_t z=0;z<8;z++){
1634       for(Int_t m=0;m<4;m++){
1635         if(kGCplotESDBackgroundOpeningAngleGamma == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_GammaDaughter_OpeningAngle",z,m) ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1636         if(kGCplotESDBackgroundEnergy == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_Energy",z,m) ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1637         if(kGCplotESDBackgroundPt == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_Pt",z,m) ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1638         if(kGCplotESDBackgroundEta == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_Eta",z,m) ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1639         if(kGCplotESDBackgroundPhi == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_Phi",z,m) ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1640         if(kGCplotESDBackgroundMass == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_Mass",z,m) ,"" , kGCnXBinsEtaMass, kGCfirstXBinEtaMass, kGClastXBinEtaMass, "", "");}
1641         if(kGCplotESDBackgroundR == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_R",z,m) ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1642         if(kGCplotESDBackgroundZR == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_ZR",z,m) ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1643         if(kGCplotESDBackgroundXY == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_XY",z,m) ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1644         if(kGCplotESDBackgroundRapid == kTRUE){ histograms->AddHistogram(Form("%d%dESD_Background_Rapid",z,m) ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1645       }
1646     }
1647
1648     if(kGCplotESDBackgroundOpeningAngleGamma == kTRUE){ histograms->AddHistogram("ESD_Background_GammaDaughter_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1649     if(kGCplotESDBackgroundEnergy == kTRUE){ histograms->AddHistogram("ESD_Background_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1650     if(kGCplotESDBackgroundPt == kTRUE){ histograms->AddHistogram("ESD_Background_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1651     if(kGCplotESDBackgroundEta == kTRUE){ histograms->AddHistogram("ESD_Background_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1652     if(kGCplotESDBackgroundPhi == kTRUE){ histograms->AddHistogram("ESD_Background_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1653     if(kGCplotESDBackgroundMass == kTRUE){ histograms->AddHistogram("ESD_Background_Mass" ,"" , kGCnXBinsEtaMass, kGCfirstXBinEtaMass, kGClastXBinEtaMass, "", "");}
1654     if(kGCplotESDBackgroundR == kTRUE){ histograms->AddHistogram("ESD_Background_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1655     if(kGCplotESDBackgroundZR == kTRUE){ histograms->AddHistogram("ESD_Background_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1656     if(kGCplotESDBackgroundXY == kTRUE){ histograms->AddHistogram("ESD_Background_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1657     if(kGCplotESDBackgroundRapid == kTRUE){ histograms->AddHistogram("ESD_Background_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1658                 
1659                 
1660     if(kGCplotMapping == kTRUE){
1661       histograms->InitializeMappingValues(kGCnPhiIndex,kGCnRIndex,kGCnXBinsMapping,kGCminRadius,kGCmaxRadius,kGCnYBinsMapping,kGCminPhi,kGCmaxPhi);
1662       histograms->AddMappingHistograms(kGCnPhiIndex,kGCnRIndex,kGCnXBinsMapping,kGCfirstXBinMapping,kGClastXBinMapping,kGCnYBinsMapping,kGCfirstYBinMapping,kGClastYBinMapping);
1663       //      histograms->AddMappingHistograms(kGCnPhiIndex,kGCnRIndex,kGCnXBinsMapping,kGCminRadius,kGCmaxRadius,kGCnYBinsMapping,kGCminPhi,kGCmaxPhi);
1664     }
1665
1666     //
1667     //************************************* Defining Resolution histograms *******************************************************/
1668     //
1669     // written by Friederike Bock 
1670     // contact: Friederike.Bock@cern.ch
1671     //
1672
1673     if(kGCrunRES == kTRUE){
1674         //------------------------------------------ Absolute Resolutions --------------------------------------------------------
1675     if(kGCplotResolutiondRAbs== kTRUE){
1676                 histograms->AddHistogram("Resolution_dRAbs_VS_R","" ,kGCnXBinsResdR, kGCfirstXBinResdR, kGClastXBinResdR,kGCnYBinsResdR,kGCfirstYBinResdR, kGClastYBinResdR, "", "");}
1677     if(kGCplotResolutiondZAbs== kTRUE){
1678                 histograms->AddHistogram("Resolution_dZAbs_VS_R","" ,kGCnXBinsResdR, kGCfirstXBinResdR, kGClastXBinResdR,kGCnYBinsResdR,kGCfirstYBinResdR, kGClastYBinResdR, "", "");}
1679     if(kGCplotResolutiondPhiAbs== kTRUE){
1680                 histograms->AddHistogram("Resolution_dPhiAbs_VS_R","" ,kGCnXBinsResdR, kGCfirstXBinResdR, kGClastXBinResdR,kGCnYBinsResdR, -TMath::Pi()/30., TMath::Pi()/30., "", "");}
1681
1682         //------------------------------------------ Relative Resolutions --------------------------------------------------------
1683     if(kGCplotResolutiondR == kTRUE){
1684                 histograms->AddHistogram("Resolution_dR" ,"" , kGCnXBinsResdR, kGCfirstXBinResdR, kGClastXBinResdR, kGCnYBinsResdR, kGCfirstYBinResdR, kGClastYBinResdR, "", "");}
1685     if(kGCplotResolutiondZ == kTRUE){
1686                 histograms->AddHistogram("Resolution_dZ" ,"" , kGCnXBinsResdZ, kGCfirstXBinResdZ, kGClastXBinResdZ, kGCnYBinsResdZ, kGCfirstYBinResdZ, kGClastYBinResdZ, "", "");}
1687
1688         //------------------------------------------- Pt vs R ---------------------------------------------------------------------             
1689     if(kGCplotResolutiondRdPt == kTRUE){
1690                 histograms->AddHistogram("Resolution_R_dPt" ,"" , kGCnXBinsResdR, kGCfirstXBinResdR, kGClastXBinResdR, kGCnYBinsResdRdPt, kGCfirstYBinResdRdPt, kGClastYBinResdRdPt, "", "");}
1691
1692
1693         // ------------------------------------------- Reconstruction Plots for Resolution ----------------------------------------             
1694     if(kGCplotResolutionMCPt == kTRUE){
1695                 histograms->AddHistogram("Resolution_MC_Pt" ,"" , kGCnXBinsResPt, kGCfirstXBinResPt, kGClastXBinResPt,"","");}
1696     if(kGCplotResolutionMCR == kTRUE){
1697                 histograms->AddHistogram("Resolution_MC_R" ,"" , kGCnXBinsResR, kGCfirstXBinResR, kGClastXBinResR,"","");}
1698     if(kGCplotResolutionMCZ == kTRUE){
1699                 histograms->AddHistogram("Resolution_MC_Z" ,"" , kGCnXBinsResZ, kGCfirstXBinResZ, kGClastXBinResZ,"","");}
1700                 
1701     if(kGCplotResolutionESDPt == kTRUE){
1702                 histograms->AddHistogram("Resolution_ESD_Pt" ,"" , kGCnXBinsResPt, kGCfirstXBinResPt, kGClastXBinResPt,"","");}
1703     if(kGCplotResolutionESDR == kTRUE){
1704                 histograms->AddHistogram("Resolution_ESD_R" ,"" , kGCnXBinsResR, kGCfirstXBinResR, kGClastXBinResR,"","");}
1705     if(kGCplotResolutionESDZ == kTRUE){
1706                 histograms->AddHistogram("Resolution_ESD_Z" ,"" , kGCnXBinsResZ, kGCfirstXBinResZ, kGClastXBinResZ,"","");}
1707
1708         // ------------------------------------------- Plots for specific Gamma Trigger Studies -----------------------------------     
1709     if(kGCplotResolutionPtdPt = kTRUE){
1710                 // ::::::::::::::::::::::::::::::::::::::: histograms for gammas ::::::::::::::::::::::::::::::::::::::::::::::::::::::
1711                 histograms->AddHistogram("Resolution_Gamma_dPt_Pt" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1712                 histograms->AddHistogram("Resolution_Gamma_dPt_Phi" ,"" , kGCnYBinsResdR, -TMath::Pi(), TMath::Pi(), kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1713                 
1714                 // ::::::::::::::::::::::::::::::::::::::: histograms for electrons :::::::::::::::::::::::::::::::::::::::::::::::::::
1715                 histograms->AddHistogram("Resolution_E_dPt_Pt" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1716                 histograms->AddHistogram("Resolution_E_dPt_Pt_ITS0" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1717                 histograms->AddHistogram("Resolution_E_dPt_Pt_ITS1" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1718                 histograms->AddHistogram("Resolution_E_dPt_Pt_ITS2" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1719                 histograms->AddHistogram("Resolution_E_dPt_Pt_ITS3" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1720                 histograms->AddHistogram("Resolution_E_dPt_Pt_ITS4" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1721                 histograms->AddHistogram("Resolution_E_dPt_Pt_ITS5" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1722                 histograms->AddHistogram("Resolution_E_dPt_Pt_ITS6" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1723                 histograms->AddHistogram("Resolution_E_dPt_Phi" ,"" , kGCnYBinsResdR, -TMath::Pi(), TMath::Pi(), kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1724                 histograms->AddHistogram("Resolution_E_nTRDtracklets_ESDPt" ,"" ,kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 7.5, -0.5, 8.,"", "");
1725                 histograms->AddHistogram("Resolution_E_nTRDtracklets_MCPt","" ,kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 7.5, -0.5, 8.,"", "");   
1726                 histograms->AddHistogram("Resolution_E_nTRDclusters_ESDPt","",kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 200.5, -0.5, 201,"", "");
1727                 histograms->AddHistogram("Resolution_E_nTRDclusters_MCPt","",kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 200.5, -0.5, 201.,"", "");
1728                 //              histograms->AddHistogram("Resolution_E_TRDsignal_ESDPt","", fV0Reader->GetNegativeTrackPt(), fV0Reader->GetNegativeESDTrack()->GetTRDsignal());
1729                 
1730                 // :::::::::::::::::::::::::::::::::::::::: histograms for positrons :::::::::::::::::::::::::::::::::::::::::::::::::::
1731                 histograms->AddHistogram("Resolution_P_dPt_Pt" ,"" , kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1732                 histograms->AddHistogram("Resolution_P_dPt_Pt_ITS0" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1733                 histograms->AddHistogram("Resolution_P_dPt_Pt_ITS1" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1734                 histograms->AddHistogram("Resolution_P_dPt_Pt_ITS2" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1735                 histograms->AddHistogram("Resolution_P_dPt_Pt_ITS3" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1736                 histograms->AddHistogram("Resolution_P_dPt_Pt_ITS4" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1737                 histograms->AddHistogram("Resolution_P_dPt_Pt_ITS5" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1738                 histograms->AddHistogram("Resolution_P_dPt_Pt_ITS6" ,"" ,kGCnYBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1739                 histograms->AddHistogram("Resolution_P_dPt_Phi" ,"" , kGCnYBinsResdR, -TMath::Pi(), TMath::Pi(), kGCnYBinsResdPt, kGCfirstYBinResdPt, kGClastYBinResdPt, "", "");
1740                 histograms->AddHistogram("Resolution_P_nTRDtracklets_ESDPt" ,"" ,kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 7.5, -0.5, 8.,"", "");   
1741                 histograms->AddHistogram("Resolution_P_nTRDtracklets_MCPt","", kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 7.5, -0.5, 8.,"", "");
1742                 histograms->AddHistogram("Resolution_P_nTRDclusters_ESDPt","",kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 200.5, -0.5, 201.,"", "");
1743                 histograms->AddHistogram("Resolution_P_nTRDclusters_MCPt","",kGCnXBinsResdPt, kGCfirstXBinResdPt, kGClastXBinResdPt, 200.5,-0.5, 201.0,"", "");
1744                 //              histograms->AddHistogram("Resolution_P_TRDsignal_ESDPt", "",fV0Reader->GetPositiveTrackPt(), fV0Reader->GetPositiveESDTrack()->GetTRDsignal());
1745     } //end of specific trigger study resolution plots
1746     } //end if(kGCrunRES=true)
1747     
1748     // ___________________________________________________________________________________________________________________________________________________
1749
1750     if(kGCplotESDNumberOfV0s == kTRUE){histograms->AddHistogram("ESD_NumberOfV0s","Number of v0s",100, -0.5, 99.5,"","");}
1751     if(kGCplotESDNumberOfSurvivingV0s == kTRUE){histograms->AddHistogram("ESD_NumberOfSurvivingV0s","Number of surviving v0s",100, -0.5, 99.5,"","");}
1752     if(kGCplotESDNumberOfContributorsVtx == kTRUE){histograms->AddHistogram("ESD_NumberOfContributorsVtx","Number of contributors to vertex",100, -0.5, 99.5,"","");}
1753     if(kGCplotESDNumberOfGoodESDTracks == kTRUE){histograms->AddHistogram("ESD_NumberOfGoodESDTracks","Number of Good ESD tracks",100, -0.5, 99.5,"","");}
1754     if(kGCplotESDNumberOfGoodESDTracks == kTRUE){histograms->AddHistogram("ESD_NumberOfGoodESDTracksVtx","Number of Good ESD tracks",100, -0.5, 99.5,"","");}   
1755         
1756     //  debug histograms
1757     if(kGCplotESDCutGetOnFly == kTRUE){histograms->AddHistogram("ESD_CutGetOnFly_InvMass" ,"Not GetOnFly" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1758     if(kGCplotESDCutNContributors == kTRUE){histograms->AddHistogram("ESD_CutNContributors_InvMass" ,"NContributors <= 0" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1759     if(kGCplotESDCutLikeSign == kTRUE){histograms->AddHistogram("ESD_CutLikeSign_InvMass" ,"LikeSign" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1760     if(kGCplotESDCutRefit == kTRUE){histograms->AddHistogram("ESD_CutRefit_InvMass" ,"No TPC refit" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1761     if(kGCplotESDCutKink == kTRUE){histograms->AddHistogram("ESD_CutKink_InvMass" ,"Kinks" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1762     if(kGCplotESDCutPIDProb == kTRUE){histograms->AddHistogram("ESD_CutPIDProb_InvMass" ,"wrong TPC PID" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1763
1764     if(kGCplotESDCutdedxSigmaElectronLine == kTRUE){histograms->AddHistogram("ESD_CutdEdxSigmaElectronLine_InvMass" ,"dedx ElectronLine" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1765     if(kGCplotESDCutdedxSigmaPionLine == kTRUE){histograms->AddHistogram("ESD_CutdEdxSigmaPionLine_InvMass" ,"dedx PionLine" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1766
1767     if(kGCplotESDCutR == kTRUE){histograms->AddHistogram("ESD_CutR_InvMass" ,"Above RMax" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1768     if(kGCplotESDCutNDF == kTRUE){histograms->AddHistogram("ESD_CutNDF_InvMass" ,"NDF <= 0" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1769     if(kGCplotESDCutChi2 == kTRUE){histograms->AddHistogram("ESD_CutChi2_InvMass" ,"#chi^{2} > Max" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1770     if(kGCplotESDCutEta == kTRUE){histograms->AddHistogram("ESD_CutEta_InvMass" ,"Above #eta max" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1771     if(kGCplotESDCutPt == kTRUE){histograms->AddHistogram("ESD_CutPt_InvMass" ,"Below p_{t} min" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1772     if(kGCplotESDCutLine == kTRUE){histograms->AddHistogram("ESD_CutLine_InvMass" ,"Out of reconstruction area" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1773     if(kGCplotESDCutZ == kTRUE){histograms->AddHistogram("ESD_CutZ_InvMass" ,"Out of reconstruction area" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1774     if(kGCplotESDCutMinClsTPC == kTRUE){histograms->AddHistogram("ESD_CutMinNClsTPC_InvMass" ,"Out of reconstruction area" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1775
1776     if(kGCplotESDGoodV0s == kTRUE){histograms->AddHistogram("ESD_GoodV0s_InvMass" ,"Good V0s" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1777     if(kGCplotESDAllV0s == kTRUE){histograms->AddHistogram("ESD_AllV0s_InvMass" ,"All V0s" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1778     if(kGCplotESDAllV0sCurrentFinder == kTRUE){histograms->AddHistogram("ESD_AllV0sCurrentFinder_InvMass" ,"All V0s Current Finder" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass,"","");}
1779
1780     if(kGCplotESDAllV0sCurrentFinderQtAlfa== kTRUE){ histograms->AddHistogram("ESD_AllV0sCurrentFinder_alfa_qt" ,"" ,kGCnXBinsP, kGCfirstXBinAlpha, kGClastXBinAlpha,kGCnYBinsQt, kGCfirstYBinQt, kGClastYBinQt,"", "");}
1781
1782     if(kGCplotESDTrueConvGammaTrackLength == kTRUE){histograms->AddHistogram("ESD_TrueConvGamma_TrackLength","Track length of TrueConvGamma",kGCnXBinsTrackLength,kGCfirstXBinTrackLength,kGClastXBinTrackLength,"","");}
1783     if(kGCplotESDTrueConvGammaTrackLengthVSInvMass == kTRUE){histograms->AddHistogram("ESD_TrueConvGamma_TrackLengthVSInvMass","Track length of TrueConvGamma vs Inv mass",kGCnXBinsTrackLength,kGCfirstXBinTrackLength,kGClastXBinTrackLength,kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt,"","");}
1784                 
1785     if(kGCplotOmegaSpectra == kTRUE){
1786       histograms->AddHistogram("ESD_Omega_InvMass_vs_Pt" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1787       histograms->AddHistogram("ESD_Omega_InvMass","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1788
1789       histograms->AddHistogram("ESD_Omega_Bck_InvMass_vs_Pt" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1790       histograms->AddHistogram("ESD_Omega_Bck_InvMass","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1791       histograms->AddHistogram("ESD_OmegaPipPinPi0_InvMass_vs_Pt" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1792       histograms->AddHistogram("ESD_OmegaPipPinPi0_InvMass","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1793
1794     }
1795
1796     if(kGCplotPi0Spectra == kTRUE){
1797       histograms->AddHistogram("ESD_Mother_alfa","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinAlpha, kGClastXBinAlpha,"#alfa","Counts");
1798
1799       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1800       histograms->AddHistogram("ESD_Mother_InvMass","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1801       histograms->AddHistogram("ESD_Mother_InvMass_1212","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1802       histograms->AddHistogram("ESD_Mother_InvMass_0912","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1803       histograms->AddHistogram("ESD_Mother_InvMass_0909","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1804       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt1212" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1805       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt0912" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1806       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt0909" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1807
1808
1809       histograms->AddHistogram("ESD_Mother_InvMass_GammaConvPHOS","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1810       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt_GammaConvPHOS" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1811       histograms->AddHistogram("ESD_Mother_InvMass_GammaConvPHOS_OpanLow","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1812       histograms->AddHistogram("ESD_Mother_InvMass_GammaConvPHOS_OpanHigh","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1813
1814       histograms->AddHistogram("ESD_Mother_InvMass_GammaConvEMCAL","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1815  histograms->AddHistogram("ESD_Mother_InvMass_GammaConvEMCAL_Bck","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1816
1817       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt_GammaConvEMCAL" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1818       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt_GammaConvEMCAL_Bck" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1819
1820
1821       histograms->AddHistogram("ESD_Mother_InvMass_GammaConvEMCAL_OpanLow","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1822       histograms->AddHistogram("ESD_Mother_InvMass_GammaConvEMCAL_OpanHigh","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1823
1824
1825       //      if(kGCdoNeutralMesonV0MCCheck == kTRUE){
1826         histograms->AddHistogram("ESD_TruePi0_InvMass","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1827         histograms->AddHistogram("ESD_TruePi0_InvMass_1212","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1828         histograms->AddHistogram("ESD_TruePi0_InvMass_0912","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1829         histograms->AddHistogram("ESD_TruePi0_InvMass_0909","Invariant mass",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1830         histograms->AddHistogram("ESD_TruePi0_OpeningAngle_1212" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");
1831         histograms->AddHistogram("ESD_TruePi0_OpeningAngle_0912" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");
1832         histograms->AddHistogram("ESD_TruePi0_OpeningAngle_0909" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");
1833         histograms->AddHistogram("ESD_TruePi0_InvMass_vs_Pt" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1834         histograms->AddHistogram("ESD_TruePi0_InvMass_vs_Pt1212" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1835         histograms->AddHistogram("ESD_TruePi0_InvMass_vs_Pt0912" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1836         histograms->AddHistogram("ESD_TruePi0_InvMass_vs_Pt0909" ,"Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1837         //}
1838
1839       histograms->AddHistogram("ESD_Mother_InvMass_vs_Pt_Fiducial" ,"Invariant Mass vs Pt |eta|<0.9" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1840       histograms->AddHistogram("ESD_Mother_InvMass_Fiducial","Invariant mass |eta|<0.9",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass [GeV]","Counts");
1841
1842
1843     }
1844
1845     if(kGCplotPi0Spectra == kTRUE && kGCcalculateBackground == kTRUE){
1846       for(Int_t z=0;z<8;z++){
1847         for(Int_t m=0;m<4;m++){
1848           histograms->AddHistogram(Form("%d%dESD_Background_InvMass_vs_Pt",z,m) ,"Background Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1849
1850           
1851           histograms->AddHistogram(Form("%d%dESD_Background_InvMass",z,m),"Invariant mass background",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass BG [GeV]","Counts");
1852
1853
1854           histograms->AddHistogram(Form("%d%dESD_Background_InvMassvsPtFid",z,m) ,"Background Invariant Mass vs Pt |eta|<0.9" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1855
1856          
1857           histograms->AddHistogram(Form("%d%dESD_Background_InvMass_Fiducial",z,m),"Invariant mass background |eta|<0.9",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass BG [GeV]","Counts");
1858         }
1859       }
1860     
1861       histograms->AddHistogram("ESD_Background_InvMass_vs_Pt" ,"Background Invariant Mass vs Pt" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1862       histograms->AddHistogram("ESD_Background_InvMass","Invariant mass background",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass BG [GeV]","Counts");
1863
1864       histograms->AddHistogram("ESD_Background_InvMass_vs_Pt_Fiducial" ,"Background Invariant Mass vs Pt |eta|<0.9" , kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra,kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra,"InvMass [GeV]","Pt [GeV]");
1865       histograms->AddHistogram("ESD_Background_InvMass_Fiducial","Invariant mass background |eta|<0.9",kGCnXBinsSpectra,kGCfirstXBinSpectra, kGClastXBinSpectra,"InvMass BG [GeV]","Counts");
1866     
1867     }
1868     
1869     if(kGCdoMCTruth){
1870       if(kGCplotMCConversionR == kTRUE){ histograms->AddHistogram("MC_Conversion_R","Radius of gamma conversion points",kGCnXBinsR, kGCfirstXBinR, kGClastXBinR,"counts","cm");}
1871       if(kGCplotMCConversionZR == kTRUE){ histograms->AddHistogram("MC_Conversion_ZR","Radius of gamma conversion points vs Z",kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "cm", "cm");}
1872       if(kGCplotMCConversionXY == kTRUE){ histograms->AddHistogram("MC_Conversion_XY","Gamma XY converison point.",kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "cm", "cm");}
1873       if(kGCplotMCConversionOpeningAngle == kTRUE){ histograms->AddHistogram("MC_Conversion_OpeningAngle","Opening angle of e+e- pairs from gamma conversion",kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "counts", "cm");}
1874       if(kGCplotMCConvGammaEAsymmetryP== kTRUE){ histograms->AddHistogram("MC_ConvGamma_E_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1875       if(kGCplotMCConvGammaPAsymmetryP== kTRUE){ histograms->AddHistogram("MC_ConvGamma_P_AsymmetryP" ,"" ,kGCnXBinsP, kGCfirstXBinP, kGClastXBinP,kGCnYBinsAsymmetry, kGCfirstYBinAsymmetry, kGClastYBinAsymmetry,"", "");}
1876                 
1877
1878       if(kGCplotMCEEnergy == kTRUE){ histograms->AddHistogram("MC_E_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1879       if(kGCplotMCEPt == kTRUE){ histograms->AddHistogram("MC_E_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1880       if(kGCplotMCEEta == kTRUE){ histograms->AddHistogram("MC_E_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1881       if(kGCplotMCEPhi == kTRUE){ histograms->AddHistogram("MC_E_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1882       if(kGCplotMCENTPCClusters == kTRUE){ histograms->AddHistogram("MC_E_nTPCClusters" ,"" , kGCnXBinsNTPCClusters, kGCfirstXBinNTPCClusters, kGClastXBinNTPCClusters, "", "");}
1883       if(kGCplotMCENITSClusters == kTRUE){ histograms->AddHistogram("MC_E_nITSClusters" ,"" , kGCnXBinsNITSClusters, kGCfirstXBinNITSClusters, kGClastXBinNITSClusters, "", "");}
1884                 
1885       if(kGCplotMCPEnergy == kTRUE){ histograms->AddHistogram("MC_P_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1886       if(kGCplotMCPPt == kTRUE){ histograms->AddHistogram("MC_P_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1887       if(kGCplotMCPEta == kTRUE){ histograms->AddHistogram("MC_P_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1888       if(kGCplotMCPPhi == kTRUE){ histograms->AddHistogram("MC_P_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1889       if(kGCplotMCPNTPCClusters == kTRUE){ histograms->AddHistogram("MC_P_nTPCClusters" ,"" , kGCnXBinsNTPCClusters, kGCfirstXBinNTPCClusters, kGClastXBinNTPCClusters, "", "");}
1890       if(kGCplotMCPNITSClusters == kTRUE){ histograms->AddHistogram("MC_P_nITSClusters" ,"" , kGCnXBinsNITSClusters, kGCfirstXBinNITSClusters, kGClastXBinNITSClusters, "", "");}
1891                 
1892       if(kGCplotMCallGammaEnergy == kTRUE){ histograms->AddHistogram("MC_allGamma_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1893       if(kGCplotMCallGammaPt == kTRUE){ histograms->AddHistogram("MC_allGamma_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1894       if(kGCplotMCallGammaEta == kTRUE){ histograms->AddHistogram("MC_allGamma_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1895       if(kGCplotMCallGammaPhi == kTRUE){ histograms->AddHistogram("MC_allGamma_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1896       if(kGCplotMCallGammaRapid == kTRUE){ histograms->AddHistogram("MC_allGamma_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1897                 
1898       if(kGCplotMCConvGammaEnergy == kTRUE){ histograms->AddHistogram("MC_ConvGamma_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1899       if(kGCplotMCConvGammaPt == kTRUE){ histograms->AddHistogram("MC_ConvGamma_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1900       if(kGCplotMCConvGammaEta == kTRUE){ histograms->AddHistogram("MC_ConvGamma_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1901       if(kGCplotMCConvGammaPhi == kTRUE){ histograms->AddHistogram("MC_ConvGamma_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1902       if(kGCplotMCConvGammaRapid == kTRUE){ histograms->AddHistogram("MC_ConvGamma_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1903       if(kGCplotMCConvGammaPtvsEta == kTRUE){ histograms->AddHistogram("MC_ConvGamma_Pt_Eta","", kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt,kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta,"","");}
1904                 
1905       if(kGCplotMCallDirectGammaEnergy == kTRUE){ histograms->AddHistogram("MC_allDirectGamma_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1906       if(kGCplotMCallDirectGammaPt == kTRUE){ histograms->AddHistogram("MC_allDirectGamma_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1907       if(kGCplotMCallDirectGammaEta == kTRUE){ histograms->AddHistogram("MC_allDirectGamma_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1908       if(kGCplotMCallDirectGammaPhi == kTRUE){ histograms->AddHistogram("MC_allDirectGamma_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1909       if(kGCplotMCallDirectGammaRapid == kTRUE){ histograms->AddHistogram("MC_allDirectGamma_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1910                 
1911       if(kGCplotMCConvDirectGammaEnergy == kTRUE){ histograms->AddHistogram("MC_ConvDirectGamma_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1912       if(kGCplotMCConvDirectGammaPt == kTRUE){ histograms->AddHistogram("MC_ConvDirectGamma_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1913       if(kGCplotMCConvDirectGammaEta == kTRUE){ histograms->AddHistogram("MC_ConvDirectGamma_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1914       if(kGCplotMCConvDirectGammaPhi == kTRUE){ histograms->AddHistogram("MC_ConvDirectGamma_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1915       if(kGCplotMCConvDirectGammaRapid == kTRUE){ histograms->AddHistogram("MC_ConvDirectGamma_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1916                 
1917       if(kGCplotMCMotherEta == kTRUE){ histograms->AddHistogram("MC_Mother_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1918       if(kGCplotMCMotherPhi == kTRUE){ histograms->AddHistogram("MC_Mother_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1919       if(kGCplotMCMotherRapid == kTRUE){ histograms->AddHistogram("MC_Mother_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1920       if(kGCplotMCMotherPt == kTRUE){ histograms->AddHistogram("MC_Mother_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1921       if(kGCplotMCMotherEnergy == kTRUE){ histograms->AddHistogram("MC_Mother_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1922       if(kGCplotMCMotherMass == kTRUE){ histograms->AddHistogram("MC_Mother_Mass" ,"" , kGCnXBinsGammaMass, kGCfirstXBinGammaMass, kGClastXBinGammaMass, "", "");}
1923       if(kGCplotMCMotherOpeningAngle == kTRUE){ histograms->AddHistogram("MC_Mother_GammaDaughter_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1924       if(kGCplotMCMotherR == kTRUE){ histograms->AddHistogram("MC_Mother_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1925       if(kGCplotMCMotherZR == kTRUE){ histograms->AddHistogram("MC_Mother_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1926       if(kGCplotMCMotherXY == kTRUE){ histograms->AddHistogram("MC_Mother_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1927       if(kGCplotMCMotherPtvsEtaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Mother_Pt_Eta_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1928       if(kGCplotMCMotherPtvsRapidWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Mother_Pt_Rapid_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1929       if(kGCplotMCMotherPtvsEtaConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Mother_Pt_Eta_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1930       if(kGCplotMCMotherPtvsRapidConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Mother_Pt_Rapid_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1931                 
1932       if(kGCplotMCMotherSpectra == kTRUE){ 
1933         histograms->AddHistogram("MC_Mother_InvMass_vs_Pt" ,"" ,kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra, kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra, "", "");
1934         histograms->AddHistogram("MC_Mother_InvMass_vs_Pt_withinAcceptance" ,"" ,kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra, kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra, "", "");
1935         histograms->AddHistogram("MC_Mother_InvMass_vs_Pt_ConvGamma_withinAcceptance" ,"" ,kGCnXBinsSpectra, kGCfirstXBinSpectra, kGClastXBinSpectra, kGCnYBinsSpectra, kGCfirstYBinSpectra, kGClastYBinSpectra, "", "");
1936       }
1937                 
1938                 
1939       if(kGCplotMCPi0Eta == kTRUE){ histograms->AddHistogram("MC_Pi0_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}        
1940       if(kGCplotMCPi0Rapid == kTRUE){ histograms->AddHistogram("MC_Pi0_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}      
1941       if(kGCplotMCPi0Phi == kTRUE){ histograms->AddHistogram("MC_Pi0_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1942       if(kGCplotMCPi0Pt == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1943       if(kGCplotMCPi0PtFiducial == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt_Fiducial" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1944       if(kGCplotMCPi0PtWithinAcceptanceFiducial == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt_withinAcceptance_Fiducial" ,"" , kGCnXBinsPt,kGCfirstXBinPt, kGClastXBinPt, "", "");}
1945       if(kGCplotMCPi0PtConvGammaWithinAcceptanceFiducial == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt_ConvGamma_withinAcceptance_Fiducial","" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1946
1947       if(kGCplotMCPi0Energy == kTRUE){ histograms->AddHistogram("MC_Pi0_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1948       if(kGCplotMCPi0Mass == kTRUE){ histograms->AddHistogram("MC_Pi0_Mass" ,"" , kGCnXBinsPi0Mass, kGCfirstXBinPi0Mass, kGClastXBinPi0Mass, "", "");}
1949       if(kGCplotMCPi0Alpha == kTRUE){ histograms->AddHistogram("MC_Pi0_alpha" ,"" , kGCnXBinsPi0Mass, kGCfirstXBinPi0Alpha, kGClastXBinPi0Alpha, "", "");}
1950
1951       if(kGCplotMCPi0OpeningAngle == kTRUE){ histograms->AddHistogram("MC_Pi0_GammaDaughter_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1952       if(kGCplotMCPi0R == kTRUE){ histograms->AddHistogram("MC_Pi0_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1953       if(kGCplotMCPi0ZR == kTRUE){ histograms->AddHistogram("MC_Pi0_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1954       if(kGCplotMCPi0XY == kTRUE){ histograms->AddHistogram("MC_Pi0_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1955       if(kGCplotMCPi0PtvsEtaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt_Eta_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1956       if(kGCplotMCPi0PtvsRapidWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt_Rapid_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1957       if(kGCplotMCPi0PtvsEtaConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt_Eta_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1958       if(kGCplotMCPi0PtvsRapidConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Pt_Rapid_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1959       if(kGCplotMCPi0ZRConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_ZR_ConvGamma_withinAcceptance" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1960                 
1961                 
1962       if(kGCplotMCPi0SecondaryEta == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1963       if(kGCplotMCPi0SecondaryRapid == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1964       if(kGCplotMCPi0SecondaryPhi == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1965       if(kGCplotMCPi0SecondaryPt == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1966       if(kGCplotMCPi0SecondaryEnergy == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1967       if(kGCplotMCPi0SecondaryMass == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Mass" ,"" , kGCnXBinsPi0Mass, kGCfirstXBinPi0Mass, kGClastXBinPi0Mass, "", "");}
1968       if(kGCplotMCPi0SecondaryOpeningAngle == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_GammaDaughter_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1969       if(kGCplotMCPi0SecondaryR == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1970       if(kGCplotMCPi0SecondaryZR == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1971       if(kGCplotMCPi0SecondaryXY == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1972       if(kGCplotMCPi0SecondaryPtvsEtaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Pt_Eta_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1973       if(kGCplotMCPi0SecondaryPtvsRapidWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Pt_Rapid_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1974       if(kGCplotMCPi0SecondaryPtvsEtaConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Pt_Eta_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1975       if(kGCplotMCPi0SecondaryPtvsRapidConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Pi0_Secondaries_Pt_Rapid_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1976                 
1977                 
1978                 
1979       if(kGCplotMCEtaEta == kTRUE){ histograms->AddHistogram("MC_Eta_Eta" ,"" , kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1980       if(kGCplotMCEtaRapid == kTRUE){ histograms->AddHistogram("MC_Eta_Rapid" ,"" , kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1981       if(kGCplotMCEtaPhi == kTRUE){ histograms->AddHistogram("MC_Eta_Phi" ,"" , kGCnXBinsPhi, kGCfirstXBinPhi, kGClastXBinPhi, "", "");}
1982       if(kGCplotMCEtaPt == kTRUE){ histograms->AddHistogram("MC_Eta_Pt" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, "", "");}
1983       if(kGCplotMCEtaEnergy == kTRUE){ histograms->AddHistogram("MC_Eta_Energy" ,"" , kGCnXBinsEnergy, kGCfirstXBinEnergy, kGClastXBinEnergy, "", "");}
1984       if(kGCplotMCEtaMass == kTRUE){ histograms->AddHistogram("MC_Eta_Mass" ,"" , kGCnXBinsEtaMass, kGCfirstXBinEtaMass, kGClastXBinEtaMass, "", "");}
1985       if(kGCplotMCEtaOpeningAngleGamma == kTRUE){ histograms->AddHistogram("MC_Eta_GammaDaughter_OpeningAngle" ,"" , kGCnXBinsOpeningAngle, kGCfirstXBinOpeningAngle, kGClastXBinOpeningAngle, "", "");}
1986       if(kGCplotMCEtaR == kTRUE){ histograms->AddHistogram("MC_Eta_R" ,"" , kGCnXBinsR, kGCfirstXBinR, kGClastXBinR, "", "");}
1987       if(kGCplotMCEtaZR == kTRUE){ histograms->AddHistogram("MC_Eta_ZR" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");}
1988       if(kGCplotMCEtaXY == kTRUE){ histograms->AddHistogram("MC_Eta_XY" ,"" , kGCnXBinsXY, kGCfirstXBinXY, kGClastXBinXY, kGCnYBinsXY, kGCfirstYBinXY, kGClastYBinXY, "", "");}
1989       if(kGCplotMCEtaPtvsEtaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Eta_Pt_Eta_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1990       if(kGCplotMCEtaPtvsRapidWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Eta_Pt_Rapid_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1991       if(kGCplotMCEtaPtvsEtaConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Eta_Pt_Eta_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsEta, kGCfirstXBinEta, kGClastXBinEta, "", "");}
1992       if(kGCplotMCEtaPtvsRapidConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Eta_Pt_Rapid_ConvGamma_withinAcceptance" ,"" , kGCnXBinsPt, kGCfirstXBinPt, kGClastXBinPt, kGCnXBinsRapid, kGCfirstXBinRapid, kGClastXBinRapid, "", "");}
1993       if(kGCplotMCEtaZRConvGammaWithinAcceptance == kTRUE){ histograms->AddHistogram("MC_Eta_ZR_ConvGamma_withinAcceptance" ,"" , kGCnXBinsZR, kGCfirstXBinZR, kGClastXBinZR, kGCnYBinsZR, kGCfirstYBinZR, kGClastYBinZR, "", "");} 
1994     }
1995     
1996   }// end kGCrunNeutralMeson
1997
1998   
1999   //---------------------------------------------------  2 gamma Background -------------------------------------------------------
2000
2001   if(kGCcalculateBackground==kTRUE){
2002     histograms->AddHistogram("ESD_Z_distribution" ,"Z primary vertex" , 2000, -30, 30,"Z[cm]","counts");
2003     histograms->AddHistogram("ESD_multiplicity_distribution" ,"multiplicity distribution" , 200, 0, 200,"counts","Multiplicity");
2004     histograms->AddHistogram("ESD_ZvsMultiplicity" ,"Z vs Multiplicity" , 1000, -10, 10,200,0,200,"Z[cm]","Multiplicity");
2005   }
2006 }
2007
2008
2009
2010 Int_t SetAnalysisCutSelection(TString analysisCutSelection){
2011   Int_t iResult=0;
2012   
2013   // set the cuts depending on the Cut Selection Id
2014   // first number is dummy always set to 9 
2015   //  const char* cutSelection = analysisCutSelection.Data(); 
2016   if(analysisCutSelection.Length()!=10){
2017     cout<<"Cut selection has the wrong length!"<<endl;
2018     return 0;
2019   }
2020
2021   char cutSelection[] = analysisCutSelection.Data();
2022   int array[c_array_size];
2023   const int N = sizeof(array) / sizeof(int);
2024   string2array( cutSelection, array );
2025
2026
2027
2028   Int_t goodId=array[0];
2029   Int_t v0FinderType=array[1];
2030   Int_t eProbCut=array[2];
2031   Int_t ededxSigmaCut=array[3];
2032   Int_t pidedxSigmaCut=array[4];
2033   Int_t piMomdedxSigmaCut=array[5];
2034   Int_t chi2GammaCut=array[6];
2035   Int_t singlePtCut=array[7];
2036   Int_t clsTPCCut=array[8];
2037   Int_t etaCut=array[9];
2038
2039
2040
2041   cout<<"etaCut: "<<etaCut<<endl;
2042   cout<<"clsTPCCut: "<<clsTPCCut<<endl;
2043   cout<<"singlePtCut: "<<singlePtCut<<endl;
2044   cout<<"chi2GammaCut: "<<chi2GammaCut<<endl;
2045   cout<<"piMomdedxSigmaCut: "<<piMomdedxSigmaCut<<endl;
2046   cout<<"pidedxSigmaCut: "<<pidedxSigmaCut <<endl;
2047   cout<<"ededxSigmaCut: "<<ededxSigmaCut <<endl;
2048   cout<<"eProbCut: "<< eProbCut<<endl;
2049   cout<<"v0FinderType: "<<v0FinderType <<endl;
2050   cout<<"goodId: "<<goodId <<endl;
2051
2052   if(goodId !=9){
2053     cout<<"Analysis Cut Selection too short or does not start with 9"<<endl;
2054     return iResult;
2055   }
2056
2057   switch (v0FinderType){
2058   case 0:  // on fly V0 finder
2059     kGCUseOnFlyV0Finder=kTRUE;
2060     break;
2061   case 1:  // offline V0 finder
2062     kGCUseOnFlyV0Finder=kFALSE;
2063     break;
2064   default:
2065     return iResult;
2066   }
2067   switch(eProbCut){
2068   case 0:  // 0.
2069     kGCprobElectron = 0.000;
2070     break;
2071   case 1:  // 0.001
2072     kGCprobElectron = 0.001;
2073     break;
2074   case 2:  // 0.01
2075     kGCprobElectron = 0.01;
2076     break;
2077   default:
2078     return iResult;
2079   }
2080
2081   switch(ededxSigmaCut){
2082   case 0: // -10,10
2083     kGCPIDnSigmaBelowElectronLine=-10;
2084     kGCPIDnSigmaAboveElectronLine=10;
2085     break;
2086   case 1: // -5,5 
2087     kGCPIDnSigmaBelowElectronLine=-5;
2088     kGCPIDnSigmaAboveElectronLine=5;
2089     break;
2090   case 2: // -3,5
2091     kGCPIDnSigmaBelowElectronLine=-3;
2092     kGCPIDnSigmaAboveElectronLine=5;
2093     break;
2094   default:
2095     return iResult;
2096   }
2097   
2098   switch(pidedxSigmaCut){
2099   case 0:  // -10
2100     kGCPIDnSigmaAbovePionLine=-10;
2101     break;
2102   case 1:   // 0
2103     kGCPIDnSigmaAbovePionLine=0;
2104     break;
2105   case 2:  // 1
2106     kGCPIDnSigmaAbovePionLine=1;
2107     break;
2108   default:
2109     return iResult;
2110   }
2111   
2112   switch(piMomdedxSigmaCut){
2113   case 0:  // 0.5 GeV
2114     kGCPIDMinPnSigmaAbovePionLine=0.5;
2115     break;
2116   case 1:  // 1. GeV
2117     kGCPIDMinPnSigmaAbovePionLine=1.;
2118     break;
2119   case 2:  // 1.5 GeV
2120     kGCPIDMinPnSigmaAbovePionLine=1.5;
2121     break;
2122   default:
2123     return iResult;
2124   }
2125   
2126   switch(chi2GammaCut){
2127   case 0: // 100
2128     kGCchi2CutConversion = 100.;
2129     break;
2130   case 1:  // 50
2131     kGCchi2CutConversion = 50.;
2132     break;
2133   case 2:  // 30
2134     kGCchi2CutConversion = 30.;
2135     break;
2136   default:
2137     return iResult;
2138   }
2139
2140   switch(singlePtCut){
2141   case 0: // 0.050 GeV
2142     kGCsingleptCut = 0.050;
2143     break;
2144   case 1:  // 0.100 GeV
2145     kGCsingleptCut = 0.100;
2146     break;
2147   case 2:  // 0.150 GeV
2148     kGCsingleptCut = 0.150;
2149     break;
2150   case 3:  // 0.200 GeV
2151     kGCsingleptCut = 0.200;
2152     break;
2153   default:
2154     return iResult;
2155  }
2156
2157   switch(clsTPCCut){
2158   case 0: // 0 
2159     kGCminClsTPCCut= 0.;
2160     break;
2161   case 1:  // 70 
2162     kGCminClsTPCCut= 70.;
2163     break;
2164   case 2:  // 80 
2165     kGCminClsTPCCut= 80.;
2166     break;
2167   case 3:  // 100 
2168     kGCminClsTPCCut= 100.;
2169     break;
2170   default:
2171     return iResult;
2172   }
2173
2174   switch(etaCut){
2175   case 0: // 0.9 
2176     kGCetaCut    = 0.9;
2177     kGCLineCutZRSlope = tan(2*atan(exp(-kGCetaCut)));
2178     break;
2179   case 1:  // 1.2
2180     kGCetaCut    = 1.2;
2181     kGCLineCutZRSlope = tan(2*atan(exp(-kGCetaCut)));
2182     break;
2183   case 2:  // 1.4
2184     kGCetaCut    = 1.4;
2185     kGCLineCutZRSlope = tan(2*atan(exp(-kGCetaCut)));
2186     break;
2187   default:
2188     return iResult;
2189   }
2190
2191   iResult=1;
2192   return iResult;
2193 }
2194
2195
2196 void string2array(const std::string& number, int a[c_array_size]) 
2197 {
2198     if (number.size() == c_array_size) {
2199 #define ASSIGNARRAY(i)  a[i] = number[i] - '0'
2200         ASSIGNARRAY(0);
2201         ASSIGNARRAY(1);
2202         ASSIGNARRAY(2);
2203         ASSIGNARRAY(3);
2204         ASSIGNARRAY(4);
2205         ASSIGNARRAY(5);
2206         ASSIGNARRAY(6);
2207         ASSIGNARRAY(7);
2208         ASSIGNARRAY(8);
2209         ASSIGNARRAY(9);
2210   }
2211 }
2212
2213
2214
2215