Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GepTCTowerAlg.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 "./GepTCTowerAlg.h"
5 #include "./Cluster.h"
6 
9 #include "GaudiKernel/EventContext.h"
10 
11 GepTCTowerAlg::GepTCTowerAlg( const std::string& name, ISvcLocator* pSvcLocator ) :
12  AthReentrantAlgorithm( name, pSvcLocator ){
13 }
14 
15 
17 
18 
20  ATH_MSG_DEBUG ("Initializing " << name() << "...");
23 
24  return StatusCode::SUCCESS;
25 }
26 
28  ATH_MSG_DEBUG ("Finalizing " << name() << "...");
29  return StatusCode::SUCCESS;
30 }
31 
32 StatusCode GepTCTowerAlg::execute(const EventContext& context) const {
33  ATH_MSG_DEBUG ("Executing " << name() << "...");
34  setFilterPassed(false, context); //optional: start with algorithm not passed
35 
36  // read in clusters
37  auto h_caloClusters = SG::makeHandle(m_caloClustersKey, context);
38  CHECK(h_caloClusters.isValid());
39  ATH_MSG_DEBUG("Read in " << h_caloClusters->size() << " clusters");
40 
41  std::vector<Gep::Cluster> customClusters;
42 
43  for(auto iClus: *h_caloClusters){
44  Gep::Cluster clus;
45  clus.vec.SetPxPyPzE(iClus->p4().Px(), iClus->p4().Py(),
46  iClus->p4().Pz(), iClus->e());
47  customClusters.push_back(clus);
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 
62 
63  // Single loop over clusters to assign them to towers
64  for (const auto& cluster : customClusters) {
65  // Compute eta and phi indices
66  int eta_index = static_cast<int>(std::floor(cluster.vec.Eta() * 10)) + 49;
67  int phi_index = static_cast<int>(std::floor(cluster.vec.Phi() * 10)) + 32;
68 
69  // Ensure indices are within bounds
70  if (eta_index < 0 || eta_index >= nEta || phi_index < 0 || phi_index >= nPhi) continue;
71 
72  // Accumulate cluster data into the corresponding tower
73  tow[eta_index][phi_index].vec += cluster.vec;
74  }
75 
76  // Collect non-empty towers into a vector
77  std::vector<Gep::Cluster> customTowers;
78  for (int i = 0; i < nEta; ++i) {
79  for (int j = 0; j < nPhi; ++j) {
80  if (tow[i][j].vec.Et() > 0) {
81  customTowers.push_back(tow[i][j]);
82  }
83  }
84  }
85  delete[] tow;
86  // Store the Gep clusters to a CaloClusters, and write out.
87  h_outputCaloClusters->reserve(customTowers.size());
88 
89  for(const auto& gepclus: customTowers){
90  // store the calCluster to fix up the Aux container:
91  auto *ptr = h_outputCaloClusters->push_back(std::make_unique<xAOD::CaloCluster>());
92  ptr->setE(gepclus.vec.E());
93  ptr->setEta(gepclus.vec.Eta());
94  ptr->setPhi(gepclus.vec.Phi());
95  ptr->setTime(gepclus.time);
96  }
97 
98  setFilterPassed(true,context); //if got here, assume that means algorithm passed
99  return StatusCode::SUCCESS;
100 }
DataVector::reserve
void reserve(size_type n)
Attempt to preallocate enough memory for a specified number of elements.
GepTCTowerAlg::m_caloClustersKey
SG::ReadHandleKey< xAOD::CaloClusterContainer > m_caloClustersKey
Definition: GepTCTowerAlg.h:27
GepTCTowerAlg::GepTCTowerAlg
GepTCTowerAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: GepTCTowerAlg.cxx:11
GepTCTowerAlg::~GepTCTowerAlg
virtual ~GepTCTowerAlg()
Definition: GepTCTowerAlg.cxx:16
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
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
GepTCTowerAlg::initialize
virtual StatusCode initialize()
Definition: GepTCTowerAlg.cxx:19
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
GepTCTowerAlg::m_outputCaloClustersKey
SG::WriteHandleKey< xAOD::CaloClusterContainer > m_outputCaloClustersKey
Definition: GepTCTowerAlg.h:30
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
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
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.
GepTCTowerAlg::execute
virtual StatusCode execute(const EventContext &) const
Definition: GepTCTowerAlg.cxx:32
TrigVSI::AlgConsts::nEta
constexpr int nEta
Default bin number of eta for vertex map.
Definition: Trigger/TrigTools/TrigVrtSecInclusive/TrigVrtSecInclusive/Constants.h:26
GepTCTowerAlg::finalize
virtual StatusCode finalize()
Definition: GepTCTowerAlg.cxx:27
Gep::Cluster::vec
TLorentzVector vec
Definition: Trigger/TrigT1/TrigGepPerf/src/Cluster.h:36
GepTCTowerAlg.h