Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GepTopoTowerAlg.cxx
Go to the documentation of this file.
1 /*
2 * Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 #include "./GepTopoTowerAlg.h"
5 #include "./Cluster.h"
6 
9 
10 GepTopoTowerAlg::GepTopoTowerAlg( const std::string& name, ISvcLocator* pSvcLocator ) :
11  AthReentrantAlgorithm( name, pSvcLocator ){
12 }
13 
14 
16 
17 
19  ATH_MSG_INFO ("Initializing " << name() << "...");
24 
25  return StatusCode::SUCCESS;
26 }
27 
29  ATH_MSG_INFO ("Finalizing " << name() << "...");
30  return StatusCode::SUCCESS;
31 }
32 
33 StatusCode GepTopoTowerAlg::execute(const EventContext& context) const {
34  ATH_MSG_DEBUG ("Executing " << name() << "...");
35  setFilterPassed(false, context); //optional: start with algorithm not passed
36 
37  // read in clusters
38  auto h_caloClusters = SG::makeHandle(m_caloClustersKey, context);
39  CHECK(h_caloClusters.isValid());
40  ATH_MSG_DEBUG("Read in " << h_caloClusters->size() << " clusters");
41 
42  auto h_caloCells = SG::makeHandle(m_caloCellsKey, context);
43  CHECK(h_caloCells.isValid());
44  auto cells = *h_caloCells;
45 
46  // container for CaloCluster wrappers for Gep Clusters
47  SG::WriteHandle<xAOD::CaloClusterContainer> h_outputCaloClusters =
49  CHECK(h_outputCaloClusters.record(std::make_unique<xAOD::CaloClusterContainer>(),
50  std::make_unique<xAOD::CaloClusterAuxContainer>()));
51 
52  // Define tower array (98 eta bins x 64 phi bins)
53  static constexpr int nEta{98};
54  static constexpr int nPhi{64};
55  //avoid stack use of 605kb
56  auto tow = new Gep::Cluster[nEta][nPhi]();
57 
58 
59  // Loop over clusters and their associated cells
60  for (const auto iClust : *h_caloClusters) {
61  CaloClusterCellLink::const_iterator cellBegin = iClust->cell_begin();
62  CaloClusterCellLink::const_iterator cellEnd = iClust->cell_end();
63 
64  for (; cellBegin != cellEnd; ++cellBegin) {
65  unsigned int cellIndex = cellBegin.index();
66  const CaloCell* cell = cells.at(cellIndex);
67 
68  // Compute eta and phi indices (binning in steps of 0.1)
69  int eta_index = static_cast<int>(std::floor(cell->eta() * 10)) + 49;
70  int phi_index = static_cast<int>(std::floor(cell->phi() * 10)) + 32;
71 
72  // Ensure indices are within bounds
73  if (eta_index < 0 || eta_index >= nEta || phi_index < 0 || phi_index >= nPhi) continue;
74 
75  // Accumulate cell data into the corresponding tower
76  TLorentzVector cellVector;
77  cellVector.SetPtEtaPhiE(cell->energy() * 1.0 / TMath::CosH(cell->eta()),
78  cell->eta(), cell->phi(), cell->energy());
79  tow[eta_index][phi_index].vec += cellVector;
80  }
81  }
82 
83  // Collect non-empty towers into a vector
84  std::vector<Gep::Cluster> customTowers;
85  for (int i = 0; i < nEta; ++i) {
86  for (int j = 0; j < nPhi; ++j) {
87  if (tow[i][j].vec.Et() > 0) {
88  customTowers.push_back(tow[i][j]);
89  }
90  }
91  }
92  delete[] tow;
93 
94  // Store the Gep clusters to a CaloClusters, and write out.
95  h_outputCaloClusters->reserve(customTowers.size());
96 
97  for(const auto& gepclus: customTowers){
98  // store the calCluster to fix up the Aux container:
99  auto *ptr = h_outputCaloClusters->push_back(std::make_unique<xAOD::CaloCluster>());
100  // update the calo cluster.
101  ptr->setE(gepclus.vec.E());
102  ptr->setEta(gepclus.vec.Eta());
103  ptr->setPhi(gepclus.vec.Phi());
104  ptr->setTime(gepclus.time);
105  }
106 
107  setFilterPassed(true,context); //if got here, assume that means algorithm passed
108  return StatusCode::SUCCESS;
109 }
DataVector::reserve
void reserve(size_type n)
Attempt to preallocate enough memory for a specified number of elements.
RunTileCalibRec.cells
cells
Definition: RunTileCalibRec.py:271
ReadCellNoiseFromCool.cell
cell
Definition: ReadCellNoiseFromCool.py:53
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
GepTopoTowerAlg.h
GepTopoTowerAlg::finalize
virtual StatusCode finalize()
Definition: GepTopoTowerAlg.cxx:28
GepTopoTowerAlg::m_caloClustersKey
SG::ReadHandleKey< xAOD::CaloClusterContainer > m_caloClustersKey
Definition: GepTopoTowerAlg.h:29
Gep::Cluster
Definition: Trigger/TrigT1/TrigGepPerf/src/Cluster.h:13
GepTopoTowerAlg::execute
virtual StatusCode execute(const EventContext &) const
Definition: GepTopoTowerAlg.cxx:33
vec
std::vector< size_t > vec
Definition: CombinationsGeneratorTest.cxx:9
dbg::ptr
void * ptr(T *p)
Definition: SGImplSvc.cxx:74
CaloClusterAuxContainer.h
GepTopoTowerAlg::GepTopoTowerAlg
GepTopoTowerAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: GepTopoTowerAlg.cxx:10
TrigVSI::AlgConsts::nPhi
constexpr int nPhi
Default bin number of phi for vertex map.
Definition: Trigger/TrigTools/TrigVrtSecInclusive/TrigVrtSecInclusive/Constants.h:27
CaloDetDescrManager.h
Definition of CaloDetDescrManager.
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:74
SG::makeHandle
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
Definition: ReadCondHandle.h:274
lumiFormat.i
int i
Definition: lumiFormat.py:85
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
GepTopoTowerAlg::~GepTopoTowerAlg
virtual ~GepTopoTowerAlg()
Definition: GepTopoTowerAlg.cxx:15
Cluster.h
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
createCablingJSON.eta_index
int eta_index
Definition: createCablingJSON.py:14
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
GepTopoTowerAlg::m_outputCaloClustersKey
SG::WriteHandleKey< xAOD::CaloClusterContainer > m_outputCaloClustersKey
Definition: GepTopoTowerAlg.h:32
DataVector::push_back
value_type push_back(value_type pElem)
Add an element to the end of the collection.
AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed
virtual void setFilterPassed(bool state, const EventContext &ctx) const
Definition: AthCommonReentrantAlgorithm.h:100
GepTopoTowerAlg::initialize
virtual StatusCode initialize()
Definition: GepTopoTowerAlg.cxx:18
SG::WriteHandle
Definition: StoreGate/StoreGate/WriteHandle.h:73
SG::WriteHandle::record
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
CaloCell
Data object for each calorimeter readout cell.
Definition: CaloCell.h:57
GepTopoTowerAlg::m_gepCellsKey
SG::ReadHandleKey< Gep::GepCellMap > m_gepCellsKey
Definition: GepTopoTowerAlg.h:36
TrigVSI::AlgConsts::nEta
constexpr int nEta
Default bin number of eta for vertex map.
Definition: Trigger/TrigTools/TrigVrtSecInclusive/TrigVrtSecInclusive/Constants.h:26
GepTopoTowerAlg::m_caloCellsKey
SG::ReadHandleKey< CaloCellContainer > m_caloCellsKey
Definition: GepTopoTowerAlg.h:26