ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CellFinder.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 
6 #include "DiTauRec/CellFinder.h"
7 
8 CellFinder::CellFinder(const std::string& type,
9  const std::string& name,
10  const IInterface * parent) :
12  m_Rsubjet(0.2)
13 {
14  declareInterface<DiTauToolBase > (this);
15  declareProperty("Rsubjet", m_Rsubjet);
16 }
17 
18 
19 CellFinder::~CellFinder() = default;
20 
21 
23 
24  return StatusCode::SUCCESS;
25 }
26 
27 
29  const EventContext& /*ctx*/) const {
30 
31  ATH_MSG_DEBUG("execute CellFinder...");
32 
33  // get ditau and its seed jet
34 
35  xAOD::DiTauJet* pDiTau = data->xAODDiTau;
36  if (!pDiTau) {
37  ATH_MSG_ERROR("no di-tau candidate given");
38  return StatusCode::FAILURE;
39  }
40 
41  const xAOD::Jet* pSeed = data->seed;
42  if (!pSeed) {
43  ATH_MSG_WARNING("No jet seed given.");
44  return StatusCode::FAILURE;
45  }
46 
47  std::vector<fastjet::PseudoJet> vSubjets = data->subjets;
48  if (vSubjets.empty()) {
49  ATH_MSG_WARNING("No subjets given. Continue without cell information.");
50  return StatusCode::SUCCESS;
51  }
52 
53  // get clusters linked to the seed jet. Loop over clusters to get linked cells
54 
55  std::bitset<200000> cellSeen;
56  std::vector<const CaloCell*> subjetCells;
57 
58  // loop over seed jet constituents
59  for (const auto *const seedConst: pSeed->getConstituents()) {
60  // cast jet constituent to cluster object
61  const xAOD::CaloCluster* cluster = dynamic_cast<const xAOD::CaloCluster*>( seedConst->rawConstituent() );
62 
63  // loop over cells which are linked to the cluster
64  for (const auto *const cc : *(cluster->getCellLinks())) {
65  // skip if pt<0 or cell already encountered
66  if (cc->pt() < 0) continue;
67  if (cellSeen.test(cc->caloDDE()->calo_hash())) continue;
68  // register cell hash as already seen
69  cellSeen.set(cc->caloDDE()->calo_hash());
70 
71  TLorentzVector temp_cc_p4;
72  temp_cc_p4.SetPtEtaPhiM(cc->pt(), cc->eta(), cc->phi(), cc->m());
73 
74  // check if cell is in one of the subjets cones
75  for (const auto& subjet : vSubjets) {
76  TLorentzVector temp_sub_p4;
77  temp_sub_p4.SetPtEtaPhiM(subjet.pt(), subjet.eta(), subjet.phi_std(), subjet.m());
78  if (temp_cc_p4.DeltaR(temp_sub_p4) < m_Rsubjet) {
79  subjetCells.push_back(cc);
80  }
81  }
82  }
83  }
84 
85  ATH_MSG_DEBUG("subjetCells.size()=" << subjetCells.size());
86  data->subjetCells = subjetCells;
87 
88  return StatusCode::SUCCESS;
89 }
CellFinder::initialize
virtual StatusCode initialize() override
Tool initializer.
Definition: CellFinder.cxx:22
CellFinder::~CellFinder
virtual ~CellFinder()
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
FlavorTagDiscriminants::hbb_key::subjet
const std::string subjet
Definition: HbbConstants.h:18
CellFinder::execute
virtual StatusCode execute(DiTauCandidateData *data, const EventContext &ctx) const override
Execute - called for each Ditau candidate.
Definition: CellFinder.cxx:28
AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
Definition: AthCommonDataStore.h:145
CellFinder.h
xAOD::Jet_v1::getConstituents
JetConstituentVector getConstituents() const
Return a vector of consituents. The object behaves like vector<const IParticle*>. See JetConstituentV...
Definition: Jet_v1.cxx:147
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
xAOD::CaloCluster_v1
Description of a calorimeter cluster.
Definition: CaloCluster_v1.h:62
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
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
test_pyathena.parent
parent
Definition: test_pyathena.py:15
CellFinder::m_Rsubjet
float m_Rsubjet
Definition: CellFinder.h:29
CellFinder::CellFinder
CellFinder(const std::string &type, const std::string &name, const IInterface *parent)
Definition: CellFinder.cxx:8
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
DiTauToolBase
The base class for all tau tools.
Definition: DiTauToolBase.h:20
xAOD::Jet_v1
Class describing a jet.
Definition: Jet_v1.h:57
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
xAOD::DiTauJet_v1
Definition: DiTauJet_v1.h:31
DiTauCandidateData
Definition: DiTauCandidateData.h:15
python.handimod.cc
int cc
Definition: handimod.py:523