|
| | ASG_TOOL_CLASS (StableDeltaRMatchingTool_trk, ITrackMatchingTool) |
| | StableDeltaRMatchingTool_trk (const std::string &name) |
| | Constructor.
|
| virtual StatusCode | match (TrackAnalysisCollections &trkAnaColls, const std::string &chainRoIName, const std::string &roiStr) const override |
| | General matching method, via TrackAnalysisCollections.
|
| virtual StatusCode | match (const std::vector< const xAOD::TrackParticle * > &vTest, const std::vector< const xAOD::TrackParticle * > &vRef, ITrackMatchingLookup &matches) const override |
| | Specific matching methods, via test/reference vectors.
|
| virtual StatusCode | match (const std::vector< const xAOD::TrackParticle * > &, const std::vector< const xAOD::TruthParticle * > &, ITrackMatchingLookup &) const override |
| | track -> truth matching (disabled)
|
| virtual StatusCode | match (const std::vector< const xAOD::TruthParticle * > &, const std::vector< const xAOD::TrackParticle * > &, ITrackMatchingLookup &) const override |
| | truth -> track matching (disabled)
|
| virtual StatusCode | initialize () override |
| | Initialize.
|
| virtual StatusCode | matchVectors (const std::vector< const xAOD::TrackParticle * > &vTest, const std::vector< const xAOD::TrackParticle * > &vRef, ITrackMatchingLookup &matches) const |
| | matchVectors
|
| virtual void | print () const |
| | Print the state of the tool.
|
| ServiceHandle< StoreGateSvc > & | evtStore () |
| | The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
|
| const ServiceHandle< StoreGateSvc > & | detStore () const |
| | The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
|
| virtual StatusCode | sysInitialize () override |
| | Perform system initialization for an algorithm.
|
| virtual StatusCode | sysStart () override |
| | Handle START transition.
|
| virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| | Return this algorithm's input handles.
|
| virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| | Return this algorithm's output handles.
|
| Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< xAOD::TrackParticle, V, H > &t) |
| void | updateVHKA (Gaudi::Details::PropertyBase &) |
| MsgStream & | msg () const |
| bool | msgLvl (const MSG::Level lvl) const |
| | ASG_TOOL_INTERFACE (IDTPM::ITrackMatchingTool) |
| const xAOD::TrackParticle * | getProperty (const std::string &name) const |
| | Get one of the tool's properties.
|
| const std::string & | msg_level_name () const __attribute__((deprecated)) |
| | A deprecated function for getting the message level's name.
|
| const std::string & | getName (const void *ptr) const |
| | Get the name of an object that is / should be in the event store.
|
| SG::sgkey_t | getKey (const void *ptr) const |
| | Get the (hashed) key of an object that is in the event store.
|
|
| virtual float | distance (const xAOD::TrackParticle &t, const xAOD::TrackParticle &r) const override |
| void | buildDistanceMatrix (const std::vector< const xAOD::TrackParticle * > &vTest, const std::vector< const xAOD::TrackParticle * > &vRef, std::vector< std::vector< float > > &dist) const |
| void | buildPreferenceLists (const std::vector< std::vector< float > > &dist, std::vector< std::vector< int > > &testPrefs, std::vector< std::vector< int > > &refRankings) const |
| void | galeShapley (const std::vector< std::vector< int > > &testPrefs, const std::vector< std::vector< int > > &refRankings, const std::vector< std::vector< float > > &dist, std::vector< int > &testMatch, std::vector< int > &refMatch) const |
| void | renounceArray (SG::VarHandleKeyArray &handlesArray) |
| | remove all handles from I/O resolution
|
| std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&xAOD::TrackParticle::renounce)(xAOD::TrackParticle)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, xAOD::TrackParticle > &&std::is_base_of_v< Gaudi::DataHandle, xAOD::TrackParticle >, void > | renounce (xAOD::TrackParticle &h) |
| void | extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps) |
| | Add StoreName to extra input/output deps as needed.
|
---— Track -> Track Stable Matching ---—
Definition at line 57 of file StableDeltaRMatchingTool.h.
| 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 105 of file AsgTool.cxx.
106 {
107
108#ifdef XAOD_STANDALONE
109
110
112#else
116#endif
117 }
| 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 86 of file AsgTool.cxx.
101 {
102
104 }
const std::string & name(Level lvl)
Convenience function for translating message levels to strings.