AliPhysics  35e5fca (35e5fca)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliAnalysisTaskEmcalClustersRef.cxx
Go to the documentation of this file.
1 /**************************************************************************
2  * Copyright(c) 1998-2015, 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 #include <array>
16 #include <bitset>
17 #include <iostream>
18 #include <map>
19 #include <vector>
20 
21 #include <TArrayD.h>
22 #include <TClonesArray.h>
23 #include <TGrid.h>
24 #include <THashList.h>
25 #include <THistManager.h>
26 #include <TLinearBinning.h>
27 #include <TLorentzVector.h>
28 #include <TObjArray.h>
29 #include <TParameter.h>
30 #include <TMath.h>
31 
32 #include "AliAnalysisManager.h"
33 #include "AliAnalysisUtils.h"
34 #include "AliClusterContainer.h"
36 #include "AliEMCALGeometry.h"
37 #include "AliEmcalList.h"
38 #include "AliEMCALTriggerPatchInfo.h"
40 #include "AliESDEvent.h"
41 #include "AliInputEventHandler.h"
42 #include "AliLog.h"
43 #include "AliMultSelection.h"
44 #include "AliMultEstimator.h"
45 #include "AliVCluster.h"
46 #include "AliVEvent.h"
47 #include "AliVEventHandler.h"
48 #include "AliVVertex.h"
49 
51 
55 
56 namespace EMCalTriggerPtAnalysis {
57 
58 AliAnalysisTaskEmcalClustersRef::AliAnalysisTaskEmcalClustersRef() :
60  fCentralityRange(-999., 999.),
61  fRequestCentrality(false),
62  fEventCentrality(-1),
63  fCentralityEstimator("V0M"),
64  fBunchCrossingIndex(-1),
65  fEnergyDefinition(kDefaultEnergy),
66  fEnableSumw2(false),
67  fClusterTimeRange(-50e-6, 50e-6)
68 {
69 }
70 
73  fCentralityRange(-999., 999.),
74  fRequestCentrality(false),
75  fEventCentrality(-1),
76  fCentralityEstimator("V0M"),
77  fBunchCrossingIndex(-1),
78  fEnergyDefinition(kDefaultEnergy),
79  fEnableSumw2(false),
80  fClusterTimeRange(-50e-6, 50e-6)
81 {
82 }
83 
85 }
86 
87 
89 
90  EnergyBinning energybinning;
91  TLinearBinning smbinning(21, -0.5, 20.5), etabinning(100, -0.7, 0.7), timebinning(1000, -500e-9, 500e-9), ncellbinning(101, -0.5, 100.5);
92  TString optionstring = fEnableSumw2 ? "s" : "";
93 
94  /*
95  * Exclusive classes are defined as triggered events
96  * in a class without lower threshold classes firing.
97  * This is needed to make the triggers statistically
98  * independent.
99  */
100  std::array<Double_t, 5> encuts = {1., 2., 5., 10., 20.};
101  Int_t sectorsWithEMCAL[10] = {4, 5, 6, 7, 8, 9, 13, 14, 15, 16};
102  for(auto trg : GetSupportedTriggers()){
103  fHistos->CreateTH1("hEventCount" + trg, "Event count for trigger class " + trg, 1, 0.5, 1.5, optionstring);
104  fHistos->CreateTH1("hEventCentrality" + trg, "Event centrality for trigger class " + trg, 103, -2., 101., optionstring);
105  fHistos->CreateTH1("hVertexZ" + trg, "z-position of the primary vertex for trigger class " + trg, 200, -40., 40., optionstring);
106  fHistos->CreateTH1("hClusterEnergy" + trg, "Cluster energy for trigger class " + trg, energybinning, optionstring);
107  fHistos->CreateTH1("hClusterET" + trg, "Cluster transverse energy for trigger class " + trg, energybinning, optionstring);
108  fHistos->CreateTH1("hClusterEnergyFired" + trg, "Cluster energy for trigger class " + trg + ", firing the trigger", energybinning, optionstring);
109  fHistos->CreateTH1("hClusterETFired" + trg, "Cluster transverse energy for trigger class " + trg + ", firing the trigger" , energybinning, optionstring);
110  fHistos->CreateTH2("hClusterEnergySM" + trg, "Cluster energy versus supermodule for trigger class " + trg, smbinning, energybinning, optionstring);
111  fHistos->CreateTH2("hClusterETSM" + trg, "Cluster transverse energy versus supermodule for trigger class " + trg, smbinning, energybinning, optionstring);
112  fHistos->CreateTH2("hClusterEnergyFiredSM" + trg, "Cluster energy versus supermodule for trigger class " + trg + ", firing the trigger" , smbinning, energybinning, optionstring);
113  fHistos->CreateTH2("hClusterETFiredSM" + trg, "Cluster transverse energy versus supermodule for trigger class " + trg + ", firing the trigger" , smbinning, energybinning, optionstring);
114  fHistos->CreateTH2("hEtaEnergy" + trg, "Cluster energy vs. eta for trigger class " + trg, etabinning, energybinning, optionstring);
115  fHistos->CreateTH2("hEtaET" + trg, "Cluster transverse energy vs. eta for trigger class " + trg, etabinning, energybinning, optionstring);
116  fHistos->CreateTH2("hTimeEnergy" + trg, "Cluster time vs. energy for trigger class " + trg, timebinning, energybinning, optionstring);
117  fHistos->CreateTH2("hNCellEnergy" + trg, "Cluster number of cells vs energy for trigger class " + trg, ncellbinning, energybinning, optionstring);
118  fHistos->CreateTH2("hNCellET" + trg, "Cluster number of cells vs transverse energy for trigger class " + trg, ncellbinning, energybinning, optionstring);
119  fHistos->CreateTH2("hEtaEnergyFired" + trg, "Cluster energy vs. eta for trigger class " + trg + ", firing the trigger", etabinning, energybinning, optionstring);
120  fHistos->CreateTH2("hEtaETFired" + trg, "Cluster transverse energy vs. eta for trigger class " + trg + ", firing the trigger", etabinning, energybinning, optionstring);
121  for(int ism = 0; ism < 20; ism++){
122  fHistos->CreateTH2(TString::Format("hEtaEnergySM%d", ism) + trg, TString::Format("Cluster energy vs. eta in Supermodule %d for trigger ", ism) + trg, etabinning, energybinning, optionstring);
123  fHistos->CreateTH2(TString::Format("hEtaETSM%d", ism) + trg, TString::Format("Cluster transverse energy vs. eta in Supermodule %d for trigger ", ism) + trg, etabinning, energybinning, optionstring);
124  fHistos->CreateTH2(TString::Format("hEtaEnergyFiredSM%d", ism) + trg, TString::Format("Cluster energy vs. eta in Supermodule %d for trigger ", ism) + trg + ", firing the trigger", etabinning, energybinning, optionstring);
125  fHistos->CreateTH2(TString::Format("hEtaETFiredSM%d", ism) + trg, TString::Format("Cluster transverse energy vs. eta in Supermodule %d for trigger ", ism) + trg +", firing the trigger", etabinning, energybinning, optionstring);
126  }
127  for(int isec = 0; isec < 10; isec++){
128  fHistos->CreateTH2(TString::Format("hEtaEnergySec%d", sectorsWithEMCAL[isec]) + trg, TString::Format("Cluster energy vs.eta in tracking sector %d for trigger ", sectorsWithEMCAL[isec]) + trg, etabinning, energybinning, optionstring);
129  fHistos->CreateTH2(TString::Format("hEtaETSec%d", sectorsWithEMCAL[isec]) + trg, TString::Format("Cluster transverse energy vs.eta in tracking sector %d for trigger ", sectorsWithEMCAL[isec]) + trg, etabinning, energybinning, optionstring);
130  fHistos->CreateTH2(TString::Format("hEtaEnergyFiredSec%d", sectorsWithEMCAL[isec]) + trg, TString::Format("Cluster energy vs.eta in tracking sector %d for trigger ", sectorsWithEMCAL[isec]) + trg + ", firing the trigger", etabinning, energybinning, optionstring);
131  fHistos->CreateTH2(TString::Format("hEtaETFiredSec%d", sectorsWithEMCAL[isec]) + trg, TString::Format("Cluster transverse energy vs.eta in tracking sector %d for trigger ", sectorsWithEMCAL[isec]) + trg + ", firing the trigger", etabinning, energybinning, optionstring);
132  }
133  for(auto ien : encuts){
134  fHistos->CreateTH2(TString::Format("hEtaPhi%dG", static_cast<int>(ien)) + trg, TString::Format("cluster #eta-#phi map for clusters with energy larger than %f GeV/c for trigger class ", ien) + trg, 100, -0.7, 0.7, 200, 0, 2*TMath::Pi(), optionstring);
135  fHistos->CreateTH2(TString::Format("hEtaPhiFired%dG", static_cast<int>(ien)) + trg, TString::Format("cluster #eta-#phi map for clusters fired the trigger with energy larger than %f GeV/c for trigger class", ien) + trg + ", firing the trigger", 200, -0.7, 0.7, 200, 0, 2*TMath::Pi(), optionstring);
136  }
137  }
138 }
139 
141  fEventCentrality = -1;
142  if(fRequestCentrality){
143  AliMultSelection *mult = dynamic_cast<AliMultSelection *>(InputEvent()->FindListObject("MultSelection"));
144  if(!mult){
145  AliErrorStream() << GetName() << ": Centrality selection enabled but no centrality estimator found" << std::endl;
146  return false;
147  }
148  if(mult->IsEventSelected()) return false;
149  fEventCentrality = mult->GetEstimator(fCentralityEstimator)->GetPercentile();
150  AliDebugStream(1) << GetName() << ": Centrality " << fEventCentrality << std::endl;
152  AliDebugStream(1) << GetName() << ": reject centrality: " << fEventCentrality << std::endl;
153  return false;
154  } else {
155  AliDebugStream(1) << GetName() << ": select centrality " << fEventCentrality << std::endl;
156  }
157  } else {
158  AliDebugStream(1) << GetName() << ": No centrality selection applied" << std::endl;
159  }
160 
161  if(fBunchCrossingIndex > -1){
162  int bcindex = fInputEvent->GetHeader()->GetBunchCrossNumber() % 4;
163  if(bcindex != fBunchCrossingIndex) return false;
164  }
165  return true;
166 }
167 
169  AliDebugStream(1) << GetName() << ": UserExec start" << std::endl;
170 
171  TList ej1patches, dj1patches, ej2patches, dj2patches, eg1patches, dg1patches, eg2patches, dg2patches;
172  FindPatchesForTrigger("EJ2", fTriggerPatchInfo, ej2patches);
173  FindPatchesForTrigger("DJ2", fTriggerPatchInfo, dj2patches);
174  FindPatchesForTrigger("EJ1", fTriggerPatchInfo, ej1patches);
175  FindPatchesForTrigger("DJ1", fTriggerPatchInfo, dj1patches);
176  FindPatchesForTrigger("EG2", fTriggerPatchInfo, eg2patches);
177  FindPatchesForTrigger("DG2", fTriggerPatchInfo, dg2patches);
178  FindPatchesForTrigger("EG1", fTriggerPatchInfo, eg1patches);
179  FindPatchesForTrigger("DG1", fTriggerPatchInfo, dg1patches);
180 
181  Double_t energy, et, eta, phi;
182  TList *selpatches(nullptr);
183  for(auto clust : GetClusterContainer(fNameClusterContainer.Data())->all()){
184  //AliVCluster *clust = static_cast<AliVCluster *>(*clustIter);
185  if(!clust->IsEMCAL()) continue;
186  if(clust->GetIsExotic()) continue;
187  if(!fClusterTimeRange.IsInRange(clust->GetTOF())) continue;
188 
189  // Distinguish energy definition
190  switch(fEnergyDefinition){
191  case kDefaultEnergy:
192  AliDebugStream(2) << GetName() << ": Using cluster energy definition: default" << std::endl;
193  energy = clust->E();
194  break;
195  case kNonLinCorrEnergy:
196  AliDebugStream(2) << GetName() << ": Using cluster energy definition: corrected for non-linearity" << std::endl;
197  energy = clust->GetNonLinCorrEnergy();
198  break;
199  case kHadCorrEnergy:
200  AliDebugStream(2) << GetName() << ": Using cluster energy definition: corrected for hadronic contribution" << std::endl;
201  energy = clust->GetHadCorrEnergy();
202  break;
203  };
204 
205  AliDebugStream(2) << GetName() << ": Using energy " << energy << " (def: " << clust->E()
206  << " | NL: " << clust->GetNonLinCorrEnergy()
207  << " | HD: " << clust->GetHadCorrEnergy()
208  << ")" << std::endl;
209 
210  TLorentzVector posvec;
211  clust->GetMomentum(posvec, fVertex);
212  posvec.SetE(energy); // use energy definition as selected in the task
213  et = posvec.Et();
214  eta = posvec.Eta();
215  phi = posvec.Phi();
216 
217  // fill histograms allEta
218  for(const auto & trg : fSelectedTriggers){
219  selpatches = nullptr;
220  if(trg.Contains("EJ2")) selpatches = &ej2patches;
221  if(trg.Contains("DJ2")) selpatches = &dj2patches;
222  if(trg.Contains("EJ1")) selpatches = &ej1patches;
223  if(trg.Contains("DJ1")) selpatches = &dj1patches;
224  if(trg.Contains("EG2")) selpatches = &eg2patches;
225  if(trg.Contains("DG2")) selpatches = &dg2patches;
226  if(trg.Contains("EG1")) selpatches = &eg1patches;
227  if(trg.Contains("DG1")) selpatches = &dg1patches;
228  FillClusterHistograms(trg.Data(), energy, et, eta, phi, clust->GetTOF(), clust->GetNCells(), nullptr);
229  }
230  }
231  return true;
232 }
233 
234 void AliAnalysisTaskEmcalClustersRef::FillClusterHistograms(const TString &triggerclass, double energy, double transverseenergy, double eta, double phi, double clustertime, int ncell, TList *fTriggerPatches){
235  Bool_t hasTriggerPatch = fTriggerPatches ? CorrelateToTrigger(eta, phi, fTriggerPatches) : kFALSE;
236  Int_t supermoduleID = -1, sector = -1;
237  Double_t weight = GetTriggerWeight(triggerclass);
238  AliDebugStream(1) << GetName() << ": Using weight " << weight << " for trigger " << triggerclass << std::endl;
239 
240  fGeom->SuperModuleNumberFromEtaPhi(eta, phi, supermoduleID);
241  fHistos->FillTH1("hClusterEnergy" + triggerclass, energy, weight);
242  fHistos->FillTH1("hClusterET" + triggerclass, transverseenergy, weight);
243  fHistos->FillTH2("hEtaEnergy" + triggerclass, eta, energy, weight);
244  fHistos->FillTH2("hEtaET" + triggerclass, eta, transverseenergy, weight);
245  fHistos->FillTH2("hTimeEnergy" + triggerclass, clustertime, energy, weight);
246  fHistos->FillTH2("hNCellEnergy" + triggerclass, ncell, energy, weight);
247  fHistos->FillTH2("hNCellET" + triggerclass, ncell, transverseenergy, weight);
248  if(supermoduleID >= 0){
249  fHistos->FillTH2("hClusterEnergySM" + triggerclass, supermoduleID, energy, weight);
250  fHistos->FillTH2("hClusterETSM" + triggerclass, supermoduleID, transverseenergy, weight);
251  fHistos->FillTH2(TString::Format("hEtaEnergySM%d", supermoduleID) + triggerclass, eta, energy, weight);
252  fHistos->FillTH2(TString::Format("hEtaETSM%d", supermoduleID) + triggerclass, eta, transverseenergy, weight);
253  if(supermoduleID < 12)
254  sector = 4 + int(supermoduleID/2); // EMCAL
255  else
256  sector = 13 + int((supermoduleID-12)/2); // DCAL
257  fHistos->FillTH2(TString::Format("hEtaEnergySec%d", sector) + triggerclass, eta, energy, weight);
258  fHistos->FillTH2(TString::Format("hEtaETSec%d", sector) + triggerclass, eta, transverseenergy, weight);
259  }
260  if(hasTriggerPatch){
261  fHistos->FillTH1("hClusterEnergyFired" + triggerclass, energy, weight);
262  fHistos->FillTH1("hClusterETFired" + triggerclass, energy, weight);
263  fHistos->FillTH2("hEtaEnergyFired" + triggerclass, eta, energy, weight);
264  fHistos->FillTH2("hEtaETFired" + triggerclass, eta, energy, weight);
265  if(supermoduleID >= 0){
266  fHistos->FillTH2("hClusterEnergyFiredSM" + triggerclass, supermoduleID, energy, weight);
267  fHistos->FillTH2("hClusterETFiredSM" + triggerclass, supermoduleID, transverseenergy, weight);
268  fHistos->FillTH2(TString::Format("hEtaEnergyFiredSM%d", supermoduleID) + triggerclass, eta, energy,weight);
269  fHistos->FillTH2(TString::Format("hEtaETFiredSM%d", supermoduleID) + triggerclass, eta, transverseenergy, weight);
270  fHistos->FillTH2(TString::Format("hEtaEnergyFiredSec%d", sector) + triggerclass, eta, energy, weight);
271  fHistos->FillTH2(TString::Format("hEtaETFiredSec%d", sector) + triggerclass, eta, transverseenergy, weight);
272  }
273  }
274  Double_t encuts[5] = {1., 2., 5., 10., 20.};
275  for(int ien = 0; ien < 5; ien++){
276  if(energy > encuts[ien]){
277  fHistos->FillTH2(TString::Format("hEtaPhi%dG", static_cast<int>(encuts[ien])) + triggerclass, eta, phi, weight);
278  if(hasTriggerPatch){
279  fHistos->FillTH2(TString::Format("hEtaPhiFired%dG", static_cast<int>(encuts[ien])) + triggerclass, eta, phi, weight);
280  }
281  }
282  }
283 }
284 
286  for(const auto &t : fSelectedTriggers){
287  Double_t weight = GetTriggerWeight(t);
288  fHistos->FillTH1("hEventCount" + t, 1, weight);
289  fHistos->FillTH1("hEventCentrality" + t, fEventCentrality, weight);
290  fHistos->FillTH1("hVertexZ" + t, fVertex[2], weight);
291  }
292 }
293 
295  Bool_t hasfound = kFALSE;
296  for(TIter patchIter = TIter(fTriggerPatches).Begin(); patchIter != TIter::End(); ++patchIter){
297  Double_t boundaries[4];
298  GetPatchBoundaries(*patchIter, boundaries);
299  Double_t etamin = TMath::Min(boundaries[0], boundaries[1]),
300  etamax = TMath::Max(boundaries[0], boundaries[1]),
301  phimin = TMath::Min(boundaries[2], boundaries[3]),
302  phimax = TMath::Max(boundaries[2], boundaries[3]);
303  if(etaclust > etamin && etaclust < etamax && phiclust > phimin && phiclust < phimax){
304  hasfound = kTRUE;
305  break;
306  }
307  }
308  return hasfound;
309 }
310 
311 void AliAnalysisTaskEmcalClustersRef::FindPatchesForTrigger(TString triggerclass, const TClonesArray * triggerPatches, TList &foundtriggers) const {
312  foundtriggers.Clear();
313  if(!triggerPatches) return;
315  if(triggerclass == "EG1") myclass = AliEmcalTriggerOfflineSelection::kTrgEG1;
316  if(triggerclass == "EG2") myclass = AliEmcalTriggerOfflineSelection::kTrgEG2;
317  if(triggerclass == "EJ1") myclass = AliEmcalTriggerOfflineSelection::kTrgEJ1;
318  if(triggerclass == "EJ2") myclass = AliEmcalTriggerOfflineSelection::kTrgEJ2;
319  if(triggerclass == "DMC7") myclass = AliEmcalTriggerOfflineSelection::kTrgDL0;
320  if(triggerclass == "DG1") myclass = AliEmcalTriggerOfflineSelection::kTrgDG1;
321  if(triggerclass == "DG2") myclass = AliEmcalTriggerOfflineSelection::kTrgDG2;
322  if(triggerclass == "DJ1") myclass = AliEmcalTriggerOfflineSelection::kTrgDJ1;
323  if(triggerclass == "DJ2") myclass = AliEmcalTriggerOfflineSelection::kTrgDJ2;
324  for(auto patchiter : *triggerPatches){
325  AliEMCALTriggerPatchInfo *mypatch = static_cast<AliEMCALTriggerPatchInfo *>(patchiter);
326  if(!mypatch->IsOfflineSimple()) continue;
328  if(!mypatch->IsDCalPHOS()) continue;
329  } else {
330  if(mypatch->IsDCalPHOS()) continue;
331  }
333  if(!mypatch->IsGammaLowSimple()) continue;
334  } else {
335  if(!mypatch->IsJetLowSimple()) continue;
336  }
337  double threshold = fTriggerSelection ? fTriggerSelection->GetThresholdForTrigger(myclass) : -1;
338  if(mypatch->GetPatchE() > threshold) foundtriggers.Add(patchiter);
339  }
340 }
341 
343  AliEMCALTriggerPatchInfo *patch= dynamic_cast<AliEMCALTriggerPatchInfo *>(o);
344  boundaries[0] = patch->GetEtaMin();
345  boundaries[1] = patch->GetEtaMax();
346  boundaries[2] = patch->GetPhiMin();
347  boundaries[3] = patch->GetPhiMax();
348 }
349 
351  AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
352 
353  //-------------------------------------------------------
354  // Init the task and do settings
355  //-------------------------------------------------------
356 
357  TString clusName(nclusters == "usedefault" ? AliEmcalAnalysisFactory::ClusterContainerNameFactory(mgr->GetInputEventHandler()->InheritsFrom("AliAODInputHandler")) : nclusters);
358 
359  TString taskname = "emcalClusterQA_" + suffix;
360 
362  task->AddClusterContainer(clusName);
363  task->SetClusterContainer(clusName);
364  mgr->AddTask(task);
365 
366  TString outfile(mgr->GetCommonFileName());
367  outfile += ":ClusterQA_" + TString(suffix);
368  TString containername = "ClusterResults_" + TString(suffix);
369  printf("Outfile: %s, container: %s\n", outfile.Data(), containername.Data());
370 
371  task->ConnectInput(0, mgr->GetCommonInputContainer());
372  mgr->ConnectOutput(task, 1, mgr->CreateContainer(containername.Data(), TList::Class(), AliAnalysisManager::kOutputContainer, outfile.Data()));
373 
374  return task;
375 }
376 
378  AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
379 
381  mgr->AddTask(task);
382 
383  // Adding cluster container
384  TString clusName(nClusters == "usedefault" ? AliEmcalAnalysisFactory::ClusterContainerNameFactory(mgr->GetInputEventHandler()->InheritsFrom("AliAODInputHandler")) : nClusters);
385  task->AddClusterContainer(clusName.Data());
386  task->SetClusterContainer(clusName);
387 
388  // Set Energy thresholds for additional patch selection:
389  // These are events with offline patches of a given type where the trigger reached already the plateau
390  // These numers are determined as:
391  // EMC7: 3.5 GeV
392  // EG1: 14 GeV
393  // EG2: 8 GeV
394  // EJ1: 22 GeV
395  // EJ2: 12 GeV
398  );
399 
400  TString outfile(mgr->GetCommonFileName());
401  outfile += ":ClusterQA";
402 
403  task->ConnectInput(0, mgr->GetCommonInputContainer());
404  mgr->ConnectOutput(task, 1, mgr->CreateContainer("ClusterResults", AliEmcalList::Class(), AliAnalysisManager::kOutputContainer, outfile.Data()));
405 
406  return task;
407 }
408 
409 
415 {
416  this->SetMinimum(0.);
417  this->AddStep(1, 0.05);
418  this->AddStep(2, 0.1);
419  this->AddStep(4, 0.2);
420  this->AddStep(7, 0.5);
421  this->AddStep(16, 1);
422  this->AddStep(32, 2);
423  this->AddStep(40, 4);
424  this->AddStep(50, 5);
425  this->AddStep(100, 10);
426  this->AddStep(200, 20);
427 }
428 
429 
430 } /* namespace EMCalTriggerPtAnalysis */
AliCutValueRange< double > fClusterTimeRange
Selected range on cluster time.
void GetPatchBoundaries(TObject *o, Double_t *boundaries) const
std::vector< TString > fSelectedTriggers
! Triggers selected for given event
double Double_t
Definition: External.C:58
Class creating a linear binning, used in the histogram manager.
Bool_t CorrelateToTrigger(Double_t etaclust, Double_t phiclust, TList *triggerpatches) const
energy
Definition: HFPtSpectrum.C:44
void FillTH2(const char *hname, double x, double y, double weight=1., Option_t *opt="")
Simple monitoring task for cluster-related quantities in EMCAL-triggered events.
AliEmcalTriggerOfflineSelection * fTriggerSelection
Offline trigger selection.
Bool_t fRequestCentrality
Switch on request for centrality range.
void AddStep(Double_t max, Double_t binwidth)
void SetOfflineTriggerSelection(AliEmcalTriggerOfflineSelection *sel)
Set an offline trigger selection.
AliClusterContainer * AddClusterContainer(const char *n)
const Double_t etamin
TH2 * CreateTH2(const char *name, const char *title, int nbinsx, double xmin, double xmax, int nbinsy, double ymin, double ymax, Option_t *opt="")
TString fNameClusterContainer
Name of the cluster container in the event.
int Int_t
Definition: External.C:63
AliEMCALGeometry * fGeom
!emcal geometry
EmcalTriggerClass
Definition of the various supported trigger types.
TH1 * CreateTH1(const char *name, const char *title, int nbins, double xmin, double xmax, Option_t *opt="")
AliClusterContainer * GetClusterContainer(Int_t i=0) const
Helper class creating user defined custom binning.
static Bool_t IsSingleShower(EmcalTriggerClass cls)
Checks if the trigger class is a single shower patch trigger class.
Double_t GetThresholdForTrigger(EmcalTriggerClass trgcls) const
Get the offline trigger threshold (on energy) for a given trigger class.
static AliAnalysisTaskEmcalClustersRef * AddTaskEmcalClustersRef(const TString &nClusters="usedefault", const TString &suffix="")
void FillTH1(const char *hname, double x, double weight=1., Option_t *opt="")
TString fCentralityEstimator
Centrality estimator (default: V0M for PbPb)
static AliAnalysisTaskEmcalClustersRef * AddTaskEmcalClustersRefDefault(const TString &nClusters="usedefault")
ClassImp(AliAnalysisTaskCRC) AliAnalysisTaskCRC
Double_t fVertex[3]
!event vertex
AliCutValueRange< double > fCentralityRange
Selected centrality range.
const Double_t etamax
TClonesArray * fTriggerPatchInfo
!trigger patch info array
static Bool_t IsDCAL(EmcalTriggerClass cls)
Checks if the trigger class is a jet patch trigger class.
EnergyDefinition_t fEnergyDefinition
Energy definition used for a given cluster.
bool Bool_t
Definition: External.C:53
void FillClusterHistograms(const TString &triggerclass, double energy, double transversenergy, double eta, double phi, double clustertime, int ncell, TList *triggerpatches)
static AliEmcalTriggerOfflineSelection * TriggerSelectionFactory(Double_t el0, Double_t eg1, Double_t eg2, Double_t ej1, Double_t ej2, AliEmcalTriggerOfflineSelection::EmcalEnergyDefinition_t endef=AliEmcalTriggerOfflineSelection::kFEEEnergy)
Configures EMCAL trigger offline selection used to restrict EMCAL triggered sample.
const Double_t phimin
void FindPatchesForTrigger(TString triggerclass, const TClonesArray *triggerpatches, TList &foundpatches) const
void SetMinimum(Double_t min)
static TString ClusterContainerNameFactory(Bool_t isAOD)
Get name of the default cluster container.