Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GepCellTowerAlg.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 "./GepCellTowerAlg.h"
5 #include "./Cluster.h"
6 
9 
10 GepCellTowerAlg::GepCellTowerAlg( const std::string& name, ISvcLocator* pSvcLocator ) :
11  AthReentrantAlgorithm( name, pSvcLocator ){
12 }
13 
14 
16 
17 
19  ATH_MSG_DEBUG ("Initializing " << name() << "...");
20 
21  // Retrieve AlgTools
24 
25  return StatusCode::SUCCESS;
26 }
27 
29  ATH_MSG_DEBUG ("Finalizing " << name() << "...");
30  return StatusCode::SUCCESS;
31 }
32 
33 StatusCode GepCellTowerAlg::execute(const EventContext& context) const {
34  ATH_MSG_DEBUG ("Executing " << name() << "...");
35  setFilterPassed(false, context); //optional: start with algorithm not passed
36 
37  std::vector<Gep::GepCaloCell> cells;
38 
39  auto h_gepCellsMap = SG::makeHandle(m_gepCellsKey, context);
40  CHECK(h_gepCellsMap.isValid());
41  auto gepCellsMap = *h_gepCellsMap;
42 
43  auto cell_map = gepCellsMap.getCellMap();
44 
45  // Loop over all cells
46  for (auto const& cell_itr : *cell_map) {
47  cells.push_back(cell_itr.second);
48  }
49 
50  // container for CaloCluster wrappers for Gep Clusters
51  SG::WriteHandle<xAOD::CaloClusterContainer> h_outputCaloClusters =
53  CHECK(h_outputCaloClusters.record(std::make_unique<xAOD::CaloClusterContainer>(),
54  std::make_unique<xAOD::CaloClusterAuxContainer>()));
55 
56  // Define tower array (98 eta bins x 64 phi bins)
57  static constexpr int nEta{98};
58  static constexpr int nPhi{64};
59  //avoid stack use of 605kb
60  auto tow = new Gep::Cluster[nEta][nPhi]();
61  // Single loop over cells to accumulate energy into the correct tower
62  for (const auto& cell : cells) {
63  if (cell.sigma < 2) continue;
64  if (cell.isBadCell()) continue;
65 
66  // Compute eta and phi indices (binning in steps of 0.1)
67  int eta_index = static_cast<int>(std::floor(cell.eta * 10)) + 49;
68  int phi_index = static_cast<int>(std::floor(cell.phi * 10)) + 32;
69 
70  // Ensure indices are within bounds
71  if (eta_index < 0 || eta_index >= nEta || phi_index < 0 || phi_index >= nPhi) continue;
72 
73  // Accumulate cell data into the corresponding tower
74  TLorentzVector cellsVector;
75  cellsVector.SetPtEtaPhiE(cell.et, cell.eta, cell.phi, cell.e);
76  tow[eta_index][phi_index].vec += cellsVector;
77  }
78 
79  // Collect non-empty towers into a vector
80  std::vector<Gep::Cluster> customTowers;
81  for (int i = 0; i < nEta; ++i) {
82  for (int j = 0; j < nPhi; ++j) {
83  if (tow[i][j].vec.Et() > 0) {
84  customTowers.push_back(tow[i][j]);
85  }
86  }
87  }
88  delete [] tow;
89  // Store the Gep clusters to a CaloClusters, and write out.
90  h_outputCaloClusters->reserve(customTowers.size());
91 
92  for(const auto& gepclus: customTowers){
93  // store the calCluster to fix up the Aux container:
94  auto *ptr = h_outputCaloClusters->push_back(std::make_unique<xAOD::CaloCluster>());
95  ptr->setE(gepclus.vec.E());
96  ptr->setEta(gepclus.vec.Eta());
97  ptr->setPhi(gepclus.vec.Phi());
98  ptr->setTime(gepclus.time);
99  }
100 
101  setFilterPassed(true,context); //if got here, assume that means algorithm passed
102  return StatusCode::SUCCESS;
103 }
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
Gep::Cluster
Definition: Trigger/TrigT1/TrigGepPerf/src/Cluster.h:13
vec
std::vector< size_t > vec
Definition: CombinationsGeneratorTest.cxx:9
dbg::ptr
void * ptr(T *p)
Definition: SGImplSvc.cxx:74
CaloClusterAuxContainer.h
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
GepCellTowerAlg::initialize
virtual StatusCode initialize()
Definition: GepCellTowerAlg.cxx:18
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
GepCellTowerAlg::m_gepCellsKey
SG::ReadHandleKey< Gep::GepCellMap > m_gepCellsKey
Definition: GepCellTowerAlg.h:30
GepCellTowerAlg::~GepCellTowerAlg
virtual ~GepCellTowerAlg()
Definition: GepCellTowerAlg.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
GepCellTowerAlg::execute
virtual StatusCode execute(const EventContext &) const
Definition: GepCellTowerAlg.cxx:33
GepCellTowerAlg::m_outputCellTowerKey
SG::WriteHandleKey< xAOD::CaloClusterContainer > m_outputCellTowerKey
Definition: GepCellTowerAlg.h:26
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
GepCellTowerAlg::GepCellTowerAlg
GepCellTowerAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: GepCellTowerAlg.cxx:10
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.
GepCellTowerAlg::finalize
virtual StatusCode finalize()
Definition: GepCellTowerAlg.cxx:28
TrigVSI::AlgConsts::nEta
constexpr int nEta
Default bin number of eta for vertex map.
Definition: Trigger/TrigTools/TrigVrtSecInclusive/TrigVrtSecInclusive/Constants.h:26
GepCellTowerAlg.h