Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
EGSelectionToolWrapper.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 // EGSelectionToolWrapper.cxx, (c) ATLAS Detector software
8 // Author: Giovanni Marchiori (giovanni.marchiori@cern.ch)
9 //
10 
12 #include "PATCore/AcceptData.h"
15 #include "xAODEgamma/Electron.h"
16 #include "xAODEgamma/Photon.h"
17 
18 namespace DerivationFramework {
19 
21  const std::string& n,
22  const IInterface* p)
23  : AthAlgTool(t, n, p)
24 {
25  declareInterface<DerivationFramework::IAugmentationTool>(this);
26 }
27 
30 {
31  if (m_sgName.empty()) {
33  "No SG name provided for the output of EGElectronLikelihoodToolWrapper!");
34  return StatusCode::FAILURE;
35  }
36  ATH_CHECK(m_tool.retrieve());
37 
38  if (!(m_fudgeMCTool.name().empty())) {
39  ATH_CHECK(m_fudgeMCTool.retrieve());
40  } else {
41  m_fudgeMCTool.disable();
42  }
43 
44  ATH_CHECK(m_ContainerName.initialize());
45  //
47  m_decoratorIsEM = m_ContainerName.key() + "." + m_sgName + "IsEMValue";
48  ATH_CHECK(m_decoratorPass.initialize());
49  ATH_CHECK(m_decoratorIsEM.initialize());
50 
51  return StatusCode::SUCCESS;
52 }
53 
56 {
57  // retrieve container
58  const EventContext& ctx = Gaudi::Hive::currentContext();
60 
61  // Decorators
63  m_decoratorPass, ctx
64  };
66  m_decoratorIsEM, ctx
67  };
68 
69  // If we're applying corrections, the correction tools will give us
70  // copies that we need to keep track of. (We want to do all the copies
71  // before we start writing decorations, to avoid warnings about having
72  // unlocked decorations in a copy).
73  // The copies we get back from the tool will have standalone aux stores.
74  // We'll put them in a DataVector to get them deleted, but we don't
75  // need to copy the aux data to the container, so construct it with
76  // @c NEVER_TRACK_INDICES.
78  if (!m_fudgeMCTool.empty()) {
79  pCopies.reserve (particles->size());
80  for (const xAOD::Egamma* par : *particles) {
82  // apply the shower shape corrections
84  xAOD::Egamma* pCopy = nullptr;
85  if (type == xAOD::Type::Electron) {
86  const xAOD::Electron* eg = static_cast<const xAOD::Electron*>(par);
87  xAOD::Electron* el = nullptr;
88  correctionCode = m_fudgeMCTool->correctedCopy(*eg, el);
89  pCopy = el;
90  } else {
91  const xAOD::Photon* eg = static_cast<const xAOD::Photon*>(par);
92  xAOD::Photon* ph = nullptr;
93  correctionCode = m_fudgeMCTool->correctedCopy(*eg, ph);
94  pCopy = ph;
95  }
96  if (correctionCode == CP::CorrectionCode::Ok) {
97  // all OK
98  } else if (correctionCode == CP::CorrectionCode::OutOfValidityRange) {
99  Warning(
100  "addBranches()",
101  "Current photon has no valid fudge factors due to out-of-range");
102  } else {
103  Warning(
104  "addBranches()",
105  "Unknown correction code %d from ElectronPhotonShowerShapeFudgeTool",
106  (int)correctionCode);
107  }
108  pCopies.push_back (pCopy);
109  }
110  }
111  else {
112  pCopies.resize (particles->size());
113  }
114 
115  // Write mask for each element and record to SG for subsequent selection
116  for (size_t ipar = 0; const xAOD::Egamma* par : *particles) {
117  const xAOD::Egamma* pCopy = pCopies[ipar++];
118  if (!pCopy) pCopy = par;
119 
120  // compute the output of the selector
121  asg::AcceptData theAccept(m_tool->accept(ctx, pCopy));
122  unsigned int isEM = (unsigned int)theAccept.getCutResultInvertedBitSet()
123  .to_ulong(); // this should work for both the
124  // cut-based and the LH selectors
125 
126  // decorate the original object
127  if (m_cut == "") {
128  bool pass_selection = (bool)theAccept;
129  if (pass_selection) {
130  decoratorPass(*par) = 1;
131  } else {
132  decoratorPass(*par) = 0;
133  }
134  decoratorIsEM(*par) = isEM;
135  } else {
136  if (theAccept.getCutResult(m_cut)) {
137  decoratorPass(*par) = 1;
138  } else {
139  decoratorPass(*par) = 0;
140  }
141  decoratorIsEM(*par) = isEM;
142  }
143  }
144 
145  return StatusCode::SUCCESS;
146 }
147 }
DataVector::reserve
void reserve(size_type n)
Attempt to preallocate enough memory for a specified number of elements.
asg::AcceptData::getCutResultInvertedBitSet
std::bitset< NBITS > getCutResultInvertedBitSet() const
Get an inverted bitset of the cut result.
Definition: AcceptData.h:119
xAOD::Electron
Electron_v1 Electron
Definition of the current "egamma version".
Definition: Event/xAOD/xAODEgamma/xAODEgamma/Electron.h:17
ParticleTest.eg
eg
Definition: ParticleTest.py:29
ObjectType
ObjectType
Definition: BaseObject.h:11
DerivationFramework::EGSelectionToolWrapper::EGSelectionToolWrapper
EGSelectionToolWrapper(const std::string &t, const std::string &n, const IInterface *p)
Definition: EGSelectionToolWrapper.cxx:20
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
SG::NEVER_TRACK_INDICES
@ NEVER_TRACK_INDICES
Never track indices, regardless of the setting of the ownership policy.
Definition: IndexTrackingPolicy.h:46
DerivationFramework::EGSelectionToolWrapper::m_decoratorIsEM
SG::WriteDecorHandleKey< xAOD::EgammaContainer > m_decoratorIsEM
Definition: EGSelectionToolWrapper.h:63
xAOD::Egamma_v1
Definition: Egamma_v1.h:56
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
DerivationFramework::EGSelectionToolWrapper::m_decoratorPass
SG::WriteDecorHandleKey< xAOD::EgammaContainer > m_decoratorPass
Definition: EGSelectionToolWrapper.h:61
DerivationFramework::EGSelectionToolWrapper::m_tool
ToolHandle< IAsgEGammaIsEMSelector > m_tool
Definition: EGSelectionToolWrapper.h:43
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
DerivationFramework::EGSelectionToolWrapper::initialize
virtual StatusCode initialize() override final
Definition: EGSelectionToolWrapper.cxx:29
EgammaContainer.h
DerivationFramework::EGSelectionToolWrapper::m_cut
Gaudi::Property< std::string > m_cut
Definition: EGSelectionToolWrapper.h:64
CP::CorrectionCode::OutOfValidityRange
@ OutOfValidityRange
Input object is out of validity range.
Definition: CorrectionCode.h:37
python.utils.AtlRunQueryDQUtils.p
p
Definition: AtlRunQueryDQUtils.py:210
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
SG::OWN_ELEMENTS
@ OWN_ELEMENTS
this data object owns its elements
Definition: OwnershipPolicy.h:17
DerivationFramework::EGSelectionToolWrapper::m_sgName
Gaudi::Property< std::string > m_sgName
Definition: EGSelectionToolWrapper.h:66
beamspotman.n
n
Definition: beamspotman.py:731
Photon.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IParticleContainer.h
SG::WriteDecorHandle
Handle class for adding a decoration to an object.
Definition: StoreGate/StoreGate/WriteDecorHandle.h:100
python.LArMinBiasAlgConfig.int
int
Definition: LArMinBiasAlgConfig.py:59
plotIsoValidation.el
el
Definition: plotIsoValidation.py:197
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
DerivationFramework
THE reconstruction tool.
Definition: ParticleSortingAlg.h:24
DataVector
Derived DataVector<T>.
Definition: DataVector.h:794
AcceptData.h
DerivationFramework::EGSelectionToolWrapper::m_ContainerName
SG::ReadHandleKey< xAOD::EgammaContainer > m_ContainerName
Definition: EGSelectionToolWrapper.h:52
DerivationFramework::EGSelectionToolWrapper::addBranches
virtual StatusCode addBranches() const override final
Pass the thinning service
Definition: EGSelectionToolWrapper.cxx:55
DataVector::resize
void resize(size_type sz)
Resizes the collection to the specified number of elements.
createCoolChannelIdFile.par
par
Definition: createCoolChannelIdFile.py:29
DataVector::push_back
value_type push_back(value_type pElem)
Add an element to the end of the collection.
xAOD::Electron_v1
Definition: Electron_v1.h:34
CP::CorrectionCode::Ok
@ Ok
The correction was done successfully.
Definition: CorrectionCode.h:38
xAOD::Photon_v1
Definition: Photon_v1.h:37
asg::AcceptData::getCutResult
bool getCutResult(const std::string &cutName) const
Get the result of a cut, based on the cut name (safer)
Definition: AcceptData.h:98
CP::CorrectionCode
Return value from object correction CP tools.
Definition: CorrectionCode.h:31
LArG4FSStartPointFilter.particles
list particles
Definition: LArG4FSStartPointFilter.py:84
Electron.h
DerivationFramework::EGSelectionToolWrapper::m_fudgeMCTool
ToolHandle< IElectronPhotonShowerShapeFudgeTool > m_fudgeMCTool
Definition: EGSelectionToolWrapper.h:50
AthAlgTool
Definition: AthAlgTool.h:26
asg::AcceptData
Definition: AcceptData.h:30
EGSelectionToolWrapper.h
xAOD::bool
setBGCode setTAP setLVL2ErrorBits bool
Definition: TrigDecision_v1.cxx:60