AliPhysics  ec707b8 (ec707b8)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
AliAnalysisTaskEMCALClusterize.cxx
Go to the documentation of this file.
1  /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  * *
4  * Author: The ALICE Off-line Project. *
5  * Contributors are mentioned in the code where appropriate. *
6  * *
7  * Permission to use, copy, modify and distribute this software and its *
8  * documentation strictly for non-commercial purposes is hereby granted *
9  * without fee, provided that the above copyright notice appears in all *
10  * copies and that both the copyright notice and this permission notice *
11  * appear in the supporting documentation. The authors make no claims *
12  * about the suitability of this software for any purpose. It is *
13  * provided "as is" without express or implied warranty. *
14  **************************************************************************/
15 
16 // --- Root ---
17 #include <TString.h>
18 #include <TRefArray.h>
19 #include <TClonesArray.h>
20 #include <TTree.h>
21 #include <TGeoManager.h>
22 #include <TROOT.h>
23 #include <TInterpreter.h>
24 #include <TFile.h>
25 
26 // --- AliRoot Analysis Steering
27 #include "AliAnalysisTask.h"
28 #include "AliAnalysisManager.h"
29 #include "AliESDEvent.h"
30 #include "AliGeomManager.h"
31 #include "AliVCaloCells.h"
32 #include "AliAODCaloCluster.h"
33 #include "AliCDBManager.h"
34 #include "AliCDBStorage.h"
35 #include "AliCDBEntry.h"
36 #include "AliLog.h"
37 #include "AliVEventHandler.h"
38 #include "AliAODInputHandler.h"
39 #include "AliOADBContainer.h"
40 #include "AliAODMCParticle.h"
41 #include "AliCentrality.h"
42 #include "AliMultSelection.h"
43 
44 // --- EMCAL
45 #include "AliEMCALAfterBurnerUF.h"
46 #include "AliEMCALGeometry.h"
47 #include "AliEMCALClusterizerNxN.h"
48 #include "AliEMCALClusterizerv1.h"
49 #include "AliEMCALClusterizerv2.h"
50 #include "AliEMCALRecPoint.h"
51 #include "AliEMCALDigit.h"
52 
54 
58 
59 //______________________________________________________________________________
60 // Constructor.
61 //______________________________________________________________________________
63 : AliAnalysisTaskSE(name)
64 , fEvent(0)
65 , fGeom(0), fGeomName("")
66 , fGeomMatrixSet(kFALSE), fLoadGeomMatrices(kFALSE)
67 , fOCDBpath(""), fAccessOCDB(kFALSE)
68 , fDigitsArr(0), fClusterArr(0), fCaloClusterArr(0)
69 , fRecParam(0), fClusterizer(0)
70 , fUnfolder(0), fJustUnfold(kFALSE)
71 , fOutputAODBranch(0), fOutputAODBranchName(""), fOutputAODBranchSet(0)
72 , fFillAODFile(kFALSE), fFillAODHeader(0)
73 , fFillAODCaloCells(0), fRun(-1)
74 , fRecoUtils(0), fConfigName("")
75 , fOrgClusterCellId()
76 , fCellLabels(), fCellSecondLabels(), fCellTime()
77 , fCellMatchdEta(), fCellMatchdPhi()
78 , fRecalibrateWithClusterTime(0)
79 , fMaxEvent(0), fDoTrackMatching(kFALSE)
80 , fSelectCell(kFALSE), fSelectCellMinE(0), fSelectCellMinFrac(0)
81 , fRejectBelowThreshold(kFALSE)
82 , fRemoveLEDEvents(kTRUE),fRemoveExoticEvents(kFALSE)
83 , fImportGeometryFromFile(kTRUE), fImportGeometryFilePath("")
84 , fOADBSet(kFALSE), fAccessOADB(kTRUE), fOADBFilePath("")
85 , fConstantTimeShift(0)
86 , fCentralityClass(""), fUseAliCentrality(0), fSelectEMCALEvent(0)
87 , fEMCALEnergyCut(0.), fEMCALNcellsCut (0)
88 , fSetCellMCLabelFromCluster(0)
89 , fSetCellMCLabelFromEdepFrac(0)
90 , fRemapMCLabelForAODs(0)
91 , fInputFromFilter(0)
92 {
93  for(Int_t i = 0; i < 22; i++) fGeomMatrix[i] = 0;
94 
95  ResetArrays();
96 
97  fCentralityBin[0] = fCentralityBin[1]=-1;
98 }
99 
100 //______________________________________________________________
102 //______________________________________________________________
104 : AliAnalysisTaskSE("DefaultAnalysis_AliAnalysisTaskEMCALClusterize")
105 , fEvent(0)
106 , fGeom(0), fGeomName("")
107 , fGeomMatrixSet(kFALSE), fLoadGeomMatrices(kFALSE)
108 , fOCDBpath(""), fAccessOCDB(kFALSE)
109 , fDigitsArr(0), fClusterArr(0), fCaloClusterArr(0)
110 , fRecParam(0), fClusterizer(0)
111 , fUnfolder(0), fJustUnfold(kFALSE)
112 , fOutputAODBranch(0), fOutputAODBranchName(""), fOutputAODBranchSet(0)
113 , fFillAODFile(kFALSE), fFillAODHeader(0)
114 , fFillAODCaloCells(0), fRun(-1)
115 , fRecoUtils(0), fConfigName("")
116 , fOrgClusterCellId()
117 , fCellLabels(), fCellSecondLabels(), fCellTime()
118 , fCellMatchdEta(), fCellMatchdPhi()
119 , fRecalibrateWithClusterTime(0)
120 , fMaxEvent(0), fDoTrackMatching(kFALSE)
121 , fSelectCell(kFALSE), fSelectCellMinE(0), fSelectCellMinFrac(0)
122 , fRejectBelowThreshold(kFALSE)
123 , fRemoveLEDEvents(kTRUE), fRemoveExoticEvents(kFALSE)
124 , fImportGeometryFromFile(kTRUE), fImportGeometryFilePath("")
125 , fOADBSet(kFALSE), fAccessOADB(kTRUE), fOADBFilePath("")
126 , fConstantTimeShift(0)
127 , fCentralityClass(""), fUseAliCentrality(0), fSelectEMCALEvent(0)
128 , fEMCALEnergyCut(0.), fEMCALNcellsCut (0)
129 , fSetCellMCLabelFromCluster(0)
130 , fSetCellMCLabelFromEdepFrac(0)
131 , fRemapMCLabelForAODs(0)
132 , fInputFromFilter(0)
133 {
134  for(Int_t i = 0; i < 22; i++) fGeomMatrix[i] = 0;
135 
136  ResetArrays();
137 
138  fCentralityBin[0] = fCentralityBin[1]=-1;
139 }
140 
141 //_______________________________________________________________
143 //_______________________________________________________________
145 {
146  if (fDigitsArr)
147  {
148  fDigitsArr->Clear("C");
149  delete fDigitsArr;
150  }
151 
152  if (fClusterArr)
153  {
154  fClusterArr->Delete();
155  delete fClusterArr;
156  }
157 
158  if (fCaloClusterArr)
159  {
160  fCaloClusterArr->Delete();
161  delete fCaloClusterArr;
162  }
163 
164  if(fClusterizer) delete fClusterizer;
165  if(fUnfolder) delete fUnfolder;
166  if(fRecoUtils) delete fRecoUtils;
167 }
168 
169 //_______________________________________________________
173 //_______________________________________________________
175 {
176  if(!fSelectEMCALEvent) return kTRUE; // accept
177 
178  if(fEMCALEnergyCut <= 0) return kTRUE; // accept
179 
180  Int_t nCluster = fEvent -> GetNumberOfCaloClusters();
181  AliVCaloCells * caloCell = fEvent -> GetEMCALCells();
182  Int_t bc = fEvent -> GetBunchCrossNumber();
183 
184  for(Int_t icalo = 0; icalo < nCluster; icalo++)
185  {
186  AliVCluster *clus = (AliVCluster*) (fEvent->GetCaloCluster(icalo));
187 
188  if( ( clus->IsEMCAL() ) && ( clus->GetNCells() > fEMCALNcellsCut ) && ( clus->E() > fEMCALEnergyCut ) &&
189  fRecoUtils->IsGoodCluster(clus,fGeom,caloCell,bc))
190  {
191 
192  AliDebug(1, Form("Accept : E %2.2f > %2.2f, nCells %d > %d",
193  clus->E(), fEMCALEnergyCut, clus->GetNCells(), fEMCALNcellsCut));
194 
195  return kTRUE;
196  }
197 
198  }// loop
199 
200  AliDebug(1,"Reject");
201 
202  return kFALSE;
203 }
204 
205 //_______________________________________________
208 //_______________________________________________
210 {
211  //Set it only once
212  if(fOADBSet) return ;
213 
214  Int_t runnumber = InputEvent()->GetRunNumber() ;
215  TString pass = GetPass();
216 
217  AliInfo(Form("Get AODB parameters from EMCAL in %s for run %d, and <%s>",fOADBFilePath.Data(),runnumber,pass.Data()));
218 
219  Int_t nSM = fGeom->GetNumberOfSuperModules();
220 
221  // Bad map
222  if(fRecoUtils->IsBadChannelsRemovalSwitchedOn())
223  {
224  AliOADBContainer *contBC=new AliOADBContainer("");
225  contBC->InitFromFile(Form("%s/EMCALBadChannels.root",fOADBFilePath.Data()),"AliEMCALBadChannels");
226 
227  TObjArray *arrayBC=(TObjArray*)contBC->GetObject(runnumber);
228 
229  if(arrayBC)
230  {
231  fRecoUtils->SwitchOnDistToBadChannelRecalculation();
232  AliInfo("Remove EMCAL bad cells");
233 
234  for (Int_t i=0; i < nSM; ++i)
235  {
236  TH2I *hbm = fRecoUtils->GetEMCALChannelStatusMap(i);
237 
238  if (hbm)
239  delete hbm;
240 
241  hbm=(TH2I*)arrayBC->FindObject(Form("EMCALBadChannelMap_Mod%d",i));
242 
243  if (!hbm)
244  {
245  AliError(Form("Can not get EMCALBadChannelMap_Mod%d",i));
246  continue;
247  }
248 
249  hbm->SetDirectory(0);
250  fRecoUtils->SetEMCALChannelStatusMap(i,hbm);
251 
252  } // loop
253  } else AliInfo("Do NOT remove EMCAL bad channels"); // run array
254 
255  delete contBC;
256  } // Remove bad
257 
258  // Energy Recalibration
259  if(fRecoUtils->IsRecalibrationOn())
260  {
261  AliOADBContainer *contRF=new AliOADBContainer("");
262 
263  contRF->InitFromFile(Form("%s/EMCALRecalib.root",fOADBFilePath.Data()),"AliEMCALRecalib");
264 
265  TObjArray *recal=(TObjArray*)contRF->GetObject(runnumber);
266 
267  if(recal)
268  {
269  TObjArray *recalpass=(TObjArray*)recal->FindObject(pass);
270 
271  if(recalpass)
272  {
273  TObjArray *recalib=(TObjArray*)recalpass->FindObject("Recalib");
274 
275  if(recalib)
276  {
277  AliInfo("Recalibrate EMCAL");
278  for (Int_t i=0; i<nSM; ++i)
279  {
280  TH2F *h = fRecoUtils->GetEMCALChannelRecalibrationFactors(i);
281 
282  if (h)
283  delete h;
284 
285  h = (TH2F*)recalib->FindObject(Form("EMCALRecalFactors_SM%d",i));
286 
287  if (!h)
288  {
289  AliError(Form("Could not load EMCALRecalFactors_SM%d",i));
290  continue;
291  }
292 
293  h->SetDirectory(0);
294 
295  fRecoUtils->SetEMCALChannelRecalibrationFactors(i,h);
296  } // SM loop
297  } else AliInfo("Do NOT recalibrate EMCAL, no params object array"); // array ok
298  } else AliInfo("Do NOT recalibrate EMCAL, no params for pass"); // array pass ok
299  } else AliInfo("Do NOT recalibrate EMCAL, no params for run"); // run number array ok
300 
301  delete contRF;
302  } // Recalibration on
303 
304  // Energy Recalibration, apply on top of previous calibration factors
305  if(fRecoUtils->IsRunDepRecalibrationOn())
306  {
307  AliOADBContainer *contRFTD=new AliOADBContainer("");
308 
309  contRFTD->InitFromFile(Form("%s/EMCALTemperatureCorrCalib.root",fOADBFilePath.Data()),"AliEMCALRunDepTempCalibCorrections");
310 
311  TH1S *htd=(TH1S*)contRFTD->GetObject(runnumber);
312 
313  //If it did not exist for this run, get closes one
314  if (!htd)
315  {
316  AliWarning(Form("No TemperatureCorrCalib Objects for run: %d",runnumber));
317  // let's get the closest runnumber instead then..
318  Int_t lower = 0;
319  Int_t ic = 0;
320  Int_t maxEntry = contRFTD->GetNumberOfEntries();
321 
322  while ( (ic < maxEntry) && (contRFTD->UpperLimit(ic) < runnumber) ) {
323  lower = ic;
324  ic++;
325  }
326 
327  Int_t closest = lower;
328  if ( (ic<maxEntry) &&
329  (contRFTD->LowerLimit(ic)-runnumber) < (runnumber - contRFTD->UpperLimit(lower)) ) {
330  closest = ic;
331  }
332 
333  AliWarning(Form("TemperatureCorrCalib Objects found closest id %d from run: %d", closest, contRFTD->LowerLimit(closest)));
334  htd = (TH1S*) contRFTD->GetObjectByIndex(closest);
335  }
336 
337  if(htd)
338  {
339  AliInfo("Recalibrate (Temperature) EMCAL");
340 
341  for (Int_t ism=0; ism<nSM; ++ism)
342  {
343  for (Int_t icol=0; icol<48; ++icol)
344  {
345  for (Int_t irow=0; irow<24; ++irow)
346  {
347  Float_t factor = fRecoUtils->GetEMCALChannelRecalibrationFactor(ism,icol,irow);
348 
349  Int_t absID = fGeom->GetAbsCellIdFromCellIndexes(ism, irow, icol); // original calibration factor
350  factor *= htd->GetBinContent(absID) / 10000. ; // correction dependent on T
351  //printf("\t ism %d, icol %d, irow %d,absID %d, corrA %2.3f, corrB %2.3f, corrAB %2.3f\n",ism, icol, irow, absID,
352  // GetEMCALChannelRecalibrationFactor(ism,icol,irow) , htd->GetBinContent(absID) / 10000., factor);
353  fRecoUtils->SetEMCALChannelRecalibrationFactor(ism,icol,irow,factor);
354  } // columns
355  } // rows
356  } // SM loop
357  } else AliInfo("Do NOT recalibrate EMCAL with T variations, no params TH1");
358 
359  delete contRFTD;
360  } // Run by Run T calibration
361 
362  // Time Recalibration
363  if(fRecoUtils->IsTimeRecalibrationOn())
364  {
365  AliOADBContainer *contTRF=new AliOADBContainer("");
366 
367  contTRF->InitFromFile(Form("%s/EMCALTimeCalib.root",fOADBFilePath.Data()),"AliEMCALTimeCalib");
368 
369  TObjArray *trecal=(TObjArray*)contTRF->GetObject(runnumber);
370 
371  if(trecal)
372  {
373  TString passM = pass;
374  if(pass=="spc_calo") passM = "pass1";
375  TObjArray *trecalpass=(TObjArray*)trecal->FindObject(passM);
376 
377  if(trecalpass)
378  {
379  AliInfo("Time Recalibrate EMCAL");
380  for (Int_t ibc = 0; ibc < 4; ++ibc)
381  {
382  TH1F *h = fRecoUtils->GetEMCALChannelTimeRecalibrationFactors(ibc);
383 
384  if (h)
385  delete h;
386 
387  h = (TH1F*)trecalpass->FindObject(Form("hAllTimeAvBC%d",ibc));
388 
389  if (!h)
390  {
391  AliError(Form("Could not load hAllTimeAvBC%d",ibc));
392  continue;
393  }
394 
395  h->SetDirectory(0);
396 
397  fRecoUtils->SetEMCALChannelTimeRecalibrationFactors(ibc,h);
398  } // bunch crossing loop
399  } else AliInfo("Do NOT recalibrate time EMCAL, no params for pass"); // array pass ok
400  } else AliInfo("Do NOT recalibrate time EMCAL, no params for run"); // run number array ok
401 
402  delete contTRF;
403  } // Time recalibration on
404 
405  // Parameters already set once, so do not it again
406  fOADBSet = kTRUE;
407 }
408 
409 //_________________________________________________
412 //_________________________________________________
414 {
415  fEvent = InputEvent();
416  if (!fEvent)
417  {
418  Warning("AccessOCDB","Event not available!!!");
419  return kFALSE;
420  }
421 
422  if (fEvent->GetRunNumber()==fRun)
423  return kTRUE;
424  fRun = fEvent->GetRunNumber();
425 
426  AliDebug(1,"Begin");
427 
428  AliCDBManager *cdb = AliCDBManager::Instance();
429 
430 
431  if (fOCDBpath.Length())
432  {
433  cdb->SetDefaultStorage(fOCDBpath.Data());
434  AliInfo(Form("Default storage %s",fOCDBpath.Data()));
435  }
436 
437  cdb->SetRun(fEvent->GetRunNumber());
438 
439  //
440  // EMCAL from RAW OCDB
441  if (fOCDBpath.Contains("alien:"))
442  {
443  cdb->SetSpecificStorage("EMCAL/Calib/Data","raw://");
444  cdb->SetSpecificStorage("EMCAL/Calib/Time","raw://");
445  cdb->SetSpecificStorage("EMCAL/Calib/Pedestals","raw://");
446  }
447 
448  TString path = cdb->GetDefaultStorage()->GetBaseFolder();
449 
450  return kTRUE;
451 }
452 
453 //_____________________________________________________
458 //_____________________________________________________
460 {
461  fEvent = 0x0;
462 
463  AliAODInputHandler* aodIH = dynamic_cast<AliAODInputHandler*>((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
464  Int_t eventN = Entry();
465  if(aodIH) eventN = aodIH->GetReadEntry();
466 
467  if (eventN > fMaxEvent)
468  return ;
469 
470  //printf("Clusterizer --- Event %d-- \n",eventN);
471 
472  // Check if input event are embedded events
473  // If so, take output event
474  if (aodIH && aodIH->GetMergeEvents())
475  {
476  fEvent = AODEvent();
477 
478  if(!aodIH->GetMergeEMCALCells())
479  AliFatal("Events merged but not EMCAL cells, check analysis settings!");
480 
481  AliDebug(1,"Use embedded events");
482 
483  AliDebug(1,Form("\t InputEvent N Clusters %d, N Cells %d",
484  InputEvent()->GetNumberOfCaloClusters(),InputEvent()->GetEMCALCells()->GetNumberOfCells()));
485 
486  AliDebug(1,Form("\t MergedEvent N Clusters %d, N Cells %d",
487  aodIH->GetEventToMerge()->GetNumberOfCaloClusters(), aodIH->GetEventToMerge()->GetEMCALCells()->GetNumberOfCells()));
488 
489 // if(DebugLevel() > 1)
490 // {
491 // for (Int_t icl=0; icl < aodIH->GetEventToMerge()->GetNumberOfCaloClusters(); icl++)
492 // {
493 // AliAODCaloCluster *sigCluster = aodIH->GetEventToMerge()->GetCaloCluster(icl);
494 // if(sigCluster->IsEMCAL()) AliInfo(Form("\t \t Signal cluster: i %d, E %f",icl,sigCluster->E()));
495 // }
496 // }
497 
498  AliDebug(1,Form("\t OutputEvent N Clusters %d, N Cells %d",
499  AODEvent()->GetNumberOfCaloClusters(), AODEvent()->GetEMCALCells()->GetNumberOfCells()));
500  }
501  else if(fInputFromFilter)
502  {
503  //printf("Get Input From Filtered AOD\n");
504  fEvent = AODEvent();
505  }
506  else
507  {
508  fEvent = InputEvent();
511  }
512 
513  if (!fEvent)
514  {
515  AliError("Event not available");
516  return ;
517  }
518 
519  //Process events if there is a high energy cluster
520  if(!AcceptEventEMCAL()) { fEvent = 0x0 ; return ; }
521 
522  //-------------------------------------------------------------------------------------
523  // Reject events if LED was firing, use only for LHC11a data
524  // Reject event if triggered by exotic cell and remove exotic cells if not triggered
525  //-------------------------------------------------------------------------------------
526 
527  if( IsLEDEvent( InputEvent()->GetRunNumber() ) ) { fEvent = 0x0 ; return ; }
528 
529  if( IsExoticEvent() ) { fEvent = 0x0 ; return ; }
530 
531  //-------------------------------------------------------------------------------------
532  // Set the cluster array in the event (output or input)
533  //-------------------------------------------------------------------------------------
534 
535  if ( fFillAODFile )
536  {
537  //Magic line to write events to AOD filem put after event rejection
538  AliAnalysisManager::GetAnalysisManager()->GetOutputEventHandler()->SetFillAOD(kTRUE);
539  }
540  else if( !fOutputAODBranchSet )
541  {
542  // Create array and put it in the input event, if output AOD not selected, only once
543  InputEvent()->AddObject(fOutputAODBranch);
544  fOutputAODBranchSet = kTRUE;
545  AliInfo(Form("Add AOD branch <%s> to input event",fOutputAODBranchName.Data()));
546  }
547 }
548 
549 //____________________________________________________
554 //____________________________________________________
556 {
557  Int_t nClusters = fEvent->GetNumberOfCaloClusters();
558  Int_t nClustersOrg = 0;
559 
560  AliAODInputHandler* aodIH = dynamic_cast<AliAODInputHandler*>((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
561  if(aodIH && aodIH->GetEventToMerge()) //Embedding
562  nClusters = aodIH->GetEventToMerge()->GetNumberOfCaloClusters(); //Get clusters directly from embedded signal
563 
564  ResetArrays();
565 
566  // Loop on original clusters, get MC labels, cluster time (OLD AODs),
567  // or track matching residuals (if matching is not requested)
569  {
570  for (Int_t i = 0; i < nClusters; i++)
571  {
572  AliVCluster *clus = 0;
573  if(aodIH && aodIH->GetEventToMerge()) //Embedding
574  clus = aodIH->GetEventToMerge()->GetCaloCluster(i); //Get clusters directly from embedded signal
575  else
576  clus = fEvent->GetCaloCluster(i);
577 
578  if(!clus) return;
579 
580  if(clus->IsEMCAL())
581  {
582  Int_t label = clus->GetLabel();
583  Int_t label2 = -1 ;
584  if (clus->GetNLabels() >=2 ) label2 = clus->GetLabelAt(1) ;
585 
586  //printf("Org cluster %d) ID = %d, E %2.2f, Time %3.0f, N Cells %d, N MC labels %d, main MC label %d, all MC labels:\n",
587  // i, clus->GetID(), clus->E(), clus->GetTOF()*1e9, clus->GetNCells(), clus->GetNLabels(), label);
588  //
589  //for(Int_t imc = 0; imc < clus->GetNLabels(); imc++)
590  // printf("%d) Label %d, E dep frac %0.2f; ",
591  // imc, clus->GetLabelAt(imc),clus->GetClusterMCEdepFraction(imc));
592  //if(clus->GetNLabels() > 0) printf("\n");
593 
594  UShort_t * index = clus->GetCellsAbsId() ;
595  for(Int_t icell=0; icell < clus->GetNCells(); icell++ )
596  {
597  fOrgClusterCellId[index[icell]] = i;
598  fCellTime[index[icell]] = clus->GetTOF();
599  fCellMatchdEta[index[icell]] = clus->GetTrackDz();
600  fCellMatchdPhi[index[icell]] = clus->GetTrackDx();
601 
603  {
604  fCellLabels[index[icell]] = label;
605  fCellSecondLabels[index[icell]] = label2;
606  }
607 
608  Float_t eDepFrac[4];
609  clus->GetCellMCEdepFractionArray(icell,eDepFrac);
610  }
611 
612  nClustersOrg++;
613  }
614  }
615  }
616  // Transform CaloCells into Digits
617 
618  Int_t idigit = 0;
619  Int_t id = -1;
620  Float_t amp = -1;
621  Double_t time = -1;
622 
623  AliVCaloCells * cells = fEvent->GetEMCALCells();
624 
625  Int_t bc = InputEvent()->GetBunchCrossNumber();
626 
627  for (Int_t icell = 0; icell < cells->GetNumberOfCells(); icell++)
628  {
629  // Get cell values, recalibrate and not include bad channels found in analysis, nor cells with too low energy, nor exotic cell
630  id = cells->GetCellNumber(icell);
631  Bool_t accept = fRecoUtils->AcceptCalibrateCell(id,bc,amp,time,cells);
632  time-=fConstantTimeShift*1e-9; // only in case of simulations done before 2015
633 
634  // Do not include cells with too low energy, nor exotic cell
635  if( amp < fRecParam->GetMinECut() ||
636  time > fRecParam->GetTimeMax() ||
637  time < fRecParam->GetTimeMin() ) accept = kFALSE;
638 
639  // In case of old AOD analysis cell time is -1 s, approximate replacing by time of the cluster the digit belongs.
641  {
642  time = fCellTime[id];
643  //printf("cell %d time org %f - ",id, time*1.e9);
644  fRecoUtils->RecalibrateCellTime(id,bc,time);
645  //printf("recal %f\n",time*1.e9);
646  }
647 
648  //Exotic?
649  if (accept && fRecoUtils->IsExoticCell(id,cells,bc))
650  accept = kFALSE;
651 
652  if( !accept )
653  {
654  AliDebug(2,Form("Remove channel absId %d, index %d of %d, amp %f, time %f",
655  id,icell, cells->GetNumberOfCells(), amp, time*1.e9));
656  continue;
657  }
658 
659  Int_t mcLabel = cells->GetMCLabel(icell);
660 
661  // Old way to recover/set the cell MC label
663  {
664  if ( fSetCellMCLabelFromCluster == 1 ) mcLabel = fCellLabels[id]; // Older aliroot MC productions
665 
666  else if( fSetCellMCLabelFromCluster == 0 &&
668 
669  else mcLabel = -1; // found later
670  }
671 
672  // Create the digit, put a fake primary deposited energy to trick the clusterizer
673  // when checking the most likely primary
674 
675  Float_t efrac = cells->GetEFraction(icell);
676 
677  //When checking the MC of digits, give weight to cells with embedded signal
678  if (mcLabel > 0 && efrac < 1.e-6) efrac = 1;
679 
680  AliEMCALDigit* digit = new((*fDigitsArr)[idigit]) AliEMCALDigit( mcLabel, mcLabel, id, amp, time,AliEMCALDigit::kHG,idigit, 0, 0, amp*efrac);
681 
682  // Last parameter should be MC deposited energy, since it is not available in aliroot before year 2016, add just the cell amplitude so that
683  // we give more weight to the MC label of the cell with highest energy in the cluster
684 
685  // New way, valid only for MC productions with aliroot > v5-07-21
687  {
688  // Map the digit to cell index for later to calculate the cell MC energy deposition map
689  fCellLabels[id] = idigit;
690  //printf("\t absId %d, idigit %d\n",id,idigit);
691 
692  if(fOrgClusterCellId[id] >= 0) // index can be negative if noisy cell that did not form cluster
693  {
694  AliVCluster *clus = 0;
695  Int_t iclus = fOrgClusterCellId[id];
696 
697  if(iclus < 0)
698  {
699  AliInfo("Negative original cluster index, skip \n");
700  continue;
701  }
702 
703  if(aodIH && aodIH->GetEventToMerge()) //Embedding
704  clus = aodIH->GetEventToMerge()->GetCaloCluster(iclus); //Get clusters directly from embedded signal
705  else
706  clus = fEvent->GetCaloCluster(iclus);
707 
708  for(Int_t icluscell=0; icluscell < clus->GetNCells(); icluscell++ )
709  {
710  if(id != clus->GetCellAbsId(icluscell)) continue ;
711 
712  // Get the energy deposition fraction.
713  Float_t eDepFrac[4];
714  clus->GetCellMCEdepFractionArray(icluscell,eDepFrac);
715 
716  // Select the MC label contributing, only if enough energy deposition
717  TArrayI labeArr(0);
718  TArrayF eDepArr(0);
719  Int_t nLabels = 0;
720  for(Int_t imc = 0; imc < 4; imc++)
721  {
722  if(eDepFrac[imc] > 0 && clus->GetNLabels() > imc)
723  {
724  nLabels++;
725 
726  labeArr.Set(nLabels);
727  labeArr.AddAt(clus->GetLabelAt(imc), nLabels-1);
728 
729  eDepArr.Set(nLabels);
730  eDepArr.AddAt(eDepFrac[imc]*amp , nLabels-1);
731  // use as deposited energy a fraction of the simulated energy (smeared and with noise)
732  }
733  }
734 
735  if(nLabels > 0)
736  {
737  digit->SetListOfParents(nLabels,labeArr.GetArray(),eDepArr.GetArray());
738  }
739  }
740  }
741  } // cell MC label, new
742 
743  idigit++;
744  }
745 
746  fDigitsArr->Sort();
747 
748  //-------------------------------------------------------------------------------------
749  // Do the clusterization
750  //-------------------------------------------------------------------------------------
751 
752  fClusterizer->Digits2Clusters("");
753 
754  //-------------------------------------------------------------------------------------
755  // Transform the recpoints into AliVClusters
756  //-------------------------------------------------------------------------------------
757 
759 
760  if(!fCaloClusterArr)
761  {
762  AliWarning(Form("No array with CaloClusters, input RecPoints entries %d",fClusterArr->GetEntriesFast()));
763  return;
764  }
765 
766  AliDebug(1,Form("N clusters: before recluster %d, after recluster %d, recpoints %d",
767  nClustersOrg, fCaloClusterArr->GetEntriesFast(),fClusterArr->GetEntriesFast()));
768 
769 // if(fCaloClusterArr->GetEntriesFast() != fClusterArr->GetEntriesFast())
770 // {
771 // AliInfo("\t Some RecRoints not transformed into CaloClusters (clusterizer %d, unfold %d): Input entries %d - Output entries %d - %d (not fast)\n",
772 // fRecParam->GetClusterizerFlag(),fRecParam->GetUnfold(),
773 // fClusterArr->GetEntriesFast(), fCaloClusterArr->GetEntriesFast(), fCaloClusterArr->GetEntries());
774 // }
775 }
776 
777 //_____________________________________________________
779 //_____________________________________________________
781 {
782  AliVCaloCells *cells = fEvent->GetEMCALCells();
783  Double_t cellAmplitude = 0;
784  Double_t cellTime = 0;
785  Short_t cellNumber = 0;
786  Int_t cellMCLabel = 0;
787  Double_t cellEFrac = 0;
788  Int_t nClustersOrg = 0;
789 
790  // Fill the array with the EMCAL clusters, copy them
791  for (Int_t i = 0; i < fEvent->GetNumberOfCaloClusters(); i++)
792  {
793  AliVCluster *clus = fEvent->GetCaloCluster(i);
794  if(clus->IsEMCAL())
795  {
796  //recalibrate/remove bad channels/etc if requested
797  if(fRecoUtils->ClusterContainsBadChannel(fGeom,clus->GetCellsAbsId(), clus->GetNCells()))
798  {
799  continue;
800  }
801 
802  if(fRecoUtils->IsRecalibrationOn())
803  {
804  //Calibrate cluster
805  fRecoUtils->RecalibrateClusterEnergy(fGeom, clus, cells);
806 
807  //CalibrateCells
808  for (Int_t icell = 0; icell < cells->GetNumberOfCells(); icell++)
809  {
810  if (cells->GetCell(icell, cellNumber, cellAmplitude, cellTime, cellMCLabel, cellEFrac) != kTRUE)
811  break;
812 
813  Int_t imod = -1, iphi =-1, ieta=-1,iTower = -1, iIphi = -1, iIeta = -1;
814  fGeom->GetCellIndex(cellNumber,imod,iTower,iIphi,iIeta);
815  fGeom->GetCellPhiEtaIndexInSModule(imod,iTower,iIphi, iIeta,iphi,ieta);
816 
817  //Do not include bad channels found in analysis?
818  if( fRecoUtils->IsBadChannelsRemovalSwitchedOn() &&
819  fRecoUtils->GetEMCALChannelStatus(imod, ieta, iphi))
820  continue;
821 
822  cells->SetCell(icell, cellNumber, cellAmplitude*fRecoUtils->GetEMCALChannelRecalibrationFactor(imod,ieta,iphi),cellTime);
823 
824  }// cells loop
825  }// recalibrate
826 
827  //Cast to ESD or AOD, needed to create the cluster array
828  AliESDCaloCluster * esdCluster = dynamic_cast<AliESDCaloCluster*> (clus);
829  AliAODCaloCluster * aodCluster = dynamic_cast<AliAODCaloCluster*> (clus);
830 
831  if (esdCluster)
832  {
833  fCaloClusterArr->Add( new AliESDCaloCluster(*esdCluster) );
834  }//ESD
835  else if(aodCluster)
836  {
837  fCaloClusterArr->Add( new AliAODCaloCluster(*aodCluster) );
838  }//AOD
839  else
840  AliWarning("Wrong CaloCluster type?");
841 
842  nClustersOrg++;
843  }
844  }
845 
846  //Do the unfolding
847  fUnfolder->UnfoldClusters(fCaloClusterArr, cells);
848 
849  //CLEAN-UP
850  fUnfolder->Clear();
851 }
852 
853 //_____________________________________________________
855 //_____________________________________________________
857 {
858  AliVCaloCells &eventEMcells = *(fEvent->GetEMCALCells());
859  Int_t nEMcell = eventEMcells.GetNumberOfCells() ;
860 
861  AliAODCaloCells &aodEMcells = *(AODEvent()->GetEMCALCells());
862  aodEMcells.CreateContainer(nEMcell);
863  aodEMcells.SetType(AliVCaloCells::kEMCALCell);
864  Double_t calibFactor = 1.;
865  for (Int_t iCell = 0; iCell < nEMcell; iCell++)
866  {
867  Int_t imod = -1, iphi =-1, ieta=-1,iTower = -1, iIphi = -1, iIeta = -1;
868  fGeom->GetCellIndex(eventEMcells.GetCellNumber(iCell),imod,iTower,iIphi,iIeta);
869  fGeom->GetCellPhiEtaIndexInSModule(imod,iTower,iIphi, iIeta,iphi,ieta);
870 
871  if(fRecoUtils->IsRecalibrationOn())
872  {
873  calibFactor = fRecoUtils->GetEMCALChannelRecalibrationFactor(imod,ieta,iphi);
874  }
875 
876  if(!fRecoUtils->GetEMCALChannelStatus(imod, ieta, iphi))
877  { //Channel is not declared as bad
878  aodEMcells.SetCell(iCell,eventEMcells.GetCellNumber(iCell),eventEMcells.GetAmplitude(iCell)*calibFactor,
879  eventEMcells.GetTime(iCell),eventEMcells.GetMCLabel(iCell),eventEMcells.GetEFraction(iCell));
880  }
881  else
882  {
883  aodEMcells.SetCell(iCell,eventEMcells.GetCellNumber(iCell),0,-1,-1,0);
884  }
885  }
886 
887  aodEMcells.Sort();
888 }
889 
890 //__________________________________________________
892 //__________________________________________________
894 {
895  AliESDEvent* esdevent = dynamic_cast<AliESDEvent*> (fEvent);
896  AliAODEvent* aodevent = dynamic_cast<AliAODEvent*> (fEvent);
897 
898  Double_t pos[3] ;
899  Double_t covVtx[6];
900  for (Int_t i = 0; i < 6; i++) covVtx[i] = 0.;
901 
902  AliAODHeader* header = dynamic_cast<AliAODHeader*>(AODEvent()->GetHeader());
903  if(!header) AliFatal("Not a standard AOD");
904  header->SetRunNumber(fEvent->GetRunNumber());
905 
906  if(esdevent)
907  {
908  TTree* tree = fInputHandler->GetTree();
909  if (tree)
910  {
911  TFile* file = tree->GetCurrentFile();
912  if (file) header->SetESDFileName(file->GetName());
913  }
914  }
915  else if (aodevent) {
916  AliAODHeader * aodheader = dynamic_cast<AliAODHeader*>(aodevent->GetHeader());
917  if(!aodheader) AliFatal("Not a standard AOD");
918  header->SetESDFileName(aodheader->GetESDFileName());
919  }
920 
921  header->SetBunchCrossNumber(fEvent->GetBunchCrossNumber());
922  header->SetOrbitNumber(fEvent->GetOrbitNumber());
923  header->SetPeriodNumber(fEvent->GetPeriodNumber());
924  header->SetEventType(fEvent->GetEventType());
925 
926  // Centrality
928  {
929  if(fEvent->GetCentrality())
930  header->SetCentrality(new AliCentrality(*(fEvent->GetCentrality())));
931  else
932  header->SetCentrality(0);
933  }
934 
935  // Trigger
936  header->SetOfflineTrigger(fInputHandler->IsEventSelected()); // propagate the decision of the physics selection
937 
938  header->SetFiredTriggerClasses(fEvent->GetFiredTriggerClasses());
939 
940  header->SetTriggerMask(fEvent->GetTriggerMask());
941  header->SetTriggerCluster(fEvent->GetTriggerCluster());
942 
943  if (esdevent)
944  {
945  header->SetL0TriggerInputs(esdevent->GetHeader()->GetL0TriggerInputs());
946  header->SetL1TriggerInputs(esdevent->GetHeader()->GetL1TriggerInputs());
947  header->SetL2TriggerInputs(esdevent->GetHeader()->GetL2TriggerInputs());
948  }
949  else if (aodevent)
950  {
951  header->SetL0TriggerInputs(aodevent->GetHeader()->GetL0TriggerInputs());
952  header->SetL1TriggerInputs(aodevent->GetHeader()->GetL1TriggerInputs());
953  header->SetL2TriggerInputs(aodevent->GetHeader()->GetL2TriggerInputs());
954  }
955 
956  header->SetMagneticField(fEvent->GetMagneticField());
957  //header->SetMuonMagFieldScale(esdevent->GetCurrentDip()/6000.);
958 
959  header->SetZDCN1Energy(fEvent->GetZDCN1Energy());
960  header->SetZDCP1Energy(fEvent->GetZDCP1Energy());
961  header->SetZDCN2Energy(fEvent->GetZDCN2Energy());
962  header->SetZDCP2Energy(fEvent->GetZDCP2Energy());
963  header->SetZDCEMEnergy(fEvent->GetZDCEMEnergy(0),fEvent->GetZDCEMEnergy(1));
964 
965  Float_t diamxy[2]={(Float_t)fEvent->GetDiamondX(),(Float_t)fEvent->GetDiamondY()};
966  Float_t diamcov[3];
967  fEvent->GetDiamondCovXY(diamcov);
968  header->SetDiamond(diamxy,diamcov);
969  if (esdevent) header->SetDiamondZ(esdevent->GetDiamondZ(),esdevent->GetSigma2DiamondZ());
970  else if (aodevent) header->SetDiamondZ(aodevent->GetDiamondZ(),aodevent->GetSigma2DiamondZ());
971 
972  //
973  Int_t nVertices = 1 ;/* = prim. vtx*/;
974  Int_t nCaloClus = fEvent->GetNumberOfCaloClusters();
975 
976  AODEvent()->ResetStd(0, nVertices, 0, 0, 0, nCaloClus, 0, 0);
977 
978  // Access to the AOD container of vertices
979  TClonesArray &vertices = *(AODEvent()->GetVertices());
980  Int_t jVertices=0;
981 
982  // Add primary vertex. The primary tracks will be defined
983  // after the loops on the composite objects (V0, cascades, kinks)
984  fEvent->GetPrimaryVertex()->GetXYZ(pos);
985  Float_t chi = 0;
986  if (esdevent)
987  {
988  esdevent->GetPrimaryVertex()->GetCovMatrix(covVtx);
989  chi = esdevent->GetPrimaryVertex()->GetChi2toNDF();
990  }
991  else if (aodevent)
992  {
993  aodevent->GetPrimaryVertex()->GetCovMatrix(covVtx);
994  chi = aodevent->GetPrimaryVertex()->GetChi2perNDF();//Different from ESD?
995  }
996 
997  AliAODVertex * primary = new(vertices[jVertices++])
998  AliAODVertex(pos, covVtx, chi, NULL, -1, AliAODVertex::kPrimary);
999  primary->SetName(fEvent->GetPrimaryVertex()->GetName());
1000  primary->SetTitle(fEvent->GetPrimaryVertex()->GetTitle());
1001 }
1002 
1003 //___________________________________________________________
1007 //___________________________________________________________
1009 {
1010  // First recalculate track-matching for the new clusters
1011  if(fDoTrackMatching)
1012  {
1013  fRecoUtils->FindMatches(fEvent,fCaloClusterArr,fGeom);
1014  }
1015 
1016  // Put the new clusters in the AOD list
1017 
1018  Int_t kNumberOfCaloClusters = fCaloClusterArr->GetEntriesFast();
1019 
1020  for(Int_t i = 0; i < kNumberOfCaloClusters; i++)
1021  {
1022  AliAODCaloCluster *newCluster = (AliAODCaloCluster *) fCaloClusterArr->At(i);
1023 
1024  newCluster->SetID(i);
1025 
1026  // Correct cluster energy non linearity
1027  newCluster->SetE(fRecoUtils->CorrectClusterEnergyLinearity(newCluster));
1028 
1029  //Add matched track
1030  if(fDoTrackMatching)
1031  {
1032  Int_t trackIndex = fRecoUtils->GetMatchedTrackIndex(i);
1033  if(trackIndex >= 0)
1034  {
1035  newCluster->AddTrackMatched(fEvent->GetTrack(trackIndex));
1036  AliDebug(2,Form("Matched Track index %d to new cluster %d",trackIndex,i));
1037  }
1038 
1039  Float_t dR = 999., dZ = 999.;
1040  fRecoUtils->GetMatchedResiduals(newCluster->GetID(),dZ,dR);
1041  newCluster->SetTrackDistance(dR,dZ);
1042  }
1043  else
1044  {// Assign previously assigned matched track in reco, very very rough
1045  Int_t absId0 = newCluster->GetCellsAbsId()[0]; // Assign match of first cell in cluster
1046  newCluster->SetTrackDistance(fCellMatchdPhi[absId0],fCellMatchdEta[absId0]);
1047  }
1048 
1049  //printf("New cluster E %f, Time %e, Id = ", newCluster->E(), newCluster->GetTOF() );
1050  //for(Int_t icell=0; icell < newCluster->GetNCells(); icell++ ) printf(" %d,", newCluster->GetCellsAbsId() [icell] );
1051  //printf("\n");
1052  //
1053  //printf("New cluster %d) ID = %d, E %2.2f, Time %3.0f, N Cells %d, N MC labels %d, main MC label %d, all MC labels:\n",
1054  // i, newCluster->GetID(), newCluster->E(), newCluster->GetTOF()*1e9, newCluster->GetNCells(), newCluster->GetNLabels(), newCluster->GetLabel());
1055  //
1056  //for(Int_t imc = 0; imc < newCluster->GetNLabels(); imc++)
1057  // printf("%d) Label %d, E dep frac %0.2f; ",
1058  // imc,newCluster->GetLabelAt(imc),newCluster->GetClusterMCEdepFraction(imc));
1059  //if(newCluster->GetNLabels() > 0) printf("\n");
1060 
1061  // Calculate distance to bad channel for new cluster. Make sure you give the list of bad channels.
1062  fRecoUtils->RecalculateClusterDistanceToBadChannel(fGeom, fEvent->GetEMCALCells(), newCluster);
1063 
1064  new((*fOutputAODBranch)[i]) AliAODCaloCluster(*newCluster);
1065 
1066  AliDebug(2,Form("New cluster %d of %d, energy %f, mc label %d",
1067  newCluster->GetID(), kNumberOfCaloClusters, newCluster->E(), newCluster->GetLabel()));
1068 
1069  } // cluster loop
1070 
1071  fOutputAODBranch->Expand(kNumberOfCaloClusters); // resize TObjArray to 'remove' slots
1072 }
1073 
1074 
1075 //________________________________________________________________
1077 //________________________________________________________________
1079 {
1080  if(fUseAliCentrality)
1081  {
1082  if(GetCentrality()) return GetCentrality()->GetCentralityPercentile(fCentralityClass) ;
1083  else return -1. ;
1084  }
1085  else
1086  {
1087  if(GetMultSelCen()) return GetMultSelCen()->GetMultiplicityPercentile(fCentralityClass,kTRUE) ;
1088  else return -1. ;
1089  }
1090 
1091  return -1.;
1092 }
1093 
1094 //_______________________________________________
1096 //_______________________________________________
1098 {
1099  if (!AliAnalysisManager::GetAnalysisManager()->GetTree())
1100  {
1101  AliError("AliAnalysisTaskEMCALClusterize::GetPass() - Pointer to tree = 0, returning null");
1102  return TString("");
1103  }
1104 
1105  if (!AliAnalysisManager::GetAnalysisManager()->GetTree()->GetCurrentFile())
1106  {
1107  AliError("AliAnalysisTaskEMCALClusterize::GetPass() - Null pointer input file, returning null");
1108  return TString("");
1109  }
1110 
1111  TString pass(AliAnalysisManager::GetAnalysisManager()->GetTree()->GetCurrentFile()->GetName());
1112  if (pass.Contains("ass1")) return TString("pass1");
1113  else if (pass.Contains("ass2")) return TString("pass2");
1114  else if (pass.Contains("ass3")) return TString("pass3");
1115  else if (pass.Contains("ass4")) return TString("pass4");
1116  else if (pass.Contains("ass5")) return TString("pass5");
1117  else if (pass.Contains("LHC11c") && pass.Contains("spc_calo") ) return TString("spc_calo");
1118  else if (pass.Contains("calo") || pass.Contains("high_lumi"))
1119  {
1120  AliInfo("Path contains <calo> or <high-lumi>, set as <pass1>");
1121  return TString("pass1");
1122  }
1123 
1124  // No condition fullfilled, give a default value
1125  AliInfo("Pass number string not found");
1126 
1127  return TString("");
1128 }
1129 
1130 //_________________________________________
1133 //_________________________________________
1135 {
1136  if(fDebug >=0) (AliAnalysisManager::GetAnalysisManager())->AddClassDebug(this->ClassName(),fDebug);
1137 
1138  fOADBSet = kFALSE;
1139  if(fOADBFilePath == "") fOADBFilePath = "$ALICE_PHYSICS/OADB/EMCAL" ;
1140 
1141  fBranchNames = "ESD:AliESDHeader.,EMCALCells.";
1142 
1143  if(!fRecParam) fRecParam = new AliEMCALRecParam;
1144  if(!fRecoUtils) fRecoUtils = new AliEMCALRecoUtils();
1145 
1146  if(fMaxEvent <= 0) fMaxEvent = 1000000000;
1147  if(fSelectCellMinE <= 0) fSelectCellMinE = 0.005;
1148  if(fSelectCellMinFrac <= 0) fSelectCellMinFrac = 0.001;
1149  fRejectBelowThreshold = kFALSE;
1150 
1151  // Centrality
1152  if(fCentralityClass == "") fCentralityClass = "V0M";
1153 
1154  if (fOCDBpath == "") fOCDBpath = "raw://" ;
1155  if (fOutputAODBranchName == "") fOutputAODBranchName = "newEMCALClusters" ;
1156 
1157  if(gROOT->LoadMacro(fConfigName) >=0)
1158  {
1159  AliInfo(Form("Configure analysis with %s",fConfigName.Data()));
1160  AliAnalysisTaskEMCALClusterize *clus = (AliAnalysisTaskEMCALClusterize*)gInterpreter->ProcessLine("ConfigEMCALClusterize()");
1161  fGeomName = clus->fGeomName;
1163  fOCDBpath = clus->fOCDBpath;
1164  fAccessOCDB = clus->fAccessOCDB;
1165  fRecParam = clus->fRecParam;
1166  fJustUnfold = clus->fJustUnfold;
1167  fFillAODFile = clus->fFillAODFile;
1168  fRecoUtils = clus->fRecoUtils;
1169  fConfigName = clus->fConfigName;
1170  fMaxEvent = clus->fMaxEvent;
1173  for(Int_t i = 0; i < 22; i++) fGeomMatrix[i] = clus->fGeomMatrix[i] ;
1175  fCentralityBin[0] = clus->fCentralityBin[0];
1176  fCentralityBin[1] = clus->fCentralityBin[1];
1178  }
1179 }
1180 
1181 //_______________________________________________________
1184 //_______________________________________________________
1186 {
1187  if (fJustUnfold)
1188  {
1189  // init the unfolding afterburner
1190  delete fUnfolder;
1191  fUnfolder = new AliEMCALAfterBurnerUF(fRecParam->GetW0(),fRecParam->GetLocMaxCut(),fRecParam->GetMinECut());
1192  return;
1193  }
1194 
1195  //First init the clusterizer
1196  delete fClusterizer;
1197  if (fRecParam->GetClusterizerFlag() == AliEMCALRecParam::kClusterizerv1)
1198  fClusterizer = new AliEMCALClusterizerv1 (fGeom);
1199  else if(fRecParam->GetClusterizerFlag() == AliEMCALRecParam::kClusterizerv2)
1200  fClusterizer = new AliEMCALClusterizerv2(fGeom);
1201  else if(fRecParam->GetClusterizerFlag() == AliEMCALRecParam::kClusterizerNxN)
1202  {
1203  fClusterizer = new AliEMCALClusterizerNxN(fGeom);
1204  fClusterizer->SetNRowDiff(fRecParam->GetNRowDiff());
1205  fClusterizer->SetNColDiff(fRecParam->GetNColDiff());
1206  }
1207  else
1208  {
1209  AliFatal(Form("Clusterizer < %d > not available", fRecParam->GetClusterizerFlag()));
1210  }
1211 
1212  //Now set the parameters
1213  fClusterizer->SetECAClusteringThreshold( fRecParam->GetClusteringThreshold() );
1214  fClusterizer->SetECALogWeight ( fRecParam->GetW0() );
1215  fClusterizer->SetMinECut ( fRecParam->GetMinECut() );
1216  fClusterizer->SetUnfolding ( fRecParam->GetUnfold() );
1217  fClusterizer->SetECALocalMaxCut ( fRecParam->GetLocMaxCut() );
1218  fClusterizer->SetTimeCut ( fRecParam->GetTimeCut() );
1219  fClusterizer->SetTimeMin ( fRecParam->GetTimeMin() );
1220  fClusterizer->SetTimeMax ( fRecParam->GetTimeMax() );
1221  fClusterizer->SetTimeCalibration ( fRecParam->IsTimeCalibrationOn() );
1222  fClusterizer->SetInputCalibrated ( kTRUE );
1223  fClusterizer->SetJustClusters ( kTRUE );
1224 
1225  // Initialize the cluster rec points and digits arrays and get them.
1226  fClusterizer->SetOutput(0);
1227  fClusterArr = const_cast<TObjArray *>(fClusterizer->GetRecPoints());
1228  fDigitsArr = fClusterizer->GetDigits();
1229 
1230  //In case of unfolding after clusterization is requested, set the corresponding parameters
1231  if(fRecParam->GetUnfold())
1232  {
1233  Int_t i=0;
1234  for (i = 0; i < 8; i++)
1235  {
1236  fClusterizer->SetSSPars(i, fRecParam->GetSSPars(i));
1237  }//end of loop over parameters
1238 
1239  for (i = 0; i < 3; i++)
1240  {
1241  fClusterizer->SetPar5 (i, fRecParam->GetPar5(i));
1242  fClusterizer->SetPar6 (i, fRecParam->GetPar6(i));
1243  }//end of loop over parameters
1244  fClusterizer->SetRejectBelowThreshold(fRejectBelowThreshold);//here we set option of unfolding: split or reject energy
1245  fClusterizer->InitClusterUnfolding();
1246 
1247  }// to unfold
1248 }
1249 
1250 //_________________________________________________
1254 //_________________________________________________
1256 {
1257  if(fGeomMatrixSet) return;
1258 
1259  Int_t runnumber = InputEvent()->GetRunNumber() ;
1260  if (!fGeom)
1261  {
1262  if(fGeomName=="")
1263  {
1264  fGeom = AliEMCALGeometry::GetInstanceFromRunNumber(runnumber);
1265  AliInfo(Form("Get EMCAL geometry name <%s> for run %d",fGeom->GetName(),runnumber));
1266  }
1267  else
1268  {
1269  fGeom = AliEMCALGeometry::GetInstance(fGeomName);
1270  AliInfo(Form("Set EMCAL geometry name to <%s>",fGeomName.Data()));
1271  }
1272 
1273  // Init geometry, I do not like much to do it like this ...
1274  if(fImportGeometryFromFile && !gGeoManager)
1275  {
1276  if(fImportGeometryFilePath=="") // If not specified, set location depending on run number
1277  {
1278  // "$ALICE_ROOT/EVE/alice-data/default_geo.root"
1279  if (runnumber < 140000) fImportGeometryFilePath = "$ALICE_PHYSICS/OADB/EMCAL/geometry_2010.root";
1280  else if (runnumber < 171000) fImportGeometryFilePath = "$ALICE_PHYSICS/OADB/EMCAL/geometry_2011.root";
1281  else if (runnumber < 198000) fImportGeometryFilePath = "$ALICE_PHYSICS/OADB/EMCAL/geometry_2012.root"; // 2012-2013
1282  else fImportGeometryFilePath = "$ALICE_PHYSICS/OADB/EMCAL/geometry_2015.root"; // >=2015
1283  }
1284 
1285  AliInfo(Form("Import %s",fImportGeometryFilePath.Data()));
1286 
1287  TGeoManager::Import(fImportGeometryFilePath) ;
1288  }
1289 
1290  AliDebug(1,Form("Init for run=%d",runnumber));
1291  if (!gGeoManager) AliDebug(1,"Careful!, gGeoManager not loaded, load misalign matrices");
1292  } // geometry pointer did not exist before
1293 
1294  if(fLoadGeomMatrices)
1295  {
1296  AliInfo("Load user defined EMCAL geometry matrices");
1297 
1298  // OADB if available
1299  AliOADBContainer emcGeoMat("AliEMCALgeo");
1300  emcGeoMat.InitFromFile(Form("%s/EMCALlocal2master.root",fOADBFilePath.Data()),"AliEMCALgeo");
1301  TObjArray *matEMCAL=(TObjArray*)emcGeoMat.GetObject(runnumber,"EmcalMatrices");
1302 
1303  for(Int_t mod=0; mod < (fGeom->GetEMCGeometry())->GetNumberOfSuperModules(); mod++)
1304  {
1305 
1306  if (!fGeomMatrix[mod]) // Get it from OADB
1307  {
1308  AliDebug(2,Form("EMCAL matrices SM %d, %p",mod,((TGeoHMatrix*) matEMCAL->At(mod))));
1309  //((TGeoHMatrix*) matEMCAL->At(mod))->Print();
1310 
1311  fGeomMatrix[mod] = (TGeoHMatrix*) matEMCAL->At(mod) ;
1312  }
1313 
1314  if(fGeomMatrix[mod])
1315  {
1316  if(DebugLevel() > 1)
1317  fGeomMatrix[mod]->Print();
1318 
1319  fGeom->SetMisalMatrix(fGeomMatrix[mod],mod) ;
1320  }
1321  else if(gGeoManager)
1322  {
1323  AliWarning(Form("Set matrix for SM %d from gGeoManager",mod));
1324  fGeom->SetMisalMatrix(fGeom->GetMatrixForSuperModuleFromGeoManager(mod),mod) ;
1325  }
1326  else
1327  {
1328  AliError(Form("Alignment atrix for SM %d is not available",mod));
1329  }
1330 
1331  fGeomMatrixSet=kTRUE;
1332 
1333  }//SM loop
1334  }//Load matrices
1335  else if(!gGeoManager)
1336  {
1337  AliInfo("AliAnalysisTaksEMCALClusterize::InitGeometry() - Get geo matrices from data");
1338  //Still not implemented in AOD, just a workaround to be able to work at least with ESDs
1339  if(!strcmp(fEvent->GetName(),"AliAODEvent"))
1340  {
1341  AliWarning("Use ideal geometry, values geometry matrix not kept in AODs");
1342  }//AOD
1343  else
1344  {
1345  AliDebug(1,"Load Misaligned matrices");
1346 
1347  AliESDEvent* esd = dynamic_cast<AliESDEvent*>(fEvent) ;
1348 
1349  if(!esd)
1350  {
1351  AliError("This event does not contain ESDs?");
1352  if(fFillAODFile) AliAnalysisManager::GetAnalysisManager()->GetOutputEventHandler()->SetFillAOD(kFALSE);
1353  return;
1354  }
1355 
1356  for(Int_t mod=0; mod < (fGeom->GetEMCGeometry())->GetNumberOfSuperModules(); mod++)
1357  {
1358  if(DebugLevel() > 1)
1359  esd->GetEMCALMatrix(mod)->Print();
1360 
1361  if(esd->GetEMCALMatrix(mod)) fGeom->SetMisalMatrix(esd->GetEMCALMatrix(mod),mod) ;
1362 
1363  }
1364 
1365  fGeomMatrixSet=kTRUE;
1366 
1367  } // ESD
1368  } // Load matrices from Data
1369 }
1370 
1371 //____________________________________________________
1376 //____________________________________________________
1378 {
1379  if(!fRemoveExoticEvents) return kFALSE;
1380 
1381  // Loop on cells
1382 
1383  AliVCaloCells * cells = fEvent->GetEMCALCells();
1384  Float_t totCellE = 0;
1385  Int_t bc = InputEvent()->GetBunchCrossNumber();
1386 
1387  for(Int_t icell = 0; icell < cells->GetNumberOfCells(); icell++)
1388  {
1389  Float_t ecell = 0 ;
1390  Double_t tcell = 0 ;
1391 
1392  Int_t absID = cells->GetCellNumber(icell);
1393  Bool_t accept = fRecoUtils->AcceptCalibrateCell(absID,bc,ecell,tcell,cells);
1394  tcell-=fConstantTimeShift*1e-9;// Only for MC simulations done before 2015
1395 
1396  if(accept && !fRecoUtils->IsExoticCell(absID,cells,bc)) totCellE += ecell;
1397  }
1398 
1399  // TString triggerclasses = event->GetFiredTriggerClasses();
1400  // printf("AliAnalysisTaskEMCALClusterize - reject event %d with cluster - reject event with ncells in SM3 %d and SM4 %d\n",(Int_t)Entry(),ncellsSM3, ncellsSM4);
1401  // if(fFillAODFile) AliAnalysisManager::GetAnalysisManager()->GetOutputEventHandler()->SetFillAOD(kFALSE);;
1402  // return;
1403  //
1404 
1405  //printf("TotE cell %f\n",totCellE);
1406  if(totCellE < 1) return kTRUE;
1407 
1408  return kFALSE;
1409 }
1410 
1411 //________________________________________________________________
1413 //________________________________________________________________
1415 {
1416  if(!fRemoveLEDEvents) return kFALSE;
1417 
1418  //check events of LHC11a period
1419  if(run < 146858 || run > 146860) return kFALSE ;
1420 
1421  // Count number of cells with energy larger than 0.1 in SM3, cut on this number
1422  Int_t ncellsSM3 = 0;
1423  AliVCaloCells * cells = fEvent->GetEMCALCells();
1424  for(Int_t icell = 0; icell < cells->GetNumberOfCells(); icell++)
1425  {
1426  if(cells->GetAmplitude(icell) > 0.1 && cells->GetCellNumber(icell)/(24*48)==3) ncellsSM3++;
1427  }
1428 
1429  TString triggerclasses = fEvent->GetFiredTriggerClasses();
1430 
1431  Int_t ncellcut = 21;
1432  if(triggerclasses.Contains("EMC")) ncellcut = 35;
1433 
1434  if( ncellsSM3 >= ncellcut)
1435  {
1436  AliInfo(Form("Reject event %d with ncells in SM3 %d",(Int_t)Entry(),ncellsSM3));
1437  if(fFillAODFile) AliAnalysisManager::GetAnalysisManager()->GetOutputEventHandler()->SetFillAOD(kFALSE);;
1438  return kTRUE;
1439  }
1440 
1441  return kFALSE;
1442 }
1443 
1444 //_______________________________________________________
1448 //_______________________________________________________
1450 {
1451  Int_t j = 0;
1452  for(Int_t i = 0; i < fClusterArr->GetEntriesFast(); i++)
1453  {
1454  AliEMCALRecPoint *recPoint = (AliEMCALRecPoint*) fClusterArr->At(i);
1455 
1456  const Int_t ncells = recPoint->GetMultiplicity();
1457  Int_t ncellsTrue = 0;
1458 
1459  if(recPoint->GetEnergy() < fRecParam->GetClusteringThreshold()) continue;
1460 
1461  // cells and their amplitude fractions
1462  UShort_t absIds[ncells];
1463  Double32_t ratios[ncells];
1464 
1465  //For later check embedding
1466  AliAODInputHandler* aodIH = dynamic_cast<AliAODInputHandler*>((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
1467 
1468  Float_t clusterE = 0;
1469  for (Int_t c = 0; c < ncells; c++)
1470  {
1471  AliEMCALDigit *digit = (AliEMCALDigit*) fDigitsArr->At(recPoint->GetDigitsList()[c]);
1472 
1473  absIds[ncellsTrue] = digit->GetId();
1474  ratios[ncellsTrue] = recPoint->GetEnergiesList()[c]/digit->GetAmplitude();
1475 
1476  // In case of unfolding, remove digits with unfolded energy too low
1477  if(fSelectCell)
1478  {
1479  if (recPoint->GetEnergiesList()[c] < fSelectCellMinE || ratios[ncellsTrue] < fSelectCellMinFrac)
1480  {
1481 
1482  AliDebug(2,Form("Too small energy in cell of cluster: cluster cell %f, digit %f",
1483  recPoint->GetEnergiesList()[c],digit->GetAmplitude()));
1484  continue;
1485  } // if cuts
1486  }// Select cells
1487 
1488  //Recalculate cluster energy and number of cluster cells in case any of the cells was rejected
1489  clusterE +=recPoint->GetEnergiesList()[c];
1490 
1491  // In case of embedding, fill ratio with amount of signal,
1492  if (aodIH && aodIH->GetMergeEvents())
1493  {
1494  //AliVCaloCells* inEMCALCells = InputEvent()->GetEMCALCells();
1495  AliVCaloCells* meEMCALCells = aodIH->GetEventToMerge()->GetEMCALCells();
1496  AliVCaloCells* ouEMCALCells = AODEvent()->GetEMCALCells();
1497 
1498  Float_t sigAmplitude = meEMCALCells->GetCellAmplitude(absIds[ncellsTrue]);
1499  //Float_t bkgAmplitude = inEMCALCells->GetCellAmplitude(absIds[ncellsTrue]);
1500  Float_t sumAmplitude = ouEMCALCells->GetCellAmplitude(absIds[ncellsTrue]);
1501  //printf("\t AbsID %d, amplitude : bkg %f, sigAmplitude %f, summed %f - %f\n",absIds[ncellsTrue], bkgAmplitude, sigAmplitude, sumAmplitude, digit->GetAmplitude());
1502 
1503  if(sumAmplitude > 0) ratios[ncellsTrue] = sigAmplitude/sumAmplitude;
1504  //printf("\t \t ratio %f\n",ratios[ncellsTrue]);
1505 
1506  }//Embedding
1507 
1508  ncellsTrue++;
1509 
1510  }// cluster cell loop
1511 
1512  if (ncellsTrue < 1)
1513  {
1514  AliDebug(2,Form("Skipping cluster with no cells avobe threshold E = %f, ncells %d",
1515  recPoint->GetEnergy(), ncells));
1516  continue;
1517  }
1518 
1519  //if(ncellsTrue != ncells) printf("Old E %f, ncells %d; New E %f, ncells %d\n",recPoint->GetEnergy(),ncells,clusterE,ncellsTrue);
1520 
1521  if(clusterE < fRecParam->GetClusteringThreshold())
1522  {
1523  AliDebug(2,Form("Remove cluster with energy below seed threshold %f",clusterE));
1524  continue;
1525  }
1526 
1527  TVector3 gpos;
1528  Float_t g[3];
1529 
1530  // calculate new cluster position
1531 
1532  recPoint->EvalGlobalPosition(fRecParam->GetW0(), fDigitsArr);
1533  recPoint->GetGlobalPosition(gpos);
1534  gpos.GetXYZ(g);
1535 
1536  // create a new cluster
1537 
1538  (*fCaloClusterArr)[j] = new AliAODCaloCluster() ;
1539  AliAODCaloCluster *clus = dynamic_cast<AliAODCaloCluster *>( fCaloClusterArr->At(j) ) ;
1540  j++;
1541  clus->SetType(AliVCluster::kEMCALClusterv1);
1542  clus->SetE(clusterE);
1543  clus->SetPosition(g);
1544  clus->SetNCells(ncellsTrue);
1545  clus->SetCellsAbsId(absIds);
1546  clus->SetCellsAmplitudeFraction(ratios);
1547  clus->SetChi2(-1); //not yet implemented
1548  clus->SetTOF(recPoint->GetTime()) ; //time-of-flight
1549  clus->SetNExMax(recPoint->GetNExMax()); //number of local maxima
1550  clus->SetDistanceToBadChannel(recPoint->GetDistanceToBadTower());
1551 
1552  if(ncells == ncellsTrue)
1553  {
1554  Float_t elipAxis[2];
1555  recPoint->GetElipsAxis(elipAxis);
1556  clus->SetM02(elipAxis[0]*elipAxis[0]) ;
1557  clus->SetM20(elipAxis[1]*elipAxis[1]) ;
1558  clus->SetDispersion(recPoint->GetDispersion());
1559  }
1560  else if(fSelectCell)
1561  {
1562  // In case some cells rejected, in unfolding case, recalculate
1563  // shower shape parameters and position
1564  AliDebug(2,Form("Cells removed from cluster (ncells %d, ncellsTrue %d), recalculate Shower Shape",ncells,ncellsTrue));
1565 
1566  AliVCaloCells* cells = 0x0;
1567  if (aodIH && aodIH->GetMergeEvents()) cells = AODEvent() ->GetEMCALCells();
1568  else cells = InputEvent()->GetEMCALCells();
1569 
1570  fRecoUtils->RecalculateClusterShowerShapeParameters(fGeom,cells,clus);
1571  fRecoUtils->RecalculateClusterPID(clus);
1572  fRecoUtils->RecalculateClusterPosition(fGeom,cells,clus);
1573  }
1574 
1575  // MC
1576 
1579  else
1580  {
1581  //
1582  // Normal case, trust what the clusterizer has found
1583  //
1584  Int_t parentMult = 0;
1585  Int_t *parentList = recPoint->GetParents(parentMult);
1586  Float_t *parentListDE = recPoint->GetParentsDE(); // deposited energy
1587 
1588  clus->SetLabel(parentList, parentMult);
1589  clus->SetClusterMCEdepFractionFromEdepArray(parentListDE);
1590 
1591  //
1592  // Set the cell energy deposition fraction map:
1593  //
1594  if( parentMult > 0 && fSetCellMCLabelFromEdepFrac )
1595  {
1596  UInt_t * mcEdepFracPerCell = new UInt_t[ncellsTrue];
1597 
1598  // Get the digit that originated this cell cluster
1599  AliVCaloCells* cells = 0x0;
1600  if (aodIH && aodIH->GetMergeEvents()) cells = AODEvent() ->GetEMCALCells();
1601  else cells = InputEvent()->GetEMCALCells();
1602 
1603  for(Int_t icell = 0; icell < ncellsTrue ; icell++)
1604  {
1605  Int_t idigit = fCellLabels[absIds[icell]];
1606 
1607  const AliEMCALDigit * dig = (const AliEMCALDigit*)fDigitsArr->At(idigit);
1608 
1609  // Find the 4 MC labels that contributed to the cluster and their
1610  // deposited energy in the current digit
1611 
1612  mcEdepFracPerCell[icell] = 0; // init
1613 
1614  Int_t nparents = dig->GetNiparent();
1615  if ( nparents > 0 )
1616  {
1617  Int_t digLabel =-1 ;
1618  Float_t edep = 0 ;
1619  Float_t edepTot = 0 ;
1620  Float_t mcEDepFrac[4] = {0,0,0,0};
1621 
1622  // all parents in digit
1623  for ( Int_t jndex = 0 ; jndex < nparents ; jndex++ )
1624  {
1625  digLabel = dig->GetIparent (jndex+1);
1626  edep = dig->GetDEParent(jndex+1);
1627  edepTot += edep;
1628 
1629  if ( digLabel == parentList[0] ) mcEDepFrac[0] = edep;
1630  else if ( digLabel == parentList[1] ) mcEDepFrac[1] = edep;
1631  else if ( digLabel == parentList[2] ) mcEDepFrac[2] = edep;
1632  else if ( digLabel == parentList[3] ) mcEDepFrac[3] = edep;
1633  } // all prarents in digit
1634 
1635  // Divide energy deposit by total deposited energy
1636  // Do this only when deposited energy is significant, use 10 MeV although 50 MeV should be expected
1637  if(edepTot > 0.01)
1638  {
1639  mcEdepFracPerCell[icell] = clus->PackMCEdepFraction(mcEDepFrac);
1640  }
1641  } // at least one parent label in digit
1642  } // cell in cluster loop
1643 
1644  clus->SetCellsMCEdepFractionMap(mcEdepFracPerCell);
1645 
1646  delete [] mcEdepFracPerCell;
1647 
1648  } // at least one parent in cluster, do the cell primary packing
1649  }
1650  } // recPoints loop
1651 }
1652 
1653 //_____________________________________________________________________
1656 //_____________________________________________________________________
1658 {
1659  if(label < 0) return ;
1660 
1661  AliAODEvent * evt = dynamic_cast<AliAODEvent*> (fEvent) ;
1662  if(!evt) return ;
1663 
1664  TClonesArray * arr = dynamic_cast<TClonesArray*>(evt->FindListObject("mcparticles")) ;
1665  if(!arr) return ;
1666 
1667  if(label < arr->GetEntriesFast())
1668  {
1669  AliAODMCParticle * particle = dynamic_cast<AliAODMCParticle *>(arr->At(label));
1670  if(!particle) return ;
1671 
1672  if(label == particle->Label()) return ; // label already OK
1673  //else printf("AliAnalysisTaskEMCALClusterize::RemapMCLabelForAODs() - Label %d - AOD stack %d \n",label, particle->Label());
1674  }
1675  //else printf("AliAnalysisTaskEMCALClusterize::RemapMCLabelForAODs() - Label %d > AOD labels %d \n",label, arr->GetEntriesFast());
1676 
1677  // loop on the particles list and check if there is one with the same label
1678  for(Int_t ind = 0; ind < arr->GetEntriesFast(); ind++ )
1679  {
1680  AliAODMCParticle * particle = dynamic_cast<AliAODMCParticle *>(arr->At(ind));
1681  if(!particle) continue ;
1682 
1683  if(label == particle->Label())
1684  {
1685  label = ind;
1686  //printf("AliAnalysisTaskEMCALClusterize::RemapMCLabelForAODs() - New Label Index %d \n",label);
1687  return;
1688  }
1689  }
1690 
1691  label = -1;
1692 
1693  //printf("AliAnalysisTaskEMCALClusterize::RemapMCLabelForAODs() - Label not found set to -1 \n");
1694 }
1695 
1696 //________________________________________________
1698 //________________________________________________
1700 {
1701  for(Int_t j = 0; j < fgkNEMCalCells; j++)
1702  {
1703  fOrgClusterCellId[j] = -1;
1704  fCellLabels[j] = -1;
1705  fCellSecondLabels[j] = -1;
1706  fCellTime[j] = 0.;
1707  fCellMatchdEta[j] = -999;
1708  fCellMatchdPhi[j] = -999;
1709  }
1710 }
1711 
1712 //_____________________________________________________________________________________________________
1716 //_____________________________________________________________________________________________________
1718  AliAODCaloCluster * clus)
1719 {
1720  Int_t parentMult = 0;
1721  Int_t *parentList = recPoint->GetParents(parentMult);
1722  clus->SetLabel(parentList, parentMult);
1723 
1724  //Write the second major contributor to each MC cluster.
1725  Int_t iNewLabel ;
1726  for ( Int_t iLoopCell = 0 ; iLoopCell < clus->GetNCells() ; iLoopCell++ )
1727  {
1728 
1729  Int_t idCell = clus->GetCellAbsId(iLoopCell) ;
1730  if(idCell>=0)
1731  {
1732  iNewLabel = 1 ; //iNewLabel makes sure we don't write twice the same label.
1733  for ( UInt_t iLoopLabels = 0 ; iLoopLabels < clus->GetNLabels() ; iLoopLabels++ )
1734  {
1735  if ( fCellSecondLabels[idCell] == -1 ) iNewLabel = 0; // -1 is never a good second label.
1736  if ( fCellSecondLabels[idCell] == clus->GetLabelAt(iLoopLabels) ) iNewLabel = 0;
1737  }
1738  if (iNewLabel == 1)
1739  {
1740  Int_t * newLabelArray = new Int_t[clus->GetNLabels()+1] ;
1741  for ( UInt_t iLoopNewLabels = 0 ; iLoopNewLabels < clus->GetNLabels() ; iLoopNewLabels++ )
1742  {
1743  newLabelArray[iLoopNewLabels] = clus->GetLabelAt(iLoopNewLabels) ;
1744  }
1745 
1746  newLabelArray[clus->GetNLabels()] = fCellSecondLabels[idCell] ;
1747  clus->SetLabel(newLabelArray,clus->GetNLabels()+1) ;
1748  delete [] newLabelArray;
1749  }
1750  } // positive cell number
1751  }
1752 }
1753 
1754 //___________________________________________________________________________________________________
1758 //___________________________________________________________________________________________________
1760 {
1761  TArrayI clArray(300) ; //Weird if more than a few clusters are in the origin ...
1762  clArray.Reset();
1763  Int_t nClu = 0;
1764  Int_t nLabTotOrg = 0;
1765  Float_t emax = -1;
1766  Int_t idMax = -1;
1767 
1768  AliVEvent * event = fEvent;
1769 
1770  // In case of embedding the MC signal is in the added event
1771  AliAODInputHandler* aodIH = dynamic_cast<AliAODInputHandler*>((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
1772  if(aodIH && aodIH->GetEventToMerge()) //Embedding
1773  event = aodIH->GetEventToMerge(); //Get clusters directly from embedded signal
1774 
1775 
1776  // Find the clusters that originally had the cells
1777  for ( Int_t iLoopCell = 0 ; iLoopCell < clus->GetNCells() ; iLoopCell++ )
1778  {
1779  Int_t idCell = clus->GetCellAbsId(iLoopCell) ;
1780 
1781  if(idCell>=0)
1782  {
1783  Int_t idCluster = fOrgClusterCellId[idCell];
1784 
1785  Bool_t set = kTRUE;
1786  for(Int_t icl =0; icl < nClu; icl++)
1787  {
1788  if(((Int_t)clArray.GetAt(icl))==-1 ) continue;
1789  if( idCluster == ((Int_t)clArray.GetAt(icl)) ) set = kFALSE;
1790  // printf("\t \t icell %d Cluster in array %d, IdCluster %d, in array %d, set %d\n",
1791  // iLoopCell, icl, idCluster,((Int_t)clArray.GetAt(icl)),set);
1792  }
1793  if( set && idCluster >= 0)
1794  {
1795  clArray.SetAt(idCluster,nClu++);
1796  //printf("******** idCluster %d \n",idCluster);
1797  nLabTotOrg+=(event->GetCaloCluster(idCluster))->GetNLabels();
1798 
1799  //printf("Cluster in array %d, IdCluster %d\n",nClu-1, idCluster);
1800 
1801  //Search highest E cluster
1802  AliVCluster * clOrg = event->GetCaloCluster(idCluster);
1803  //printf("\t E %f\n",clOrg->E());
1804  if(emax < clOrg->E())
1805  {
1806  emax = clOrg->E();
1807  idMax = idCluster;
1808  }
1809  }
1810  }
1811  }// cell loop
1812 
1813  if(nClu==0 || nLabTotOrg == 0)
1814  {
1815  //if(clus->E() > 0.25) printf("AliAnalysisTaskEMCALClusterize::SetClustersMCLabelFromOriginalClusters() - Check: N org clusters %d, n tot labels %d, cluster E %f, n cells %d\n",nClu,nLabTotOrg,clus->E(), clus->GetNCells());
1816  //for(Int_t icell = 0; icell < clus->GetNCells(); icell++) printf("\t cell %d",clus->GetCellsAbsId()[icell]);
1817  //printf("\n");
1818  }
1819 
1820  // Put the first in the list the cluster with highest energy
1821  if(idMax != ((Int_t)clArray.GetAt(0))) // Max not at first position
1822  {
1823  Int_t maxIndex = -1;
1824  Int_t firstCluster = ((Int_t)clArray.GetAt(0));
1825  for ( Int_t iLoopCluster = 0 ; iLoopCluster < nClu ; iLoopCluster++ )
1826  {
1827  if(idMax == ((Int_t)clArray.GetAt(iLoopCluster))) maxIndex = iLoopCluster;
1828  }
1829 
1830  if(firstCluster >=0 && idMax >=0)
1831  {
1832  clArray.SetAt(idMax,0);
1833  clArray.SetAt(firstCluster,maxIndex);
1834  }
1835  }
1836 
1837  // Get the labels list in the original clusters, assign all to the new cluster
1838  TArrayI clMCArray(nLabTotOrg) ;
1839  clMCArray.Reset();
1840 
1841  Int_t nLabTot = 0;
1842  for ( Int_t iLoopCluster = 0 ; iLoopCluster < nClu ; iLoopCluster++ )
1843  {
1844  Int_t idCluster = (Int_t) clArray.GetAt(iLoopCluster);
1845  //printf("New Cluster in Array %d, idCluster %d \n",iLoopCluster,idCluster);
1846  AliVCluster * clOrg = event->GetCaloCluster(idCluster);
1847  Int_t nLab = clOrg->GetNLabels();
1848 
1849  for ( Int_t iLab = 0 ; iLab < nLab ; iLab++ )
1850  {
1851  Int_t lab = clOrg->GetLabelAt(iLab) ;
1852  if(lab>=0)
1853  {
1854  Bool_t set = kTRUE;
1855  //printf("\t \t Set Label %d \n", lab);
1856  for(Int_t iLabTot =0; iLabTot < nLabTot; iLabTot++)
1857  {
1858  if( lab == ((Int_t)clMCArray.GetAt(iLabTot)) ) set = kFALSE;
1859  //printf("iLoopCluster %d, Label ID in Org Cluster %d,label %d Label ID in array %d, label in array %d, set %d\n",
1860  // iLoopCluster, iLab, lab, iLabTot, ((Int_t)clMCArray.GetAt(iLabTot)),set);
1861  }
1862  if( set ) clMCArray.SetAt(lab,nLabTot++);
1863  }
1864  }
1865  }// cluster loop
1866 
1867  // Set the final list of labels
1868 
1869  clus->SetLabel(clMCArray.GetArray(), nLabTot);
1870 
1871 // printf("Final list of labels for new cluster : \n");
1872 // for(Int_t ice = 0; ice < clus->GetNCells() ; ice++)
1873 // {
1874 // printf("\t Cell %d ",clus->GetCellsAbsId()[ice]);
1875 // Int_t label = InputEvent()->GetEMCALCells()->GetCellMCLabel(clus->GetCellsAbsId()[ice]);
1876 // printf(" org %d ",label);
1877 // RemapMCLabelForAODs(label);
1878 // printf(" new %d \n",label);
1879 // }
1880 // for(Int_t imc = 0; imc < clus->GetNLabels(); imc++) printf("\t Label %d\n",clus->GetLabelAt(imc));
1881 }
1882 
1883 //____________________________________________________________
1884 // Init geometry, create list of output clusters.
1885 //____________________________________________________________
1887 {
1888  fOutputAODBranch = new TClonesArray("AliAODCaloCluster", 0);
1889 
1890  if(fOutputAODBranchName.Length()==0)
1891  {
1892  fOutputAODBranchName = "newEMCALClustersArray";
1893  AliInfo("Cluster branch name not set, set it to newEMCALClustersArray");
1894  }
1895 
1897 
1898  if( fFillAODFile )
1899  {
1900  //fOutputAODBranch = new TClonesArray("AliAODCaloCluster", 0);
1901 
1902  //fOutputAODBranch->SetOwner(kFALSE);
1903 
1904  AddAODBranch("TClonesArray", &fOutputAODBranch);
1905  }
1906 }
1907 
1908 //_______________________________________________________
1919 //_______________________________________________________
1921 {
1922  //-------
1923  // Step 1
1924 
1925  // Remove the contents of AOD branch output list set in the previous event
1926  fOutputAODBranch->Clear("C");
1927 
1928  LoadBranches();
1929 
1930  // Check if there is a centrality value, PbPb analysis, and if a centrality bin selection is requested
1931  // If we need a centrality bin, we select only those events in the corresponding bin.
1932  if( fCentralityBin[0] >= 0 && fCentralityBin[1] >= 0 )
1933  {
1934  Float_t cen = GetEventCentrality();
1935  if(cen > fCentralityBin[1] || cen < fCentralityBin[0]) return ; //reject events out of bin.
1936  }
1937 
1938  // Intermediate array with new clusters : init the array only once or clear from previous event
1939  if(!fCaloClusterArr) fCaloClusterArr = new TObjArray(10000);
1940  else fCaloClusterArr->Delete();//Clear("C"); it leaks?
1941 
1942  InitGeometry(); // only once, must be done before OADB, geo OADB accessed here
1943 
1944  // Get the event, do some checks and settings
1945  CheckAndGetEvent() ;
1946 
1947  if (!fEvent)
1948  {
1949  AliDebug(1,Form("Skip Event %d", (Int_t) Entry()));
1950  return ;
1951  }
1952 
1953  // Init pointers, geometry, clusterizer, ocdb, aodb
1954 
1955  if(fAccessOCDB) AccessOCDB();
1956  if(fAccessOADB) AccessOADB(); // only once
1957 
1959 
1960  //-------
1961  // Step 2
1962 
1963  // Make clusters
1965  else ClusterizeCells() ;
1966 
1967  //-------
1968  // Step 3
1969 
1971 }
1972 
1973 
void FillAODCaloCells()
Put calo cells in standard branch.
ClassImp(AliAnalysisTaskTriggerRates) AliAnalysisTaskTriggerRates
virtual void ResetArrays()
Reset arrays containing information for all possible cells.
TString GetPass()
Get or guess pass number/string from path of filename.
Bool_t fFillAODHeader
Copy header to standard branch.
TClonesArray * fDigitsArr
! Digits array
AliEMCALClusterizer * fClusterizer
! EMCAL clusterizer
Bool_t fJustUnfold
Just unfold, do not recluster.
Bool_t fImportGeometryFromFile
Import geometry settings in geometry.root file.
Bool_t fSelectCell
Reject cells from cluster if energy is too low and recalculate position/energy and other...
TString fConfigName
Name of analysis configuration file.
Int_t fCellSecondLabels[fgkNEMCalCells]
Array with Second MC label to be passed to digit.
void SetClustersMCLabelFrom2SelectedLabels(AliEMCALRecPoint *recPoint, AliAODCaloCluster *clus)
Float_t fCellMatchdEta[fgkNEMCalCells]
Array with cluster-track dPhi.
TClonesArray * fOutputAODBranch
! AOD Branch with output clusters
TString fOADBFilePath
Default path $ALICE_PHYSICS/OADB/EMCAL, if needed change.
TString fImportGeometryFilePath
path fo geometry.root file
Bool_t fSelectEMCALEvent
Process the event if there is some high energy cluster.
Float_t GetEventCentrality() const
Get centrality/multiplicity percentile.
Bool_t fInputFromFilter
Get the input from AODs from the filter.
TString fOutputAODBranchName
New of output AOD branch.
AliEMCALGeometry * fGeom
EMCAL geometry.
void ClusterUnfolding()
Take the event clusters and unfold them.
Bool_t fAccessOADB
Get calibration from OADB for EMCAL.
Bool_t fRemoveLEDEvents
Remove LED events, use only for LHC11a.
AliEMCALRecoUtils * fRecoUtils
Access to factorized reconstruction algorithms.
Bool_t fRejectBelowThreshold
split (false-default) or reject (true) cell energy below threshold after UF
Float_t fConstantTimeShift
Apply a 600 ns time shift in case of simulation, shift in ns.
void SetClustersMCLabelFromOriginalClusters(AliAODCaloCluster *clus)
Float_t fSelectCellMinE
Min energy cell threshold, after unfolding.
Bool_t fOADBSet
AODB parameters already set.
Int_t fCellLabels[fgkNEMCalCells]
Array with MC label to be passed to digit.
Bool_t fRemoveExoticEvents
Remove exotic events.
Bool_t fDoTrackMatching
On/Off the matching recalulation to speed up analysis in PbPb.
Float_t fCellMatchdPhi[fgkNEMCalCells]
Array with cluster-track dEta.
TGeoHMatrix * fGeomMatrix[22]
Geometry matrices with alignments.
Bool_t IsLEDEvent(const Int_t run)
Check if event is LED, is so remove it. Affected LHC11a runs.
AliEMCALRecParam * fRecParam
Reconstruction parameters container.
TString fGeomName
Name of geometry to use.
Bool_t fOutputAODBranchSet
Set the AOD clusters branch in the input event once.
TString fOCDBpath
Path with OCDB location.
AliEMCALAfterBurnerUF * fUnfolder
! Unfolding procedure
Bool_t fGeomMatrixSet
Set geometry matrices only once, for the first event.
Float_t fCentralityBin[2]
Minimum and maximum value of the centrality for the analysis.
Bool_t fFillAODCaloCells
Copy calocells to standard branch.
TObjArray * fCaloClusterArr
! CaloClusters array
Double_t fCellTime[fgkNEMCalCells]
Array with cluster time to be passed to digit in case of AODs.
TString fCentralityClass
Name of selected centrality class.
TFile * file
Bool_t fAccessOCDB
Need to access info from OCDB (not really)
TObjArray * fClusterArr
! Recpoints array
Bool_t fRecalibrateWithClusterTime
Use fCellTime to store time of cells in cluster.
Int_t GetRunNumber(TString)
Definition: PlotMuonQA.C:2235
void FillAODHeader()
Put event header information in standard AOD branch.
static const Int_t fgkNEMCalCells
Total number of cells in the calorimeter, 10*48*24 (EMCal) + 4*48*8 (EMCal/DCal 1/3) + 6*32*24 (DCal)...
Int_t fEMCALNcellsCut
At least an EMCAL cluster with fNCellsCut cells over fEnergyCut.
Reclusterize EMCal clusters, put them in a new branch for other following analysis.
Bool_t fLoadGeomMatrices
Matrices set from configuration, not get from geometry.root or from ESDs/AODs.
Float_t fEMCALEnergyCut
At least an EMCAL cluster with this energy in the event.
Bool_t fUseAliCentrality
Use the centrality estimator from AliCentrality or AliMultSelection.
Int_t fOrgClusterCellId[fgkNEMCalCells]
Array ID of cluster to wich the cell belongs in unmodified clusters.
Float_t fSelectCellMinFrac
Min fraction of cell energy after unfolding cut.
Bool_t fRemapMCLabelForAODs
Remap AOD cells MC label. Needed in old AOD productions.