![]() |
ATLAS Offline Software
|
#include <TrackSelectionProcessorTool.h>
Public Types | |
| typedef std::multimap< TrackScore, TrackPtr > | TrackScoreMap |
| typedef std::set< const PrepRawData * > | PrdSignature |
| typedef std::set< PrdSignature > | PrdSignatureSet |
Public Member Functions | |
| TrackSelectionProcessorTool (const std::string &, const std::string &, const IInterface *) | |
| virtual | ~TrackSelectionProcessorTool () |
| virtual StatusCode | initialize () override |
| virtual StatusCode | finalize () override |
| virtual const TrackCollection * | process (const EventContext &ctx, const TrackCollection *tracksCol, Trk::PRDtoTrackMap *prdToTrackMap) const override |
| Returns a processed TrackCollection from the passed 'tracks' WITHOUT copying or refitting the input tracks. | |
| virtual const TrackCollection * | process (const EventContext &, const TracksScores *) const override |
| void | statistics () override |
| statistics output to be called by algorithm during finalize. | |
| 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< T, V, H > &t) |
| void | updateVHKA (Gaudi::Details::PropertyBase &) |
| MsgStream & | msg () const |
| bool | msgLvl (const MSG::Level lvl) const |
| DeclareInterfaceID (ITrackAmbiguityProcessorTool, 1, 0) | |
Protected Member Functions | |
| 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(&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. | |
Private Types | |
| typedef ServiceHandle< StoreGateSvc > | StoreGateSvc_t |
Private Member Functions | |
| void | addNewTracks (TrackScoreMap &trackScoreTrackMap, Trk::PRDtoTrackMap &prdToTrackMap, const std::vector< const Track * > &tracks) const |
| Add passed TrackCollection, and Trk::PrepRawData from tracks to caches. | |
| void | solveTracks (const EventContext &ctx, TrackScoreMap &trackScoreTrackMap, Trk::PRDtoTrackMap &prdToTrackMap, ConstDataVector< TrackCollection > &final_tracks) const |
| void | dumpTracks (const TrackCollection &tracks) const |
| print out tracks and their scores for debugging | |
| Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &) |
| specialization for handling Gaudi::Property<SG::VarHandleKey> | |
Private Attributes | |
| bool | m_dropDouble |
| by default drop double tracks before refit | |
| ToolHandle< ITrackScoringTool > | m_scoringTool {this, "ScoringTool", "Muon::MuonAmbiTrackSelectionTool/MuonAmbiSelectionTool"} |
| Scoring tool This tool is used to 'score' the tracks, i.e. | |
| ToolHandle< IAmbiTrackSelectionTool > | m_selectionTool |
| selection tool - here the decision which hits remain on a track and which are removed are made | |
| ToolHandle< Trk::IPRDtoTrackMapTool > | m_assoTool |
| SG::ReadHandleKey< Trk::PRDtoTrackMap > | m_assoMapName |
| key for the PRDtoTrackMap to filled by the ambiguity score processor. | |
| SG::ReadHandleKey< Trk::ClusterSplitProbabilityContainer > | m_clusterSplitProbContainerIn |
| SG::WriteHandleKey< Trk::ClusterSplitProbabilityContainer > | m_clusterSplitProbContainerOut |
| bool | m_disableSorting |
| option to disable sorting based on track score and use the ordering provided externally | |
| StoreGateSvc_t | m_evtStore |
| Pointer to StoreGate (event store by default). | |
| StoreGateSvc_t | m_detStore |
| Pointer to StoreGate (detector store by default). | |
| std::vector< SG::VarHandleKeyArray * > | m_vhka |
| bool | m_varHandleArraysDeclared |
Definition at line 33 of file TrackSelectionProcessorTool.h.
| typedef std::set<const PrepRawData *> Trk::TrackSelectionProcessorTool::PrdSignature |
Definition at line 40 of file TrackSelectionProcessorTool.h.
| typedef std::set<PrdSignature> Trk::TrackSelectionProcessorTool::PrdSignatureSet |
Definition at line 41 of file TrackSelectionProcessorTool.h.
|
privateinherited |
Definition at line 388 of file AthCommonDataStore.h.
| typedef std::multimap<TrackScore, TrackPtr> Trk::TrackSelectionProcessorTool::TrackScoreMap |
Definition at line 38 of file TrackSelectionProcessorTool.h.
| Trk::TrackSelectionProcessorTool::TrackSelectionProcessorTool | ( | const std::string & | t, |
| const std::string & | n, | ||
| const IInterface * | p ) |
Definition at line 12 of file TrackSelectionProcessorTool.cxx.
|
virtualdefault |
|
private |
Add passed TrackCollection, and Trk::PrepRawData from tracks to caches.
| tracks | the TrackCollection is looped over, and each Trk::Track is added to the various caches. The Trk::PrepRawData from each Trk::Track are added to the IPRD_AssociationTool |
Definition at line 100 of file TrackSelectionProcessorTool.cxx.
|
inlineprivateinherited |
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
|
inherited |
|
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.
|
private |
print out tracks and their scores for debugging
Definition at line 211 of file TrackSelectionProcessorTool.cxx.
|
inlineinherited |
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Definition at line 85 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
|
overridevirtual |
Definition at line 50 of file TrackSelectionProcessorTool.cxx.
|
overridevirtual |
Definition at line 30 of file TrackSelectionProcessorTool.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.
|
inlineinherited |
Definition at line 24 of file AthCommonMsg.h.
|
inlineinherited |
Definition at line 30 of file AthCommonMsg.h.
|
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.
|
inlineoverridevirtual |
Implements Trk::ITrackAmbiguityProcessorTool.
Definition at line 75 of file TrackSelectionProcessorTool.h.
|
overridevirtual |
Returns a processed TrackCollection from the passed 'tracks' WITHOUT copying or refitting the input tracks.
Do actual processing of event.
The pointers of the tracks in the input collection are copied into the output collection which does NOT own the pointers. Clients must ensure that the Input Collection is not deleted before the output collection else all pointers in the output collection will be invalid!
| tracks | collection of tracks which will have ambiguities resolved. Will not be modified. |
| prdToTrackMap | on optional prd-to-track map being filled by the processor. |
If no prd-to-track map is given the processor might create one internally(for internal use only, or exported to storegate).
Takes a track container, and then returns the tracks which have been selected
Implements Trk::ITrackAmbiguityProcessorTool.
Definition at line 61 of file TrackSelectionProcessorTool.cxx.
|
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.
|
private |
Definition at line 144 of file TrackSelectionProcessorTool.cxx.
|
inlineoverridevirtual |
statistics output to be called by algorithm during finalize.
Implements Trk::ITrackAmbiguityProcessorTool.
Definition at line 82 of file TrackSelectionProcessorTool.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 asg::AsgMetadataTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and DerivationFramework::CfAthAlgTool.
|
overridevirtualinherited |
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
|
inlineinherited |
Definition at line 308 of file AthCommonDataStore.h.
|
private |
key for the PRDtoTrackMap to filled by the ambiguity score processor.
the key given to the newly created association map
Definition at line 122 of file TrackSelectionProcessorTool.h.
|
private |
Definition at line 118 of file TrackSelectionProcessorTool.h.
|
private |
Definition at line 127 of file TrackSelectionProcessorTool.h.
|
private |
Definition at line 130 of file TrackSelectionProcessorTool.h.
|
privateinherited |
Pointer to StoreGate (detector store by default).
Definition at line 393 of file AthCommonDataStore.h.
|
private |
option to disable sorting based on track score and use the ordering provided externally
Definition at line 135 of file TrackSelectionProcessorTool.h.
|
private |
by default drop double tracks before refit
Definition at line 105 of file TrackSelectionProcessorTool.h.
|
privateinherited |
Pointer to StoreGate (event store by default).
Definition at line 390 of file AthCommonDataStore.h.
|
private |
Scoring tool This tool is used to 'score' the tracks, i.e.
to quantify what a good track is.
Definition at line 110 of file TrackSelectionProcessorTool.h.
|
private |
selection tool - here the decision which hits remain on a track and which are removed are made
Definition at line 116 of file TrackSelectionProcessorTool.h.
|
privateinherited |
Definition at line 399 of file AthCommonDataStore.h.
|
privateinherited |
Definition at line 398 of file AthCommonDataStore.h.