Loading [MathJax]/extensions/tex2jax.js
 |
ATLAS Offline Software
|
Go to the documentation of this file.
25 return StatusCode::SUCCESS;
30 return StatusCode::SUCCESS;
39 CHECK(h_caloClusters.isValid());
40 ATH_MSG_DEBUG(
"Read in " << h_caloClusters->size() <<
" clusters");
43 CHECK(h_caloCells.isValid());
44 auto cells = *h_caloCells;
49 CHECK(h_outputCaloClusters.
record(std::make_unique<xAOD::CaloClusterContainer>(),
50 std::make_unique<xAOD::CaloClusterAuxContainer>()));
53 static constexpr
int nEta{98};
54 static constexpr
int nPhi{64};
60 for (
const auto iClust : *h_caloClusters) {
64 for (; cellBegin != cellEnd; ++cellBegin) {
65 unsigned int cellIndex = cellBegin.
index();
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;
73 if (eta_index < 0 || eta_index >=
nEta || phi_index < 0 || phi_index >=
nPhi)
continue;
76 TLorentzVector cellVector;
77 cellVector.SetPtEtaPhiE(
cell->energy() * 1.0 / TMath::CosH(
cell->eta()),
79 tow[
eta_index][phi_index].vec += cellVector;
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]);
95 h_outputCaloClusters->
reserve(customTowers.size());
97 for(
const auto& gepclus: customTowers){
99 auto *
ptr = h_outputCaloClusters->
push_back(std::make_unique<xAOD::CaloCluster>());
101 ptr->setE(gepclus.vec.E());
102 ptr->setEta(gepclus.vec.Eta());
103 ptr->setPhi(gepclus.vec.Phi());
104 ptr->setTime(gepclus.time);
108 return StatusCode::SUCCESS;
void reserve(size_type n)
Attempt to preallocate enough memory for a specified number of elements.
virtual StatusCode finalize()
SG::ReadHandleKey< xAOD::CaloClusterContainer > m_caloClustersKey
virtual StatusCode execute(const EventContext &) const
std::vector< size_t > vec
unsigned index() const
Accessor for the index of the cell in the CaloCellContainer.
GepTopoTowerAlg(const std::string &name, ISvcLocator *pSvcLocator)
constexpr int nPhi
Default bin number of phi for vertex map.
Definition of CaloDetDescrManager.
An algorithm that can be simultaneously executed in multiple threads.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
::StatusCode StatusCode
StatusCode definition for legacy code.
#define CHECK(...)
Evaluate an expression and check for errors.
virtual ~GepTopoTowerAlg()
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
SG::WriteHandleKey< xAOD::CaloClusterContainer > m_outputCaloClustersKey
value_type push_back(value_type pElem)
Add an element to the end of the collection.
virtual void setFilterPassed(bool state, const EventContext &ctx) const
virtual StatusCode initialize()
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
Data object for each calorimeter readout cell.
SG::ReadHandleKey< Gep::GepCellMap > m_gepCellsKey
constexpr int nEta
Default bin number of eta for vertex map.
const_iterator to loop over cells belonging to a cluster
SG::ReadHandleKey< CaloCellContainer > m_caloCellsKey