]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/CaloCalib/AliAnalysisTaskEMCALPi0CalibSelection.cxx
IsHeavyIon flag, added Centrality Selection, Add mising Cut for Nch, extra histograms...
[u/mrichter/AliRoot.git] / PWG4 / CaloCalib / AliAnalysisTaskEMCALPi0CalibSelection.cxx
CommitLineData
375cec9b 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: Boris Polishchuk *
5 * Adapted to AOD reading by Gustavo Conesa *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16//---------------------------------------------------------------------------//
17// //
18// Fill histograms (one per cell) with two-cluster invariant mass //
19// using calibration coefficients of the previous iteration. //
20// Histogram for a given cell is filled if the most energy of one cluster //
21// is deposited in this cell and the other cluster could be anywherein EMCAL.//
22// //
23//---------------------------------------------------------------------------//
24
25//#include <cstdlib>
26//#include <Riostream.h>
27// Root
28#include "TLorentzVector.h"
375cec9b 29#include "TRefArray.h"
30#include "TList.h"
31#include "TH1F.h"
247abff4 32#include <TGeoManager.h>
375cec9b 33
34// AliRoot
35#include "AliAnalysisTaskEMCALPi0CalibSelection.h"
36#include "AliAODEvent.h"
37#include "AliESDEvent.h"
375cec9b 38#include "AliEMCALGeometry.h"
c8fe2783 39#include "AliVCluster.h"
40#include "AliVCaloCells.h"
9584c261 41#include "AliEMCALRecoUtils.h"
6eb2a715 42//#include "AliEMCALAodCluster.h"
43//#include "AliEMCALCalibData.h"
375cec9b 44
45ClassImp(AliAnalysisTaskEMCALPi0CalibSelection)
46
375cec9b 47
48//__________________________________________________
49AliAnalysisTaskEMCALPi0CalibSelection::AliAnalysisTaskEMCALPi0CalibSelection(const char* name) :
6eb2a715 50 AliAnalysisTaskSE(name),fEMCALGeo(0x0),//fCalibData(0x0),
9fdaff9a 51 fEmin(0.5), fEmax(15.), fAsyCut(1.),fMinNCells(2), fGroupNCells(0),
247abff4 52 fLogWeight(4.5), fSameSM(kFALSE), fOldAOD(kFALSE), fFilteredInput(kFALSE),
3b13c34c 53 fCorrectClusters(kFALSE), fEMCALGeoName("EMCAL_FIRSTYEARV1"),
9584c261 54 fRecoUtils(new AliEMCALRecoUtils),
55 fNbins(300), fMinBin(0.), fMaxBin(300.),fOutputContainer(0x0),
56 fHmgg(0x0), fHmggDifferentSM(0x0),
57 fHOpeningAngle(0x0), fHOpeningAngleDifferentSM(0x0),
58 fHIncidentAngle(0x0), fHIncidentAngleDifferentSM(0x0),
59 fHAsymmetry(0x0), fHAsymmetryDifferentSM(0x0),
3b13c34c 60 fhNEvents(0x0),fCuts(0x0),fLoadMatrices(0)
375cec9b 61{
62 //Named constructor which should be used.
63
bdd2a262 64 for(Int_t iMod=0; iMod < 12; iMod++) {
65 for(Int_t iX=0; iX<24; iX++) {
66 for(Int_t iZ=0; iZ<48; iZ++) {
2dfb1428 67 fHmpi0[iMod][iZ][iX]=0;
375cec9b 68 }
69 }
70 }
6eb2a715 71
2dfb1428 72 for(Int_t iSM=0; iSM<4; iSM++) {
9584c261 73 fHmggSM[iSM] =0;
74 fHmggPairSM[iSM] =0;
75 fHOpeningAngleSM[iSM] =0;
76 fHOpeningAnglePairSM[iSM] =0;
77 fHAsymmetrySM[iSM] =0;
78 fHAsymmetryPairSM[iSM] =0;
79 fHIncidentAngleSM[iSM] =0;
80 fHIncidentAnglePairSM[iSM]=0;
81 fhTowerDecayPhotonHit[iSM] =0;
82 fhTowerDecayPhotonEnergy[iSM]=0;
83 fhTowerDecayPhotonAsymmetry[iSM]=0;
3b13c34c 84 fMatrix[iSM] = 0x0;
2dfb1428 85 }
86
cf028690 87 DefineOutput(1, TList::Class());
6eb2a715 88 DefineOutput(2, TList::Class()); // will contain cuts or local params
375cec9b 89
90}
91
92//__________________________________________________
93AliAnalysisTaskEMCALPi0CalibSelection::~AliAnalysisTaskEMCALPi0CalibSelection()
94{
95 //Destructor.
96
97 if(fOutputContainer){
98 fOutputContainer->Delete() ;
99 delete fOutputContainer ;
100 }
101
6eb2a715 102 //if(fCalibData) delete fCalibData;
3b13c34c 103 if(fEMCALGeo) delete fEMCALGeo ;
104 if(fRecoUtils) delete fRecoUtils ;
9584c261 105
375cec9b 106}
107
6eb2a715 108//_____________________________________________________
109void AliAnalysisTaskEMCALPi0CalibSelection::LocalInit()
110{
111 // Local Initialization
112
113 // Create cuts/param objects and publish to slot
2dfb1428 114 const Int_t buffersize = 255;
115 char onePar[buffersize] ;
6eb2a715 116 fCuts = new TList();
117
9fdaff9a 118 snprintf(onePar,buffersize, "Custer cuts: %2.2f < E < %2.2f GeV; min number of cells %d; Assymetry cut %1.2f", fEmin,fEmax, fMinNCells, fAsyCut) ;
6eb2a715 119 fCuts->Add(new TObjString(onePar));
2dfb1428 120 snprintf(onePar,buffersize, "Group %d cells;", fGroupNCells) ;
6eb2a715 121 fCuts->Add(new TObjString(onePar));
247abff4 122 snprintf(onePar,buffersize, "Cluster maximal cell away from border at least %d cells;", fRecoUtils->GetNumberOfCellsFromEMCALBorder()) ;
cfce8d44 123 fCuts->Add(new TObjString(onePar));
2dfb1428 124 snprintf(onePar,buffersize, "Histograms: bins %d; energy range: %2.2f < E < %2.2f GeV;",fNbins,fMinBin,fMaxBin) ;
6eb2a715 125 fCuts->Add(new TObjString(onePar));
247abff4 126 snprintf(onePar,buffersize, "Switchs: Remove Bad Channels? %d; Use filtered input? %d; Correct Clusters? %d, Analyze Old AODs? %d, Mass per channel same SM clusters? %d ",
127 fRecoUtils->IsBadChannelsRemovalSwitchedOn(),fFilteredInput,fCorrectClusters, fOldAOD, fSameSM) ;
6eb2a715 128 fCuts->Add(new TObjString(onePar));
3b13c34c 129 snprintf(onePar,buffersize, "EMCAL Geometry name: < %s >, Load Matrices? %d",fEMCALGeoName.Data(),fLoadMatrices) ;
6eb2a715 130 fCuts->Add(new TObjString(onePar));
131
132 // Post Data
133 PostData(2, fCuts);
134
135}
375cec9b 136
2dfb1428 137//_________________________________________________________________
138Int_t AliAnalysisTaskEMCALPi0CalibSelection::GetEMCALClusters(AliVEvent * event, TRefArray *clusters) const
139{
140 // fills the provided TRefArray with all found emcal clusters
141
142 clusters->Clear();
143 AliVCluster *cl = 0;
144 Bool_t first = kTRUE;
145 for (Int_t i = 0; i < event->GetNumberOfCaloClusters(); i++) {
146 if ( (cl = event->GetCaloCluster(i)) ) {
147 if (IsEMCALCluster(cl)){
148 if(first) {
149 new (clusters) TRefArray(TProcessID::GetProcessWithUID(cl));
150 first=kFALSE;
151 }
152 clusters->Add(cl);
153 //printf("IsEMCal cluster %d, E %2.3f Size: %d \n",i,cl->E(),clusters->GetEntriesFast());
154 }
155 }
156 }
157 return clusters->GetEntriesFast();
158}
159
160
161//____________________________________________________________________________
162Bool_t AliAnalysisTaskEMCALPi0CalibSelection::IsEMCALCluster(AliVCluster* cluster) const {
163 // Check if it is a cluster from EMCAL. For old AODs cluster type has
164 // different number and need to patch here
165
166 if(fOldAOD)
167 {
168 if (cluster->GetType() == 2) return kTRUE;
169 else return kFALSE;
170 }
171 else
172 {
173 return cluster->IsEMCAL();
174 }
175
176}
177
178
375cec9b 179//__________________________________________________
180void AliAnalysisTaskEMCALPi0CalibSelection::UserCreateOutputObjects()
181{
247abff4 182 //Create output container, init geometry
cf028690 183
cf028690 184 fEMCALGeo = AliEMCALGeometry::GetInstance(fEMCALGeoName) ;
9584c261 185
375cec9b 186 fOutputContainer = new TList();
2dfb1428 187 const Int_t buffersize = 255;
188 char hname[buffersize], htitl[buffersize];
375cec9b 189
6eb2a715 190 for(Int_t iMod=0; iMod < (fEMCALGeo->GetEMCGeometry())->GetNumberOfSuperModules(); iMod++) {
cf028690 191 for(Int_t iRow=0; iRow<AliEMCALGeoParams::fgkEMCALRows; iRow++) {
192 for(Int_t iCol=0; iCol<AliEMCALGeoParams::fgkEMCALCols; iCol++) {
2dfb1428 193 snprintf(hname,buffersize, "%d_%d_%d",iMod,iCol,iRow);
194 snprintf(htitl,buffersize, "Two-gamma inv. mass for super mod %d, cell(col,row)=(%d,%d)",iMod,iCol,iRow);
70ae4900 195 fHmpi0[iMod][iCol][iRow] = new TH1F(hname,htitl,fNbins,fMinBin,fMaxBin);
196 fOutputContainer->Add(fHmpi0[iMod][iCol][iRow]);
375cec9b 197 }
198 }
199 }
200
70ae4900 201 fHmgg = new TH2F("hmgg","2-cluster invariant mass",fNbins,fMinBin,fMaxBin,100,0,10);
202 fHmgg->SetXTitle("m_{#gamma #gamma} (MeV/c^{2})");
203 fHmgg->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
375cec9b 204 fOutputContainer->Add(fHmgg);
2dfb1428 205
206 fHmggDifferentSM = new TH2F("hmggDifferentSM","2-cluster invariant mass, different SM",fNbins,fMinBin,fMaxBin,100,0,10);
207 fHmggDifferentSM->SetXTitle("m_{#gamma #gamma} (MeV/c^{2})");
208 fHmggDifferentSM->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
209 fOutputContainer->Add(fHmggDifferentSM);
9584c261 210
211 fHOpeningAngle = new TH2F("hopang","2-cluster opening angle",100,0.,50.,100,0,10);
212 fHOpeningAngle->SetXTitle("#alpha_{#gamma #gamma}");
213 fHOpeningAngle->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
214 fOutputContainer->Add(fHOpeningAngle);
215
216 fHOpeningAngleDifferentSM = new TH2F("hopangDifferentSM","2-cluster opening angle, different SM",100,0,50.,100,0,10);
217 fHOpeningAngleDifferentSM->SetXTitle("#alpha_{#gamma #gamma}");
218 fHOpeningAngleDifferentSM->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
219 fOutputContainer->Add(fHOpeningAngleDifferentSM);
220
221 fHIncidentAngle = new TH2F("hinang","#gamma incident angle in SM",100,0.,20.,100,0,10);
222 fHIncidentAngle->SetXTitle("#alpha_{#gamma SM center}");
223 fHIncidentAngle->SetYTitle("p_{T #gamma} (GeV/c)");
224 fOutputContainer->Add(fHIncidentAngle);
225
226 fHIncidentAngleDifferentSM = new TH2F("hinangDifferentSM","#gamma incident angle in SM, different SM pair",100,0,20.,100,0,10);
227 fHIncidentAngleDifferentSM->SetXTitle("#alpha_{#gamma - SM center}");
228 fHIncidentAngleDifferentSM->SetYTitle("p_{T #gamma} (GeV/c)");
229 fOutputContainer->Add(fHIncidentAngleDifferentSM);
230
231 fHAsymmetry = new TH2F("hasym","2-cluster opening angle",100,0.,1.,100,0,10);
232 fHAsymmetry->SetXTitle("a");
233 fHAsymmetry->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
234 fOutputContainer->Add(fHAsymmetry);
235
236 fHAsymmetryDifferentSM = new TH2F("hasymDifferentSM","2-cluster opening angle, different SM",100,0,1.,100,0,10);
237 fHAsymmetryDifferentSM->SetXTitle("a");
238 fHAsymmetryDifferentSM->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
239 fOutputContainer->Add(fHAsymmetryDifferentSM);
240
2dfb1428 241
242 TString pairname[] = {"A side (0-2)", "C side (1-3)","Row 0 (0-1)", "Row 1 (2-3)"};
243
244 for(Int_t iSM=0; iSM<4; iSM++) {
245
246 snprintf(hname, buffersize, "hmgg_SM%d",iSM);
247 snprintf(htitl, buffersize, "Two-gamma inv. mass for super mod %d",iSM);
248 fHmggSM[iSM] = new TH2F(hname,htitl,fNbins,fMinBin,fMaxBin,100,0,10);
249 fHmggSM[iSM]->SetXTitle("m_{#gamma #gamma} (MeV/c^{2})");
250 fHmggSM[iSM]->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
2dfb1428 251 fOutputContainer->Add(fHmggSM[iSM]);
252
2dfb1428 253 snprintf(hname,buffersize, "hmgg_PairSM%d",iSM);
254 snprintf(htitl,buffersize, "Two-gamma inv. mass for SM pair: %s",pairname[iSM].Data());
255 fHmggPairSM[iSM] = new TH2F(hname,htitl,fNbins,fMinBin,fMaxBin,100,0,10);
256 fHmggPairSM[iSM]->SetXTitle("m_{#gamma #gamma} (MeV/c^{2})");
257 fHmggPairSM[iSM]->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
2dfb1428 258 fOutputContainer->Add(fHmggPairSM[iSM]);
9584c261 259
260
261 snprintf(hname, buffersize, "hopang_SM%d",iSM);
262 snprintf(htitl, buffersize, "Opening angle for super mod %d",iSM);
263 fHOpeningAngleSM[iSM] = new TH2F(hname,htitl,100,0.,50.,100,0,10);
264 fHOpeningAngleSM[iSM]->SetXTitle("#alpha_{#gamma #gamma} (deg)");
265 fHOpeningAngleSM[iSM]->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
266 fOutputContainer->Add(fHOpeningAngleSM[iSM]);
267
268 snprintf(hname,buffersize, "hopang_PairSM%d",iSM);
269 snprintf(htitl,buffersize, "Opening angle for SM pair: %s",pairname[iSM].Data());
270 fHOpeningAnglePairSM[iSM] = new TH2F(hname,htitl,100,0.,50.,100,0,10);
271 fHOpeningAnglePairSM[iSM]->SetXTitle("#alpha_{#gamma #gamma} (deg)");
272 fHOpeningAnglePairSM[iSM]->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
273 fOutputContainer->Add(fHOpeningAnglePairSM[iSM]);
274
275 snprintf(hname, buffersize, "hinang_SM%d",iSM);
276 snprintf(htitl, buffersize, "Incident angle for super mod %d",iSM);
277 fHIncidentAngleSM[iSM] = new TH2F(hname,htitl,100,0.,20.,100,0,10);
278 fHIncidentAngleSM[iSM]->SetXTitle("#alpha_{#gamma - SM center} (deg)");
279 fHIncidentAngleSM[iSM]->SetYTitle("p_{T #gamma} (GeV/c)");
280 fOutputContainer->Add(fHIncidentAngleSM[iSM]);
281
282 snprintf(hname,buffersize, "hinang_PairSM%d",iSM);
283 snprintf(htitl,buffersize, "Incident angle for SM pair: %s",pairname[iSM].Data());
284 fHIncidentAnglePairSM[iSM] = new TH2F(hname,htitl,100,0.,20.,100,0,10);
285 fHIncidentAnglePairSM[iSM]->SetXTitle("#alpha_{#gamma - SM center} (deg)");
286 fHIncidentAnglePairSM[iSM]->SetYTitle("p_{T #gamma} (GeV/c)");
287 fOutputContainer->Add(fHIncidentAnglePairSM[iSM]);
288
289 snprintf(hname, buffersize, "hasym_SM%d",iSM);
290 snprintf(htitl, buffersize, "asymmetry for super mod %d",iSM);
291 fHAsymmetrySM[iSM] = new TH2F(hname,htitl,100,0.,1.,100,0,10);
292 fHAsymmetrySM[iSM]->SetXTitle("a");
293 fHAsymmetrySM[iSM]->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
294 fOutputContainer->Add(fHAsymmetrySM[iSM]);
295
296 snprintf(hname,buffersize, "hasym_PairSM%d",iSM);
297 snprintf(htitl,buffersize, "Asymmetry for SM pair: %s",pairname[iSM].Data());
298 fHAsymmetryPairSM[iSM] = new TH2F(hname,htitl,100,0.,1.,100,0,10);
299 fHAsymmetryPairSM[iSM]->SetXTitle("a");
300 fHAsymmetryPairSM[iSM]->SetYTitle("p_{T #gamma #gamma} (GeV/c)");
301 fOutputContainer->Add(fHAsymmetryPairSM[iSM]);
302
303
304 Int_t colmax = 48;
305 Int_t rowmax = 24;
306
307 fhTowerDecayPhotonHit[iSM] = new TH2F (Form("hTowerDecPhotonHit_Mod%d",iSM),Form("Entries in grid of cells in Module %d",iSM),
308 colmax+2,-1.5,colmax+0.5, rowmax+2,-1.5,rowmax+0.5);
309 fhTowerDecayPhotonHit[iSM]->SetYTitle("row (phi direction)");
310 fhTowerDecayPhotonHit[iSM]->SetXTitle("column (eta direction)");
311 fOutputContainer->Add(fhTowerDecayPhotonHit[iSM]);
312
313 fhTowerDecayPhotonEnergy[iSM] = new TH2F (Form("hTowerDecPhotonEnergy_Mod%d",iSM),Form("Accumulated energy in grid of cells in Module %d",iSM),
314 colmax+2,-1.5,colmax+0.5, rowmax+2,-1.5,rowmax+0.5);
315 fhTowerDecayPhotonEnergy[iSM]->SetYTitle("row (phi direction)");
316 fhTowerDecayPhotonEnergy[iSM]->SetXTitle("column (eta direction)");
317 fOutputContainer->Add(fhTowerDecayPhotonEnergy[iSM]);
318
319 fhTowerDecayPhotonAsymmetry[iSM] = new TH2F (Form("hTowerDecPhotonAsymmetry_Mod%d",iSM),Form("Accumulated asymmetry in grid of cells in Module %d",iSM),
320 colmax+2,-1.5,colmax+0.5, rowmax+2,-1.5,rowmax+0.5);
321 fhTowerDecayPhotonAsymmetry[iSM]->SetYTitle("row (phi direction)");
322 fhTowerDecayPhotonAsymmetry[iSM]->SetXTitle("column (eta direction)");
323 fOutputContainer->Add(fhTowerDecayPhotonAsymmetry[iSM]);
324
2dfb1428 325 }
6eb2a715 326
327 fhNEvents = new TH1I("hNEvents", "Number of analyzed events" , 1 , 0 , 1 ) ;
328 fOutputContainer->Add(fhNEvents);
247abff4 329
330 fOutputContainer->SetOwner(kTRUE);
331
6eb2a715 332// fCalibData = new AliEMCALCalibData();
333
cf028690 334 PostData(1,fOutputContainer);
375cec9b 335
336}
337
338//__________________________________________________
339void AliAnalysisTaskEMCALPi0CalibSelection::UserExec(Option_t* /* option */)
340{
341 //Analysis per event.
375cec9b 342
19db8f8c 343 if(fRecoUtils->GetParticleType()!=AliEMCALRecoUtils::kPhoton){
344 printf("Wrong particle type for cluster position recalculation! = %d\n", fRecoUtils->GetParticleType());
345 abort();
346 }
247abff4 347
6eb2a715 348 fhNEvents->Fill(0); //Event analyzed
349
247abff4 350 //Get the input event
351 AliVEvent* event = 0;
352 if(fFilteredInput) event = AODEvent();
353 else event = InputEvent();
70ae4900 354
247abff4 355 if(!event) {
356 printf("Input event not available!\n");
357 return;
375cec9b 358 }
5ef94e1b 359
247abff4 360 if(DebugLevel() > 1)
361 printf("AliAnalysisTaskEMCALPi0CalibSelection <<< %s: Event %d >>>\n",event->GetName(), (Int_t)Entry());
362
363
364 //Get the primary vertex
365 Double_t v[3];
366 event->GetPrimaryVertex()->GetXYZ(v) ;
375cec9b 367
375cec9b 368 if(DebugLevel() > 1) printf("AliAnalysisTaskEMCALPi0CalibSelection Vertex: (%.3f,%.3f,%.3f)\n",v[0],v[1],v[2]);
369
247abff4 370 //Int_t runNum = aod->GetRunNumber();
371 //if(DebugLevel() > 1) printf("Run number: %d\n",runNum);
375cec9b 372
373 //Get the matrix with geometry information
3b13c34c 374 if(fhNEvents->GetEntries()==1){
375 if(fLoadMatrices){
376 printf("AliAnalysisTaskEMCALPi0CalibSelection::UserExec() - Load user defined geometry matrices\n");
377 for(Int_t mod=0; mod < (fEMCALGeo->GetEMCGeometry())->GetNumberOfSuperModules(); mod++){
378 if(fMatrix[mod]){
379 if(DebugLevel() > 1)
380 fMatrix[mod]->Print();
381 fEMCALGeo->SetMisalMatrix(fMatrix[mod],mod) ;
382 }
383 }//SM loop
384 }//Load matrices
385 else if(!gGeoManager){
386 printf("AliAnalysisTaskEMCALPi0CalibSelection::UserExec() - Get geo matrices from data\n");
387 //Still not implemented in AOD, just a workaround to be able to work at least with ESDs
388 if(!strcmp(event->GetName(),"AliAODEvent")) {
f2ccb5b8 389 if(DebugLevel() > 1)
390 printf("AliAnalysisTaskEMCALPi0CalibSelection Use ideal geometry, values geometry matrix not kept in AODs.\n");
3b13c34c 391 }//AOD
392 else {
393 if(DebugLevel() > 1) printf("AliAnalysisTaskEMCALPi0CalibSelection Load Misaligned matrices. \n");
f2ccb5b8 394 AliESDEvent* esd = dynamic_cast<AliESDEvent*>(event) ;
395 if(!esd) {
396 printf("AliAnalysisTaskEMCALPi0CalibSelection::UserExec() - This event does not contain ESDs?");
3b13c34c 397 return;
f2ccb5b8 398 }
399 for(Int_t mod=0; mod < (fEMCALGeo->GetEMCGeometry())->GetNumberOfSuperModules(); mod++){
3b13c34c 400 //if(DebugLevel() > 1)
401 esd->GetEMCALMatrix(mod)->Print();
f2ccb5b8 402 if(esd->GetEMCALMatrix(mod)) fEMCALGeo->SetMisalMatrix(esd->GetEMCALMatrix(mod),mod) ;
403 }
3b13c34c 404 }//ESD
405 }//Load matrices from Data
f2ccb5b8 406 }//first event
375cec9b 407
408 if(DebugLevel() > 1) printf("AliAnalysisTaskEMCALPi0CalibSelection Will use fLogWeight %.3f .\n",fLogWeight);
19db8f8c 409 Int_t absId1 = -1;
6eb2a715 410 Int_t iSupMod1 = -1;
411 Int_t iphi1 = -1;
412 Int_t ieta1 = -1;
19db8f8c 413 Int_t absId2 = -1;
6eb2a715 414 Int_t iSupMod2 = -1;
415 Int_t iphi2 = -1;
416 Int_t ieta2 = -1;
3b13c34c 417 Bool_t shared = kFALSE;
418
375cec9b 419 TLorentzVector p1;
420 TLorentzVector p2;
421 TLorentzVector p12;
422
247abff4 423 //Get the list of clusters
375cec9b 424 TRefArray * caloClustersArr = new TRefArray();
247abff4 425 if(!fOldAOD) event->GetEMCALClusters(caloClustersArr);
426 else GetEMCALClusters(event,caloClustersArr);
375cec9b 427 const Int_t kNumberOfEMCALClusters = caloClustersArr->GetEntries() ;
cf028690 428 if(DebugLevel() > 1) printf("AliAnalysisTaskEMCALPi0CalibSelection - N CaloClusters: %d \n", kNumberOfEMCALClusters);
375cec9b 429
247abff4 430 // Get EMCAL cells
431 AliVCaloCells *emCells = event->GetEMCALCells();
432
375cec9b 433 // loop over EMCAL clusters
247abff4 434 //----------------------------------------------------------
435 // First recalibrate and recalculate energy and position
436 Float_t pos[]={0,0,0};
437 if(fCorrectClusters){
438 for(Int_t iClu=0; iClu<kNumberOfEMCALClusters-1; iClu++) {
247abff4 439 AliVCluster *c1 = (AliVCluster *) caloClustersArr->At(iClu);
440
441 if(fRecoUtils->ClusterContainsBadChannel(fEMCALGeo, c1->GetCellsAbsId(), c1->GetNCells())) continue;
442
443 if(DebugLevel() > 2)
444 {
445 printf("Std : i %d, E %f, dispersion %f, m02 %f, m20 %f\n",c1->GetID(),c1->E(),c1->GetDispersion(),c1->GetM02(),c1->GetM20());
446 c1->GetPosition(pos);
447 printf("Std : i %d, x %f, y %f, z %f\n",c1->GetID(), pos[0], pos[1], pos[2]);
448 }
449
450 //Correct cluster energy and position if requested, and not corrected previously, by default Off
5ef94e1b 451 if(fRecoUtils->IsRecalibrationOn()) {
452 fRecoUtils->RecalibrateClusterEnergy(fEMCALGeo, c1, emCells);
453 fRecoUtils->RecalculateClusterShowerShapeParameters(fEMCALGeo, emCells,c1);
454 fRecoUtils->RecalculateClusterPID(c1);
455 }
247abff4 456 if(DebugLevel() > 2)
457 printf("Energy: after recalibration %f; ",c1->E());
458
459 // Correct Non-Linearity
460 c1->SetE(fRecoUtils->CorrectClusterEnergyLinearity(c1));
5ef94e1b 461
247abff4 462 if(DebugLevel() > 2)
463 printf("after linearity correction %f\n",c1->E());
464 // Recalculate cluster position
465 fRecoUtils->RecalculateClusterPosition(fEMCALGeo, emCells,c1);
466 if(DebugLevel() > 2)
467 {
468 printf("Cor : i %d, E %f, dispersion %f, m02 %f, m20 %f\n",c1->GetID(),c1->E(),c1->GetDispersion(),c1->GetM02(),c1->GetM20());
469 c1->GetPosition(pos);
470 printf("Cor : i %d, x %f, y %f, z %f\n",c1->GetID(), pos[0], pos[1], pos[2]);
471 }
472 }
473 }
5ef94e1b 474
247abff4 475 //----------------------------------------------------------
476 //Now the invariant mass analysis with the corrected clusters
477 for(Int_t iClu=0; iClu<kNumberOfEMCALClusters-1; iClu++) {
375cec9b 478
247abff4 479 AliVCluster *c1 = (AliVCluster *) caloClustersArr->At(iClu);
480 if(fRecoUtils->ClusterContainsBadChannel(fEMCALGeo, c1->GetCellsAbsId(), c1->GetNCells())) continue;
6eb2a715 481
482 Float_t e1i = c1->E(); // cluster energy before correction
483 if(e1i < fEmin) continue;
484 else if(e1i > fEmax) continue;
485 else if (c1->GetNCells() < fMinNCells) continue;
486
487 if(DebugLevel() > 2)
70ae4900 488 {
247abff4 489 printf("IMA : i %d, E %f, dispersion %f, m02 %f, m20 %f\n",c1->GetID(),e1i,c1->GetDispersion(),c1->GetM02(),c1->GetM20());
70ae4900 490 c1->GetPosition(pos);
247abff4 491 printf("IMA : i %d, x %f, y %f, z %f\n",c1->GetID(), pos[0], pos[1], pos[2]);
70ae4900 492 }
6eb2a715 493
247abff4 494 //AliEMCALAodCluster newc1(*((AliAODCaloCluster*)c1));
495 //newc1.EvalAllFromRecoUtils(fEMCALGeo,fRecoUtils,emCells);
496 //printf("i %d, recal? %d\n",iClu,newc1.IsRecalibrated());
6eb2a715 497 //clu1.Recalibrate(fCalibData, emCells, fEMCALGeoName);
498 //clu1.EvalEnergy();
cf028690 499 //clu1.EvalAll(fLogWeight, fEMCALGeoName);
375cec9b 500
3b13c34c 501 fRecoUtils->GetMaxEnergyCell(fEMCALGeo, emCells,c1,absId1,iSupMod1,ieta1,iphi1,shared);
9584c261 502 c1->GetMomentum(p1,v);
247abff4 503 //newc1.GetMomentum(p1,v);
504
505 // Combine cluster with other clusters and get the invariant mass
506 for (Int_t jClu=iClu+1; jClu<kNumberOfEMCALClusters; jClu++) {
375cec9b 507 AliAODCaloCluster *c2 = (AliAODCaloCluster *) caloClustersArr->At(jClu);
247abff4 508 //if(c2->IsEqual(c1)) continue;
509 if(fRecoUtils->ClusterContainsBadChannel(fEMCALGeo, c2->GetCellsAbsId(), c2->GetNCells())) continue;
375cec9b 510
511 Float_t e2i = c2->E();
6eb2a715 512 if(e2i < fEmin) continue;
513 else if (e2i > fEmax) continue;
514 else if (c2->GetNCells() < fMinNCells) continue;
515
247abff4 516 //AliEMCALAodCluster newc2(*((AliAODCaloCluster*)c2));
517 //newc2.EvalAllFromRecoUtils(fEMCALGeo,fRecoUtils,emCells);
518 //printf("\t j %d, recal? %d\n",jClu,newc2.IsRecalibrated());
6eb2a715 519 //clu2.Recalibrate(fCalibData, emCells,fEMCALGeoName);
520 //clu2.EvalEnergy();
cf028690 521 //clu2.EvalAll(fLogWeight,fEMCALGeoName);
19db8f8c 522
3b13c34c 523 fRecoUtils->GetMaxEnergyCell(fEMCALGeo, emCells,c2,absId2,iSupMod2,ieta2,iphi2,shared);
6eb2a715 524 c2->GetMomentum(p2,v);
247abff4 525 //newc2.GetMomentum(p2,v);
375cec9b 526 p12 = p1+p2;
527 Float_t invmass = p12.M()*1000;
9584c261 528 //printf("*** mass %f\n",invmass);
529 Float_t asym = TMath::Abs(p1.E()-p2.E())/(p1.E()+p2.E());
530 //printf("asymmetry %f\n",asym);
9fdaff9a 531
532 if(asym > fAsyCut) continue;
533
6eb2a715 534 if(invmass < fMaxBin && invmass > fMinBin){
70ae4900 535
cfce8d44 536 //Check if cluster is in fidutial region, not too close to borders
247abff4 537 Bool_t in1 = fRecoUtils->CheckCellFiducialRegion(fEMCALGeo, c1, emCells);
538 Bool_t in2 = fRecoUtils->CheckCellFiducialRegion(fEMCALGeo, c2, emCells);
539
cfce8d44 540 if(in1 && in2){
541
542 fHmgg->Fill(invmass,p12.Pt());
247abff4 543
cfce8d44 544 if(iSupMod1==iSupMod2) fHmggSM[iSupMod1]->Fill(invmass,p12.Pt());
545 else fHmggDifferentSM ->Fill(invmass,p12.Pt());
247abff4 546
cfce8d44 547 if((iSupMod1==0 && iSupMod2==2) || (iSupMod1==2 && iSupMod2==0)) fHmggPairSM[0]->Fill(invmass,p12.Pt());
548 if((iSupMod1==1 && iSupMod2==3) || (iSupMod1==3 && iSupMod2==1)) fHmggPairSM[1]->Fill(invmass,p12.Pt());
549 if((iSupMod1==0 && iSupMod2==1) || (iSupMod1==1 && iSupMod2==0)) fHmggPairSM[2]->Fill(invmass,p12.Pt());
550 if((iSupMod1==2 && iSupMod2==3) || (iSupMod1==3 && iSupMod2==2)) fHmggPairSM[3]->Fill(invmass,p12.Pt());
9584c261 551
552 if(invmass > 100. && invmass < 160.){//restrict to clusters really close to pi0 peak
553
554 //Opening angle of 2 photons
555 Float_t opangle = p1.Angle(p2.Vect())*TMath::RadToDeg();
556 //printf("*******>>>>>>>> In PEAK pt %f, angle %f \n",p12.Pt(),opangle);
247abff4 557
f2ccb5b8 558 //Incident angle of each photon
559 Float_t inangle1 =0., inangle2=0.;
560 if(gGeoManager){
561 Float_t posSM1cen[3]={0.,0.,0.};
562 Float_t depth = fRecoUtils->GetDepth(p1.Energy(),fRecoUtils->GetParticleType(),iSupMod1);
563 fEMCALGeo->RecalculateTowerPosition(11.5, 23.5, iSupMod1, depth, fRecoUtils->GetMisalTransShiftArray(),fRecoUtils->GetMisalRotShiftArray(),posSM1cen);
564 Float_t posSM2cen[3]={0.,0.,0.};
565 depth = fRecoUtils->GetDepth(p2.Energy(),fRecoUtils->GetParticleType(),iSupMod2);
566 fEMCALGeo->RecalculateTowerPosition(11.5, 23.5, iSupMod2, depth, fRecoUtils->GetMisalTransShiftArray(),fRecoUtils->GetMisalRotShiftArray(),posSM2cen);
567 //printf("SM1 %d pos (%2.3f,%2.3f,%2.3f) \n",iSupMod1,posSM1cen[0],posSM1cen[1],posSM1cen[2]);
568 //printf("SM2 %d pos (%2.3f,%2.3f,%2.3f) \n",iSupMod2,posSM2cen[0],posSM2cen[1],posSM2cen[2]);
569
570 TVector3 vecSM1cen(posSM1cen[0]-v[0],posSM1cen[1]-v[1],posSM1cen[2]-v[2]);
571 TVector3 vecSM2cen(posSM2cen[0]-v[0],posSM2cen[1]-v[1],posSM2cen[2]-v[2]);
572 inangle1 = p1.Angle(vecSM1cen)*TMath::RadToDeg();
573 inangle2 = p2.Angle(vecSM2cen)*TMath::RadToDeg();
574 //printf("Incident angle: cluster 1 %2.3f; cluster 2 %2.3f\n",inangle1,inangle2);
575 }
9584c261 576 fHOpeningAngle ->Fill(opangle,p12.Pt());
577 fHIncidentAngle->Fill(inangle1,p1.Pt());
578 fHIncidentAngle->Fill(inangle2,p2.Pt());
579 fHAsymmetry ->Fill(asym,p12.Pt());
247abff4 580
9584c261 581 if(iSupMod1==iSupMod2) {
582 fHOpeningAngleSM[iSupMod1] ->Fill(opangle,p12.Pt());
583 fHIncidentAngleSM[iSupMod1]->Fill(inangle1,p1.Pt());
584 fHIncidentAngleSM[iSupMod1]->Fill(inangle2,p2.Pt());
585 fHAsymmetrySM[iSupMod1] ->Fill(asym,p12.Pt());
586 }
587 else{
588 fHOpeningAngleDifferentSM ->Fill(opangle,p12.Pt());
589 fHIncidentAngleDifferentSM ->Fill(inangle1,p1.Pt());
590 fHIncidentAngleDifferentSM ->Fill(inangle2,p2.Pt());
591 fHAsymmetryDifferentSM ->Fill(asym,p12.Pt());
592 }
593
594 if((iSupMod1==0 && iSupMod2==2) || (iSupMod1==2 && iSupMod2==0)) {
595 fHOpeningAnglePairSM[0] ->Fill(opangle,p12.Pt());
596 fHIncidentAnglePairSM[0]->Fill(inangle1,p1.Pt());
597 fHIncidentAnglePairSM[0]->Fill(inangle2,p2.Pt());
598 fHAsymmetryPairSM[0] ->Fill(asym,p12.Pt());
247abff4 599
9584c261 600 }
601 if((iSupMod1==1 && iSupMod2==3) || (iSupMod1==3 && iSupMod2==1)) {
602 fHOpeningAnglePairSM[1] ->Fill(opangle,p12.Pt());
603 fHIncidentAnglePairSM[1]->Fill(inangle1,p1.Pt());
604 fHIncidentAnglePairSM[1]->Fill(inangle2,p2.Pt());
605 fHAsymmetryPairSM[1] ->Fill(asym,p12.Pt());
247abff4 606
9584c261 607 }
608
609 if((iSupMod1==0 && iSupMod2==1) || (iSupMod1==1 && iSupMod2==0)) {
610 fHOpeningAnglePairSM[2] ->Fill(opangle,p12.Pt());
611 fHIncidentAnglePairSM[2]->Fill(inangle1,p1.Pt());
612 fHIncidentAnglePairSM[2]->Fill(inangle2,p2.Pt());
613 fHAsymmetryPairSM[2] ->Fill(asym,p12.Pt());
247abff4 614
615
9584c261 616 }
617 if((iSupMod1==2 && iSupMod2==3) || (iSupMod1==3 && iSupMod2==2)) {
618 fHOpeningAnglePairSM[3] ->Fill(opangle,p12.Pt());
619 fHIncidentAnglePairSM[3]->Fill(inangle1,p1.Pt());
620 fHIncidentAnglePairSM[3]->Fill(inangle2,p2.Pt());
621 fHAsymmetryPairSM[3] ->Fill(asym,p12.Pt());
622 }
247abff4 623
9584c261 624 }// pair in 100 < mass < 160
247abff4 625
9584c261 626 }//in acceptance cuts
2dfb1428 627
628 //In case of filling only channels with second cluster in same SM
629 if(fSameSM && iSupMod1!=iSupMod2) continue;
630
70ae4900 631 if (fGroupNCells == 0){
247abff4 632 fHmpi0[iSupMod1][ieta1][iphi1]->Fill(invmass);
633 fHmpi0[iSupMod2][ieta2][iphi2]->Fill(invmass);
9584c261 634
247abff4 635 if(invmass > 100. && invmass < 160.){//restrict to clusters really close to pi0 peak
636 fhTowerDecayPhotonHit [iSupMod1]->Fill(ieta1,iphi1);
637 fhTowerDecayPhotonEnergy [iSupMod1]->Fill(ieta1,iphi1,p1.E());
638 fhTowerDecayPhotonAsymmetry[iSupMod1]->Fill(ieta1,iphi1,asym);
639
640 fhTowerDecayPhotonHit [iSupMod2]->Fill(ieta2,iphi2);
641 fhTowerDecayPhotonEnergy [iSupMod2]->Fill(ieta2,iphi2,p2.E());
642 fhTowerDecayPhotonAsymmetry[iSupMod2]->Fill(ieta2,iphi2,asym);
643
644 }// pair in mass of pi0
70ae4900 645 }
646 else {
647 //printf("Regroup N %d, eta1 %d, phi1 %d, eta2 %d, phi2 %d \n",fGroupNCells, ieta1, iphi1, ieta2, iphi2);
648 for (Int_t i = -fGroupNCells; i < fGroupNCells+1; i++) {
649 for (Int_t j = -fGroupNCells; j < fGroupNCells+1; j++) {
650 //printf("\t i %d, j %d\n",i,j);
651 if((ieta1+i >= 0) && (iphi1+j >= 0) && (ieta1+i < 48) && (iphi1+j < 24)){
652 //printf("\t \t eta1+i %d, phi1+j %d\n", ieta1+i, iphi1+j);
653 fHmpi0[iSupMod1][ieta1+i][iphi1+j]->Fill(invmass);
654 }
655 if((ieta2+i >= 0) && (iphi2+j >= 0) && (ieta2+i < 48) && (iphi2+j < 24)){
656 //printf("\t \t eta2+i %d, phi2+j %d\n", ieta2+i, iphi2+j);
657 fHmpi0[iSupMod2][ieta2+i][iphi2+j]->Fill(invmass);
658 }
659 }// j loop
660 }//i loop
661 }//group cells
662
663 if(DebugLevel() > 1) printf("AliAnalysisTaskEMCALPi0CalibSelection Mass in (SM%d,%d,%d) and (SM%d,%d,%d): %.3f GeV E1_i=%f E1_ii=%f E2_i=%f E2_ii=%f\n",
247abff4 664 iSupMod1,iphi1,ieta1,iSupMod2,iphi2,ieta2,p12.M(),e1i,c1->E(),e2i,c2->E());
6eb2a715 665 }
666
375cec9b 667 }
668
669 } // end of loop over EMCAL clusters
670
671 delete caloClustersArr;
6eb2a715 672
375cec9b 673 PostData(1,fOutputContainer);
6eb2a715 674
375cec9b 675}
cfce8d44 676
5ef94e1b 677//_____________________________________________________
678void AliAnalysisTaskEMCALPi0CalibSelection::PrintInfo(){
679
680 //Print settings
681 printf("Cluster cuts: %2.2f < E < %2.2f GeV; min number of cells %d; Assymetry cut %1.2f\n", fEmin,fEmax, fMinNCells, fAsyCut) ;
682 printf("Group %d cells\n", fGroupNCells) ;
683 printf("Cluster maximal cell away from border at least %d cells\n", fRecoUtils->GetNumberOfCellsFromEMCALBorder()) ;
684 printf("Histograms: bins %d; energy range: %2.2f < E < %2.2f GeV\n",fNbins,fMinBin,fMaxBin) ;
685 printf("Switchs:\n \t Remove Bad Channels? %d; Use filtered input? %d; Correct Clusters? %d, \n \t Analyze Old AODs? %d, Mass per channel same SM clusters? %d\n",
686 fRecoUtils->IsBadChannelsRemovalSwitchedOn(),fFilteredInput,fCorrectClusters, fOldAOD, fSameSM) ;
3b13c34c 687 printf("EMCAL Geometry name: < %s >, Load Matrices %d\n",fEMCALGeoName.Data(), fLoadMatrices) ;
688 if(fLoadMatrices) {for(Int_t ism = 0; ism < 4; ism++) fMatrix[ism]->Print();}
5ef94e1b 689
690
691}
692
375cec9b 693//__________________________________________________
6eb2a715 694//void AliAnalysisTaskEMCALPi0CalibSelection::SetCalibCorrections(AliEMCALCalibData* const cdata)
695//{
696// //Set new correction factors (~1) to calibration coefficients, delete previous.
697//
698// if(fCalibData) delete fCalibData;
699// fCalibData = cdata;
700//
701//}