25 return StatusCode::SUCCESS;
30 return StatusCode::SUCCESS;
37 std::vector<Gep::GepCaloCell>
cells;
40 CHECK(h_gepCellsMap.isValid());
41 auto gepCellsMap = *h_gepCellsMap;
43 auto cell_map = gepCellsMap.getCellMap();
46 for (
auto const& cell_itr : *cell_map) {
47 cells.push_back(cell_itr.second);
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};
63 if (
cell.sigma < 2)
continue;
64 if (
cell.isBadCell())
continue;
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;
71 if (eta_index < 0 || eta_index >=
nEta || phi_index < 0 || phi_index >=
nPhi)
continue;
74 TLorentzVector cellsVector;
76 tow[
eta_index][phi_index].vec += cellsVector;
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]);
90 h_outputCaloClusters->
reserve(customTowers.size());
92 for(
const auto& gepclus: customTowers){
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);
102 return StatusCode::SUCCESS;