9 #include "GaudiKernel/EventContext.h"
24 return StatusCode::SUCCESS;
29 return StatusCode::SUCCESS;
38 CHECK(h_caloClusters.isValid());
39 ATH_MSG_DEBUG(
"Read in " << h_caloClusters->size() <<
" clusters");
41 std::vector<Gep::Cluster> customClusters;
43 for(
auto iClus: *h_caloClusters){
45 clus.
vec.SetPxPyPzE(iClus->p4().Px(), iClus->p4().Py(),
46 iClus->p4().Pz(), iClus->e());
47 customClusters.push_back(clus);
53 CHECK(h_outputCaloClusters.
record(std::make_unique<xAOD::CaloClusterContainer>(),
54 std::make_unique<xAOD::CaloClusterAuxContainer>()));
57 static constexpr
int nEta{98};
58 static constexpr
int nPhi{64};
64 for (
const auto& cluster : customClusters) {
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;
70 if (eta_index < 0 || eta_index >=
nEta || phi_index < 0 || phi_index >=
nPhi)
continue;
73 tow[
eta_index][phi_index].vec += cluster.vec;
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]);
87 h_outputCaloClusters->
reserve(customTowers.size());
89 for(
const auto& gepclus: customTowers){
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);
99 return StatusCode::SUCCESS;