|
ATLAS Offline Software
|
#include <CorrectPFOTool.h>
|
| CorrectPFOTool (const std::string &name) |
|
StatusCode | initialize () override final |
| Dummy implementation of the initialisation function. More...
|
|
StatusCode | process (xAOD::IParticleContainer *cont) const override final |
|
virtual void | print () const |
| Print the state of the tool. More...
|
|
ServiceHandle< StoreGateSvc > & | evtStore () |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | evtStore () const |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | detStore () const |
| The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
virtual StatusCode | sysInitialize () override |
| Perform system initialization for an algorithm. More...
|
|
virtual StatusCode | sysStart () override |
| Handle START transition. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| Return this algorithm's input handles. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| Return this algorithm's output handles. More...
|
|
Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T > &t) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc="none") |
| Declare a new Gaudi property. More...
|
|
void | updateVHKA (Gaudi::Details::PropertyBase &) |
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
|
StatusCode | setEtaPhi (xAOD::IParticle *obj, float eta, float phi) const |
|
StatusCode | setEnergyPt (xAOD::IParticle *obj, float e, float pt, const SG::AuxElement::Accessor< float > *weightAcc=nullptr) const |
|
StatusCode | setP4 (xAOD::IParticle *obj, const xAOD::JetFourMom_t &p4, const SG::AuxElement::Accessor< float > *weightAcc=nullptr) const |
|
void | renounceArray (SG::VarHandleKeyArray &handlesArray) |
| remove all handles from I/O resolution More...
|
|
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > | renounce (T &h) |
|
void | extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps) |
| Add StoreName to extra input/output deps as needed. More...
|
|
Applies various corrections to PFO
Properties: InputIsEM - If true, EM-scale is used for the neutral pflow CalibratePFO - If true the EM-scale pflow is calibrated
- Author
- Jennifer Roloff, John Stupak, and Steven Schramm - based on PFlowPseudoJetGetter by P-A Delsart, D. Adams
Definition at line 32 of file CorrectPFOTool.h.
◆ StoreGateSvc_t
◆ CorrectPFOTool()
CorrectPFOTool::CorrectPFOTool |
( |
const std::string & |
name | ) |
|
Definition at line 13 of file CorrectPFOTool.cxx.
29 "Datahandle key for the primary vertex container");
◆ applyChargedCorrection() [1/2]
◆ applyChargedCorrection() [2/2]
StatusCode CorrectPFOTool::applyChargedCorrection |
( |
xAOD::PFO & |
pfo | ) |
const |
|
private |
◆ applyNeutralCorrection() [1/2]
Definition at line 292 of file CorrectPFOTool.cxx.
293 if (pfo.
e() < FLT_MIN) {
300 return StatusCode::SUCCESS;
◆ applyNeutralCorrection() [2/2]
Definition at line 273 of file CorrectPFOTool.cxx.
274 if (pfo.
e() < FLT_MIN) {
289 return StatusCode::SUCCESS;
◆ correctPFO() [1/2]
◆ correctPFO() [2/2]
Definition at line 101 of file CorrectPFOTool.cxx.
107 ATH_MSG_ERROR(
"Primary vertex container was empty or no valid vertex found!");
108 return StatusCode::FAILURE;
110 ATH_MSG_VERBOSE(
"No genuine primary vertex found. Will not apply origin correction");
116 if ( std::abs(ppfo->charge())<FLT_MIN) {
127 return StatusCode::SUCCESS;
◆ correctPFOByVertex() [1/2]
◆ correctPFOByVertex() [2/2]
Definition at line 159 of file CorrectPFOTool.cxx.
163 if (!handle.isValid()){
165 return StatusCode::FAILURE;
170 ATH_MSG_WARNING(
" Failed to retrieve valid primary vertex container" );
171 return StatusCode::FAILURE;
176 if ( std::abs(ppfo->charge())<FLT_MIN) {
180 if (!copyIndex.isAvailable(*ppfo))
182 ATH_MSG_WARNING(
"Encountered a neutral per-vertex PFO object without the corresponding vertex index attribute");
186 const unsigned iVtx = copyIndex(*ppfo);
187 if (iVtx >= pvtxs->
size())
189 ATH_MSG_WARNING(
"Encountered a neutral per-vertex PFO object with an index beyond the size of the vertex container");
197 if (ppfo->e() < FLT_MIN) {
198 ppfo->setP4(0, 0, 0, 0);
201 ppfo->setP4(ppfo->GetVertexCorrectedFourVec(*vtx));
203 ppfo->setP4(ppfo->GetVertexCorrectedEMFourVec(*vtx));
214 return StatusCode::SUCCESS;
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
253 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
229 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey
. It just forwards to the base class version of declareProperty
.
Definition at line 333 of file AthCommonDataStore.h.
338 return PBASE::declareProperty(
name, property,
doc);
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This dispatches to either the generic declareProperty
or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ extraDeps_update_handler()
Add StoreName to extra input/output deps as needed.
use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given
◆ getKey()
Get the (hashed) key of an object that is in the event store.
This is a bit of a special one. StoreGateSvc
and xAOD::TEvent
both provide ways for getting the SG::sgkey_t
key for an object that is in the store, based on a bare pointer. But they provide different interfaces for doing so.
In order to allow tools to efficiently perform this operation, they can use this helper function.
- See also
- asg::AsgTool::getName
- Parameters
-
ptr | The bare pointer to the object that the event store should know about |
- Returns
- The hashed key of the object in the store. If not found, an invalid (zero) key.
Definition at line 119 of file AsgTool.cxx.
121 #ifdef XAOD_STANDALONE
127 return (
proxy ==
nullptr ? 0 :
proxy->sgkey() );
128 #endif // XAOD_STANDALONE
◆ getName()
const std::string & asg::AsgTool::getName |
( |
const void * |
ptr | ) |
const |
|
inherited |
Get the name of an object that is / should be in the event store.
This is a bit of a special one. StoreGateSvc
and xAOD::TEvent
both provide ways for getting the std::string
name for an object that is in the store, based on a bare pointer. But they provide different interfaces for doing so.
In order to allow tools to efficiently perform this operation, they can use this helper function.
- See also
- asg::AsgTool::getKey
- Parameters
-
ptr | The bare pointer to the object that the event store should know about |
- Returns
- The string name of the object in the store. If not found, an empty string.
Definition at line 106 of file AsgTool.cxx.
108 #ifdef XAOD_STANDALONE
114 static const std::string
dummy =
"";
116 #endif // XAOD_STANDALONE
◆ getPrimaryVertex()
Definition at line 66 of file CorrectPFOTool.cxx.
69 if (!handle.isValid()){
82 for (
const auto *theVertex : *pvtxs) {
89 ATH_MSG_DEBUG(
"Could not find a primary vertex in this event " );
90 for (
const auto *theVertex : *pvtxs) {
◆ getProperty()
template<class T >
const T* asg::AsgTool::getProperty |
( |
const std::string & |
name | ) |
const |
|
inherited |
Get one of the tool's properties.
◆ initialize()
StatusCode CorrectPFOTool::initialize |
( |
| ) |
|
|
finaloverridevirtual |
Dummy implementation of the initialisation function.
It's here to allow the dual-use tools to skip defining an initialisation function. Since many are doing so...
Reimplemented from asg::AsgTool.
Definition at line 32 of file CorrectPFOTool.cxx.
35 return StatusCode::FAILURE;
38 ATH_MSG_ERROR(
"CorrectPFOTool requires PFO inputs. It cannot operate on objects of type "
40 return StatusCode::FAILURE;
48 return StatusCode::SUCCESS;
◆ inputHandles()
Return this algorithm's input handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ msg() [1/2]
◆ msg() [2/2]
◆ msg_level_name()
const std::string & asg::AsgTool::msg_level_name |
( |
| ) |
const |
|
inherited |
A deprecated function for getting the message level's name.
Instead of using this, weirdly named function, user code should get the string name of the current minimum message level (in case they really need it...), with:
MSG::name( msg().level() )
This function's name doesn't follow the ATLAS coding rules, and as such will be removed in the not too distant future.
- Returns
- The string name of the current minimum message level that's printed
Definition at line 101 of file AsgTool.cxx.
◆ msgLvl()
◆ outputHandles()
Return this algorithm's output handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ print()
void asg::AsgTool::print |
( |
| ) |
const |
|
virtualinherited |
Print the state of the tool.
Implements asg::IAsgTool.
Reimplemented in JetRecTool, JetFinder, JetModifiedMassDrop, JetFromPseudojet, JetReclusterer, JetReclusteringTool, JetTruthLabelingTool, JetPileupLabelingTool, HI::HIPileupTool, JetDumper, JetBottomUpSoftDrop, JetRecursiveSoftDrop, JetSoftDrop, JetConstituentsRetriever, JetSubStructureMomentToolsBase, JetSplitter, JetToolRunner, JetPruner, JetPseudojetRetriever, JetTrimmer, AsgHelloTool, and KtDeltaRTool.
Definition at line 131 of file AsgTool.cxx.
◆ process()
|
finaloverridevirtualinherited |
◆ process_impl()
|
finaloverrideprivatevirtual |
◆ renounce()
◆ renounceArray()
◆ setEnergyPt()
Definition at line 61 of file JetConstituentModifierBase.cxx.
70 if(weightAcc) (*weightAcc)(*clus) = clus->
calE() > 0. ?
e / clus->calE() : 0.;
79 if(weightAcc) (*weightAcc)(*pfo) = pfo->
pt() > 0. ?
pt / pfo->pt() : 0.;
82 pfo->setP4(
pt, pfo->eta(), pfo->phi());
91 if(weightAcc) (*weightAcc)(*pfo) = pfo->
pt() > 0. ?
pt / pfo->pt() : 0.;
92 pfo->setP4(
pt, pfo->eta(), pfo->phi(), 0.);
99 if( tcc->
taste() != 0) {
100 if(weightAcc) (*weightAcc)(*tcc) = tcc->
pt() > 0. ?
pt / tcc->pt() : 0.;
101 tcc->setParameters(
pt, tcc->eta(), tcc->phi(), tcc->m(),
xAOD::TrackCaloCluster::Taste(tcc->taste()), tcc->trackParticleLink(), tcc->caloClusterLinks());
108 return StatusCode::FAILURE;
110 return StatusCode::SUCCESS;
◆ setEtaPhi()
StatusCode JetConstituentModifierBase::setEtaPhi |
( |
xAOD::IParticle * |
obj, |
|
|
float |
eta, |
|
|
float |
phi |
|
) |
| const |
|
protectedinherited |
◆ setP4()
Definition at line 113 of file JetConstituentModifierBase.cxx.
120 if(weightAcc) (*weightAcc)(*clus) = clus->
calE() > 0. ? p4.e() / clus->calE() : 0.;
121 clus->setCalE(p4.e());
122 clus->setCalEta(p4.eta());
123 clus->setCalPhi(p4.phi());
132 if(weightAcc) (*weightAcc)(*pfo) = pfo->
pt() > 0. ? p4.pt() / pfo->pt() : 0.;
133 pfo->setP4(p4.pt(),p4.eta(),p4.phi(),p4.mass());
142 if(weightAcc) (*weightAcc)(*pfo) = pfo->
pt() > 0. ? p4.pt() / pfo->pt() : 0.;
143 pfo->setP4(p4.pt(),p4.eta(),p4.phi(),p4.mass());
150 if( tcc->
taste() != 0) {
151 if(weightAcc) (*weightAcc)(*tcc) = tcc->
pt() > 0. ? p4.pt() / tcc->pt() : 0.;
152 tcc->setParameters(p4.pt(), p4.eta(), p4.phi(), p4.mass(),
xAOD::TrackCaloCluster::Taste(tcc->taste()), tcc->trackParticleLink(), tcc->caloClusterLinks());
160 return StatusCode::FAILURE;
162 return StatusCode::SUCCESS;
◆ sysInitialize()
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ updateVHKA()
◆ m_applyToChargedPFO
bool JetConstituentModifierBase::m_applyToChargedPFO =true |
|
protectedinherited |
◆ m_applyToNeutralPFO
bool JetConstituentModifierBase::m_applyToNeutralPFO =true |
|
protectedinherited |
◆ m_calibrate
bool CorrectPFOTool::m_calibrate |
|
private |
If true EM clusters are used for neutral PFOs.
Definition at line 59 of file CorrectPFOTool.h.
◆ m_correctcharged
bool CorrectPFOTool::m_correctcharged |
|
private |
◆ m_correctneutral
bool CorrectPFOTool::m_correctneutral |
|
private |
◆ m_detStore
◆ m_doByVertex
bool CorrectPFOTool::m_doByVertex |
|
private |
◆ m_evtStore
◆ m_inputIsEM
bool CorrectPFOTool::m_inputIsEM |
|
private |
◆ m_inputType
unsigned int JetConstituentModifierBase::m_inputType =xAOD::Type::Other |
|
protectedinherited |
◆ m_useChargedWeights
bool CorrectPFOTool::m_useChargedWeights |
|
private |
◆ m_varHandleArraysDeclared
◆ m_vertexContainer_key
◆ m_vhka
◆ m_weightPFOTool
The documentation for this class was generated from the following files:
virtual double pt() const
The transverse momentum ( ) of the particle.
Scalar phi() const
phi method
JetConstituentModifierBase(const std::string &name)
Helper class to provide type-safe access to aux data.
Scalar eta() const
pseudorapidity method
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
flt_t calE() const
Geet Energy in signal state CALIBRATED.
Class describing a TrackCaloCluster.
virtual StatusCode process_impl(xAOD::IParticleContainer *) const
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
void setCalEta(flt_t)
Set for signal state CALIBRATED.
virtual double pt() const override
#define ATH_MSG_VERBOSE(x)
VxType::VertexType vertexType() const
The type of the vertex.
@ NoVtx
Dummy vertex. TrackParticle was not used in vertex fit.
TLorentzVector GetVertexCorrectedFourVec(const xAOD::Vertex &vertexToCorrectTo) const
Correct 4-vector to point at a vertex.
CaloCluster_v1 CaloCluster
Define the latest version of the calorimeter cluster class.
FourMom_t p4EM() const
get EM scale 4-vector
virtual void setOwner(IDataHandleHolder *o)=0
TrackCaloCluster_v1 TrackCaloCluster
Reference the current persistent version:
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
virtual double pt() const
The transverse momentum ( ) of the particle.
virtual double e() const
The total energy of the particle.
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Description of a calorimeter cluster.
void setCalPhi(flt_t)
Set for signal state CALIBRATED.
FlowElement_v1 FlowElement
Definition of the current "pfo version".
const T * front() const
Access the first element in the collection as an rvalue.
virtual FourMom_t p4() const
The full 4-momentum of the particle.
@ ParticleFlow
The object is a particle-flow object.
const std::string & name(Level lvl)
Convenience function for translating message levels to strings.
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
bool isCharged() const
is a charged PFO
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
Class describing a particle flow object.
virtual double e() const override
The total energy of the particle.
virtual int taste() const
The taste of the particle.
void setP4(const FourMom_t &vec)
set the 4-vec
virtual FourMom_t p4() const override
The full 4-momentum of the particle.
Class describing a Vertex.
#define ATH_MSG_WARNING(x)
Taste
Type of TrackCaloCluster - Charged - Neutral - Combined.
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
void setP4(float pt, float eta, float phi, float m)
const T * at(size_type n) const
Access an element, as an rvalue.
TLorentzVector GetVertexCorrectedEMFourVec(const xAOD::Vertex &vertexToCorrectTo) const
Correct EM scale 4-vector to point at a vertex.
TLorentzVector getVertexCorrectedFourVec(const xAOD::FlowElement &fe, const xAOD::Vertex &vertexToCorrectTo)
size_type size() const noexcept
Returns the number of elements in the collection.
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
bool empty() const noexcept
Returns true if the collection is empty.
A detector object made of other lower level object(s)