![]() |
ATLAS Offline Software
|
The TrigMatchTool is an athena tool used to match reconstructed objects to trigger objects and chains. More...
#include <TrigMatchTool.h>
Public Member Functions | |
TrigMatchTool (const std::string &type, const std::string &name, const IInterface *parent) | |
virtual StatusCode | initialize () override |
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 |
template<typename trigType > | |
std::vector< const trigType * > | getTriggerObjects (const std::string &chainName, bool onlyPassedFeatures) const |
getTriggerObjects returns the objects of the specified type from the specified chain. More... | |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | matchToTriggerObjects (const baseType *baseObject, const std::string &chainName, float maxDistance, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
matchToTriggerObjects returns the objects of type trigType from chain chainName, which match to baseObject, sorted by distance from baseObject according to metric. More... | |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | matchToTriggerObjects (const baseType *baseObject, const std::string &chainName, float maxDistance=0.1, bool onlyPassedFeatures=false) const |
template<typename trigType , typename baseType > | |
const trigType * | matchToTriggerObject (const baseType *baseObject, const std::string &chainName, float maxDistance, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
matchToTriggerObject returns the object of type trigType from chain chainName, which has the lowest distance to baseObject according to metric. More... | |
template<typename trigType , typename baseType > | |
const trigType * | matchToTriggerObject (const baseType *baseObject, const std::string &chainName, float maxDistance=0.1, bool onlyPassedFeatures=false) const |
template<typename trigType , typename baseType > | |
const trigType * | matchToTriggerObject (const baseType *, const std::string &, bool) const |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | matchedTriggerObjects (const DataVector< baseType > &baseObjects, const std::string &chainName, float maxDistance, bool onlyBestMatch, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
matchedTriggerObjects returns a vector of trigger objects from chain chainName that match to one or more of the objects passed according to the matching criteria specified. More... | |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | matchedTriggerObjects (const DataVector< baseType > &baseObjects, const std::string &chainName, float maxDistance=0.1, bool onlyBestMatch=true, bool onlyPassedFeatures=false) const |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | matchedTriggerObjects (const std::vector< const baseType * > &baseObjects, const std::string &chainName, float maxDistance, bool onlyBestMatch, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | matchedTriggerObjects (const std::vector< const baseType * > &baseObjects, const std::string &chainName, float maxDistance=0.1, bool onlyBestMatch=true, bool onlyPassedFeatures=false) const |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | unmatchedTriggerObjects (const DataVector< baseType > &baseObjects, const std::string &chainName, float maxDistance, bool onlyBestMatch, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
unmatchedTriggerObjects returns a vector of trigger objects from chain chainName that do not match to any of the objects passed according to the matching criteria specified. More... | |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | unmatchedTriggerObjects (const DataVector< baseType > &baseObjects, const std::string &chainName, float maxDistance=0.1, bool onlyBestMatch=true, bool onlyPassedFeatures=false) const |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | unmatchedTriggerObjects (const std::vector< const baseType * > &baseObjects, const std::string &chainName, float maxDistance, bool onlyBestMatch, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | unmatchedTriggerObjects (const std::vector< const baseType * > &baseObjects, const std::string &chainName, float maxDistance=0.1, bool onlyBestMatch=true, bool onlyPassedFeatures=false) const |
template<typename trigType , typename baseType > | |
bool | chainPassedByObject (const baseType *baseObject, const std::string &chainName, float maxDistance, const DistanceFunctor< trigType, baseType > *metric) const |
chainPassedByObject returns true if the supplied object matches a trigger object of type trigType in the supplied chain, associated with an active TE, and false otherwise. More... | |
template<typename trigType , typename baseType > | |
bool | chainPassedByObject (const baseType *baseObject, const std::string &chainName, float maxDistance=0.1) const |
template<typename trigType , typename baseType > | |
std::vector< std::string > | chainsPassedByObject (const baseType *baseObject, float maxDistance, const DistanceFunctor< trigType, baseType > *metric) const |
chainsPassedByObject returns a list of the chains which are marked as passed in the navigation, and in which the supplied recoObject matches an object of type trigType with distance, as calculated by metric, of less than maxDistance. More... | |
template<typename trigType , typename baseType > | |
std::vector< std::string > | chainsPassedByObject (const baseType *baseObject, float maxDistance=0.1) const |
template<typename trigType , typename baseType > | |
std::vector< const baseType * > | objectsInChain (const std::vector< const baseType * > &baseObjects, const std::string &chainName, bool onlyPassedFeatures, float maxDistance, const DistanceFunctor< trigType, baseType > *metric) const |
objectsInChain returns a container of reco objects which match to objects of type trigType in the specified chain, where a match is defined by a distance, according to the supplied metric, of less than maxDistance. More... | |
template<typename trigType , typename baseType > | |
std::vector< const baseType * > | objectsInChain (const std::vector< const baseType * > &baseObjects, const std::string &chainName, bool onlyPassedFeatures=false, float maxDistance=0.1) const |
template<typename trigType , typename baseType > | |
std::map< const trigType *, std::vector< std::string > > | matchToAllTriggerObjects (const baseType *baseObject, float maxDistance, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
matchToAllObjects returns a map from matched objects to the chains they were found in. More... | |
template<typename trigType , typename baseType > | |
std::map< const trigType *, std::vector< std::string > > | matchToAllTriggerObjects (const baseType *baseObject, float maxDistance=0.1, bool onlyPassedFeatures=false) const |
TrigMatchToolCore::FeatureLabelHolder | setFeatureLabel (const std::string &label) |
setFeatureLabel is used to set the label to be used when extracting features from the navigation. More... | |
template<typename T , typename U > | |
float | distance (const T *t, const U *u, const DistanceFunctor< T, U > *metric) const |
distance returns the distance between the two supplied objects using metric, if available, or the default metric, if not. More... | |
template<typename T , typename U > | |
float | distance (const T *t, const U *u) const |
template<typename T , typename U > | |
std::vector< const T * > | matchToObjects (const U *matchObject, const std::vector< const T * > &targetObjects, float maxDistance, const DistanceFunctor< T, U > *metric) const |
matchToObjects returns the objects of type T from the supplied vector that match to matchObject, sorted by distance from the matchObject according to metric. More... | |
template<typename T , typename U > | |
std::vector< const T * > | matchToObjects (const U *matchObject, const std::vector< const T * > &targetObjects, float maxDistance=0.1) const |
template<typename T , typename U > | |
std::vector< const T * > | matchToObjects (const U *matchObject, const DataVector< T > &targetObjects, float maxDistance, const DistanceFunctor< T, U > *metric) const |
template<typename T , typename U > | |
std::vector< const T * > | matchToObjects (const U *matchObject, const DataVector< T > &targetObjects, float maxDistance=0.1) const |
template<typename T , typename U > | |
bool | anyMatch (const U *matchObject, const std::vector< const T * > &targetObjects, float maxDistance, const DistanceFunctor< T, U > *metric) const |
template<typename T , typename U > | |
bool | anyMatch (const U *matchObject, const std::vector< const T * > &targetObjects, float maxDistance) const |
template<typename T , typename U > | |
const T * | matchToObject (const U *matchObject, const std::vector< const T * > &targetObjects, float maxDistance, const DistanceFunctor< T, U > *metric) const |
matchToObject returns the object of type T from the suppled vector that best matches matchObject according to the distance metric, if available, or if not, according the the default metric. More... | |
template<typename T , typename U > | |
const T * | matchToObject (const U *matchObject, const std::vector< const T * > &targetObjects, float maxDistance=0.1) const |
template<typename T , typename U > | |
const T * | matchToObject (const U *matchObject, const DataVector< T > &targetObjects, float maxDistance, const DistanceFunctor< T, U > *metric) const |
template<typename T , typename U > | |
const T * | matchToObject (const U *matchObject, const DataVector< T > &targetObjects, float maxDistance=0.1) const |
Static Public Member Functions | |
static const InterfaceID & | interfaceID () |
Protected Member Functions | |
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... | |
void | setTDT (Trig::TrigDecisionToolCore *tdt) |
virtual void | endEvent () |
void | clearChainIndex () |
template<typename T , typename U > | |
const DistanceFunctor< T, U > * | prepareMetric () const |
Private Types | |
typedef ServiceHandle< StoreGateSvc > | StoreGateSvc_t |
Private Member Functions | |
virtual void | warning (const std::string &w) const override |
virtual bool | changedDecisionAware () const override |
virtual void | handle (const Incident &inc) override |
virtual std::vector< std::string > | getConfiguredChainNames () const override |
virtual Trig::FeatureContainer | getFeatureContainer (const std::string &chainName, const int condition) const override |
virtual std::string | lowerChainName (const std::string &chainName) const override |
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &) |
specialization for handling Gaudi::Property<SG::VarHandleKey> More... | |
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyArrayType &) |
specialization for handling Gaudi::Property<SG::VarHandleKeyArray> More... | |
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleType &) |
specialization for handling Gaudi::Property<SG::VarHandleBase> More... | |
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &t, const SG::NotHandleType &) |
specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray> More... | |
template<typename trigType > | |
std::vector< const trigType * > | getTriggerObjects (size_t chainIndex, bool onlyPassedFeatures) const |
Alternate version of getTriggerObjects taking a chain index. More... | |
template<typename trigType , typename baseType > | |
std::vector< const trigType * > | matchToTriggerObjects (const baseType *baseObject, size_t chainIndex, float maxDistance, bool onlyPassedFeatures, const DistanceFunctor< trigType, baseType > *metric) const |
matchToTriggerObjects returns the objects of type trigType from chain chainName, which match to baseObject, sorted by distance from baseObject according to metric. More... | |
template<typename trigType , typename baseType > | |
bool | chainPassedByObject (const baseType *baseObject, size_t chainIndex, float maxDistance, const DistanceFunctor< trigType, baseType > *metric) const |
template<typename trait > | |
std::string | propagateChainNames (const std::string &chainName, const trait *) const |
std::string | propagateChainNames (const std::string &chainName, const TrigMatch::AncestorAttached *) const |
virtual std::string | propagateChainNames (const std::string &chainName) const |
template<typename trigType > | |
void | getObjects (std::vector< const trigType * > &objects, const std::string &chainName, bool onlyPassedFeatures) const |
template<typename trigType > | |
void | getObjects (std::vector< const trigType * > &objects, size_t chainIndex, bool onlyPassedFeatures) const |
template<typename trigType > | |
void | collectObjects (const std::string &featureLabel, std::vector< const trigType * > &objects, const Trig::FeatureContainer &featureContainer, bool onlyPassedFeatures, const TrigMatch::DirectAttached *) const |
template<typename trigType , typename contType > | |
void | collectObjects (const std::string &featureLabel, std::vector< const trigType * > &objects, const Trig::FeatureContainer &featureContainer, bool onlyPassedFeatures, const contType *) const |
template<typename trigType > | |
void | collectObjects (const std::string &featureLabel, std::vector< const trigType * > &objects, const Trig::FeatureContainer &featureContainer, bool onlyPassedFeatures, const TrigMatch::AncestorAttached *) const |
size_t | chainNameToIndex (const std::string &chainName) const |
template<typename trigType > | |
TrigFeatureCache< trigType > & | getCache (int type_key, SlotCache &slotCache, const SlotCache::lock_t &lock) const |
TrigFeatureCacheBase *& | getCache1 (const std::type_info *tid, int type_key, SlotCache &slotCache, const SlotCache::lock_t &lock) const |
const Trig::FeatureContainer & | getCachedFeatureContainer (size_t chainIndex, SlotCache &cache, const SlotCache::lock_t &lock) const |
Private Attributes | |
ToolHandle< Trig::TrigDecisionTool > | m_trigDecisionTool |
StoreGateSvc_t | m_evtStore |
Pointer to StoreGate (event store by default) More... | |
StoreGateSvc_t | m_detStore |
Pointer to StoreGate (detector store by default) More... | |
std::vector< SG::VarHandleKeyArray * > | m_vhka |
bool | m_varHandleArraysDeclared |
ChainNameIndex m_chainNameIndex | ATLAS_THREAD_SAFE |
TypeMap m_typeMap | ATLAS_THREAD_SAFE |
SG::SlotSpecificObj< SlotCache > m_slotCache | ATLAS_THREAD_SAFE |
Trig::TrigDecisionToolCore * | m_trigDecisionToolCore |
The TrigMatchTool is an athena tool used to match reconstructed objects to trigger objects and chains.
Please see TrigMatchToolCore for more information.
Definition at line 31 of file TrigMatchTool.h.
|
privateinherited |
Definition at line 388 of file AthCommonDataStore.h.
TrigMatchTool::TrigMatchTool | ( | const std::string & | type, |
const std::string & | name, | ||
const IInterface * | parent | ||
) |
Definition at line 21 of file TrigMatchTool.cxx.
|
inherited |
|
inherited |
|
privateinherited |
Definition at line 62 of file TrigMatchToolCore.cxx.
|
inherited |
chainPassedByObject returns true if the supplied object matches a trigger object of type trigType in the supplied chain, associated with an active TE, and false otherwise.
Please note that this is a bit tricky with multi-object triggers. This function will return true if the object you supply passes its portion of the trigger requirements, which can happen even if the trigger as a whole was not passed.
|
inherited |
|
privateinherited |
|
inherited |
chainsPassedByObject returns a list of the chains which are marked as passed in the navigation, and in which the supplied recoObject matches an object of type trigType with distance, as calculated by metric, of less than maxDistance.
Please note that this can be a bit tricky with multi-object triggers. A chain will be added to this list if the object you supply passes its portion of the trigger requirements, which can happen even if the trigger as a whole was not passed.
|
inherited |
|
inlineoverrideprivatevirtual |
Reimplemented from TrigMatchToolCore.
Definition at line 55 of file TrigMatchTool.h.
|
protectedinherited |
Definition at line 40 of file TrigMatchToolCore.cxx.
|
privateinherited |
|
privateinherited |
|
privateinherited |
|
inlineprivateinherited |
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
|
inlineprivateinherited |
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
|
inlineprivateinherited |
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
|
inlineprivateinherited |
specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray>
Definition at line 199 of file AthCommonDataStore.h.
|
inlineinherited |
Declare a new Gaudi property.
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.
|
inlineinherited |
Declare a new Gaudi property.
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.
|
inlineinherited |
Definition at line 259 of file AthCommonDataStore.h.
|
inlineinherited |
Declare a new Gaudi property.
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.
|
inlineinherited |
Declare a new Gaudi property.
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.
|
inlineinherited |
Definition at line 145 of file AthCommonDataStore.h.
|
inlineinherited |
The standard StoreGateSvc/DetectorStore
Returns (kind of) a pointer to the StoreGateSvc
.
Definition at line 95 of file AthCommonDataStore.h.
|
inherited |
|
inherited |
distance returns the distance between the two supplied objects using metric, if available, or the default metric, if not.
|
protectedvirtualinherited |
Definition at line 30 of file TrigMatchToolCore.cxx.
|
inlineinherited |
The standard StoreGateSvc
(event store) Returns (kind of) a pointer to the StoreGateSvc
.
Definition at line 85 of file AthCommonDataStore.h.
|
inlineinherited |
The standard StoreGateSvc
(event store) Returns (kind of) a pointer to the StoreGateSvc
.
Definition at line 90 of file AthCommonDataStore.h.
|
protectedinherited |
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
|
privateinherited |
|
privateinherited |
Definition at line 47 of file TrigMatchToolCore.cxx.
|
privateinherited |
Definition at line 69 of file TrigMatchToolCore.cxx.
|
overrideprivatevirtual |
|
inlineoverrideprivatevirtual |
Implements TrigMatchToolCore.
Definition at line 66 of file TrigMatchTool.h.
|
privateinherited |
|
privateinherited |
|
inherited |
getTriggerObjects returns the objects of the specified type from the specified chain.
Note that if onlyPassedFeatures is true, then only features from passed chains will be returned.
|
privateinherited |
Alternate version of getTriggerObjects
taking a chain index.
|
overrideprivatevirtual |
Definition at line 81 of file TrigMatchTool.cxx.
|
overridevirtual |
Definition at line 38 of file TrigMatchTool.cxx.
|
overridevirtualinherited |
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.
|
inlinestatic |
Definition at line 40 of file TrigMatchTool.h.
|
overrideprivatevirtual |
Implements TrigMatchToolCore.
Definition at line 70 of file TrigMatchTool.cxx.
|
inherited |
matchedTriggerObjects returns a vector of trigger objects from chain chainName that match to one or more of the objects passed according to the matching criteria specified.
If onlyBestMatch is true, then trigger objects will only be returned if they are the closest match to one of the baseObjects.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
matchToAllObjects returns a map from matched objects to the chains they were found in.
Matching is done according to criteria in matchToObjects.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
matchToObject returns the object of type T from the suppled vector that best matches matchObject according to the distance metric, if available, or if not, according the the default metric.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
matchToObjects returns the objects of type T from the supplied vector that match to matchObject, sorted by distance from the matchObject according to metric.
|
inherited |
|
inlineinherited |
Definition at line 119 of file TrigMatchToolCore.h.
|
inherited |
matchToTriggerObject returns the object of type trigType from chain chainName, which has the lowest distance to baseObject according to metric.
|
inherited |
|
inherited |
matchToTriggerObjects returns the objects of type trigType from chain chainName, which match to baseObject, sorted by distance from baseObject according to metric.
|
inherited |
|
privateinherited |
matchToTriggerObjects returns the objects of type trigType from chain chainName, which match to baseObject, sorted by distance from baseObject according to metric.
|
inlineinherited |
Definition at line 24 of file AthCommonMsg.h.
|
inlineinherited |
Definition at line 27 of file AthCommonMsg.h.
|
inlineinherited |
Definition at line 30 of file AthCommonMsg.h.
|
inherited |
objectsInChain returns a container of reco objects which match to objects of type trigType in the specified chain, where a match is defined by a distance, according to the supplied metric, of less than maxDistance.
If onlyPassedFeatures is true then only matches with trigger objects in passed chains will be considered.
|
inherited |
|
overridevirtualinherited |
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.
|
protectedinherited |
|
privatevirtualinherited |
Definition at line 24 of file TrigMatchToolCore.cxx.
|
inlineprivateinherited |
Definition at line 467 of file TrigMatchToolCore.h.
|
inlineprivateinherited |
Definition at line 472 of file TrigMatchToolCore.h.
|
inlineprotectedinherited |
Definition at line 380 of file AthCommonDataStore.h.
|
inlineprotectedinherited |
remove all handles from I/O resolution
Definition at line 364 of file AthCommonDataStore.h.
|
inlineinherited |
setFeatureLabel is used to set the label to be used when extracting features from the navigation.
Note that it should only be used like:
m_matchTool->setFeatureLabel("label")->matchToTriggerObject( recoObj,
chainName );
and never on its own. Note that it will only affect the very next match.
Definition at line 342 of file TrigMatchToolCore.h.
|
inlineprotectedinherited |
Definition at line 387 of file TrigMatchToolCore.h.
|
overridevirtualinherited |
Perform system initialization for an algorithm.
We override this to declare all the elements of handle key arrays at the end of initialization. See comments on updateVHKA.
Reimplemented in DerivationFramework::CfAthAlgTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and asg::AsgMetadataTool.
|
overridevirtualinherited |
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
|
inherited |
unmatchedTriggerObjects returns a vector of trigger objects from chain chainName that do not match to any of the objects passed according to the matching criteria specified.
If onlyBestMatch is true, then trigger objects will only be considered matched if they are the closest object to the baseObject.
|
inherited |
|
inherited |
|
inherited |
|
inlineinherited |
Definition at line 308 of file AthCommonDataStore.h.
|
inlineoverrideprivatevirtual |
Implements TrigMatchToolCore.
Definition at line 48 of file TrigMatchTool.h.
|
mutableprivateinherited |
Definition at line 439 of file TrigMatchToolCore.h.
|
mutableprivateinherited |
Definition at line 632 of file TrigMatchToolCore.h.
|
mutableprivateinherited |
Definition at line 693 of file TrigMatchToolCore.h.
|
privateinherited |
Pointer to StoreGate (detector store by default)
Definition at line 393 of file AthCommonDataStore.h.
|
privateinherited |
Pointer to StoreGate (event store by default)
Definition at line 390 of file AthCommonDataStore.h.
|
private |
Definition at line 77 of file TrigMatchTool.h.
|
privateinherited |
Definition at line 616 of file TrigMatchToolCore.h.
|
privateinherited |
Definition at line 399 of file AthCommonDataStore.h.
|
privateinherited |
Definition at line 398 of file AthCommonDataStore.h.