![]() |
ATLAS Offline Software
|
#include <MsTrackTester.h>
Public Member Functions | |
| StatusCode | initialize () override final |
| StatusCode | execute () override final |
| StatusCode | finalize () override final |
| AthHistogramAlgorithm (const std::string &name, ISvcLocator *pSvcLocator) | |
| Constructor with parameters: | |
| virtual StatusCode | sysInitialize () |
| Initialization method invoked by the framework. | |
| const ServiceHandle< ITHistSvc > & | histSvc () const |
The standard THistSvc (for writing histograms and TTrees and more to a root file) Returns (kind of) a pointer to the THistSvc. | |
| virtual const DataObjIDColl & | extraOutputDeps () const override |
| Return the list of extra output dependencies. | |
| 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 | 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 |
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. | |
| StatusCode | configAthHistogramming (const ServiceHandle< ITHistSvc > &histSvc, const std::string &prefix, const std::string &rootDir, const std::string &histNamePrefix, const std::string &histNamePostfix, const std::string &histTitlePrefix, const std::string &histTitlePostfix) |
| To be called by the derived classes to fill the internal configuration. | |
| TH1 * | bookGetPointer (const TH1 &hist, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of histograms. | |
| TH1 * | bookGetPointer (TH1 *hist, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of histograms. | |
| TH1 * | bookGetPointer (TH1 &histRef, std::string tDir="", std::string stream="") |
| Simplify the booking and registering (into THistSvc) of histograms. | |
| TTree * | bookGetPointer (const TTree &treeRef, std::string tDir="", std::string stream="") |
| Simplify the booking and registering (into THistSvc) of TTrees. | |
| TGraph * | bookGetPointer (const TGraph &graphRef, std::string tDir="", std::string stream="") |
| Simplify the booking and registering (into THistSvc) of TGraphs. | |
| TEfficiency * | bookGetPointer (const TEfficiency &eff, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of TEfficiency. | |
| TEfficiency * | bookGetPointer (TEfficiency *eff, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of TEfficiency. | |
| TEfficiency * | bookGetPointer (TEfficiency &effRef, std::string tDir="", std::string stream="") |
| Simplify the booking and registering (into THistSvc) of TEfficiency. | |
| StatusCode | book (const TH1 &hist, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of histograms. | |
| StatusCode | book (TH1 *hist, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of histograms. | |
| StatusCode | book (TH1 &histRef, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of histograms. | |
| StatusCode | book (const TTree &treeRef, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of TTrees. | |
| StatusCode | book (const TGraph &graphRef, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of TGraphs. | |
| StatusCode | book (const TEfficiency &eff, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of TEfficiency. | |
| StatusCode | book (TEfficiency *eff, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of TEfficiency. | |
| StatusCode | book (TEfficiency &effRef, const std::string &tDir="", const std::string &stream="") |
| Simplify the booking and registering (into THistSvc) of TEfficiency. | |
| TH1 * | hist (const std::string &histName, const std::string &tDir="", const std::string &stream="") |
| Simplify the retrieval of registered histograms of any type. | |
| TH2 * | hist2d (const std::string &histName, const std::string &tDir="", const std::string &stream="") |
| Simplify the retrieval of registered 2-d histograms. | |
| TH3 * | hist3d (const std::string &histName, const std::string &tDir="", const std::string &stream="") |
| Simplify the retrieval of registered 3-d histograms. | |
| TTree * | tree (const std::string &treeName, const std::string &tDir="", const std::string &stream="") |
| Simplify the retrieval of registered TTrees. | |
| TGraph * | graph (const std::string &graphName, const std::string &tDir="", const std::string &stream="") |
| Simplify the retrieval of registered TGraphs. | |
| TEfficiency * | efficiency (const std::string &effName, const std::string &tDir="", const std::string &stream="") |
| Simplify the retrieval of registered TEfficiency. | |
Private Types | |
| using | Location = MuonR4::MsTrackSeed::Location |
| using | SectorProjector = MuonR4::MsTrackSeeder::SectorProjector |
| using | TruthHitCol = std::unordered_set<const xAOD::MuonSimHit*> |
| using | SegmentKey_t = SG::ReadHandleKey<xAOD::MuonSegmentContainer> |
| using | ParticleBranchPtr_t = std::shared_ptr<MuonVal::IParticleFourMomBranch> |
| using | SegmentBranchPtr_t = std::shared_ptr<MuonPRDTest::SegmentVariables> |
| typedef ServiceHandle< StoreGateSvc > | StoreGateSvc_t |
| typedef uint32_t | hash_t |
| typedef for the internal hash | |
| typedef std::map< const hash_t, TH1 * > | HistMap_t |
| Typedef for convenience. | |
| typedef std::map< const hash_t, TEfficiency * > | EffMap_t |
| Typedef for convenience. | |
| typedef std::map< const hash_t, TTree * > | TreeMap_t |
| Typedef for convenience. | |
| typedef std::map< const hash_t, TGraph * > | GraphMap_t |
| Typedef for convenience. | |
Private Member Functions | |
| std::optional< MuonR4::MsTrackSeed > | makeSeedFromTruth (const ActsTrk::GeometryContext &gctx, const xAOD::TruthParticle &truthMuon) const |
| Construct MS track seed from the truth associated segments. | |
| std::pair< double, double > | calcSeedLength (const ActsTrk::GeometryContext &gctx, const MuonR4::MsTrackSeed &seed) const |
| Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &) |
| specialization for handling Gaudi::Property<SG::VarHandleKey> | |
| void | buildBookingString (std::string &bookingString, std::string &histName, std::string &tDir, std::string &stream, bool usePrefixPostfix=false) |
| Method to build individual booking string. | |
| void | myReplace (std::string &str, const std::string &oldStr, const std::string &newStr) |
| Helper method to replace sub-string. | |
| hash_t | hash (const std::string &histName) const |
| Method to calculate a 32-bit hash from a string. | |
Private Attributes | |
| MuonVal::MuonTesterTree | m_tree {"MsTrackValidTest", "MuonTrackTester"} |
| const MuonGMR4::MuonDetectorManager * | m_detMgr {nullptr} |
| Gaudi::Property< bool > | m_isMC {this, "isMC", false} |
| SegmentKey_t | m_truthSegmentKey {this, "TruthSegmentKey", "MuonTruthSegments"} |
| Segment from the truth hits. | |
| SegmentKey_t | m_recoSegmentKey {this, "SegmentKey", "MuonSegmentsFromR4"} |
| Primary segment container. | |
| SG::ReadHandleKey< xAOD::TruthParticleContainer > | m_truthKey {this, "TruthKey", "MuonTruthParticles"} |
| Key to the truth particle collection. | |
| SG::ReadDecorHandleKeyArray< SG::AuxVectorBase > | m_trkTruthLinks {this, "TruthTrackLinks", {}} |
| Decoration dependency to the MS truth track links. | |
| SG::ReadHandleKey< MuonR4::MsTrackSeedContainer > | m_msTrkSeedKey {this, "MsTrkSeedKey", "MsTrackSeeds"} |
| Temporary container write handle to push the seeds to store gate for later efficiency analysis. | |
| SG::ReadHandleKey< ActsTrk::GeometryContext > | m_geoCtxKey {this, "AlignmentKey", "ActsAlignment", "cond handle key"} |
| Dependency on the geometry alignment. | |
| SG::ReadCondHandleKey< AtlasFieldCacheCondObj > | m_fieldCacheKey {this, "MagFieldKey", "fieldCondObj", "Name of the Magnetic Field conditions object key"} |
| Dependency on the magnetic field. | |
| ToolHandle< MuonR4::ISegmentSelectionTool > | m_segSelector {this, "SegmentSelectionTool" , "" } |
| Segment selection tool to pick the good quality segments. | |
| SG::ReadHandleKey< ActsTrk::TrackContainer > | m_trackKey {this, "TrackKey", "MsTracks"} |
| Dependency on the R4 MS track container. | |
| ToolHandle< MuonR4::ITrackSummaryTool > | m_summaryTool {this, "SummaryTool" ,""} |
| Hit summary tool. | |
| SG::ReadHandleKey< xAOD::TrackParticleContainer > | m_legacyTrackKey {this,"LegacyTrackKey", "MuonSpectrometerTrackParticles"} |
| Legacy track reconstruction chain. | |
| std::unique_ptr< MuonR4::MsTrackSeeder > | m_seeder {} |
| ParticleBranchPtr_t | m_truthTrks {} |
| SegmentBranchPtr_t | m_truthSegs {} |
| SegmentBranchPtr_t | m_recoSegs {} |
| MuonVal::ThreeVectorBranch | m_seedPos {m_tree, "MsTrkSeed_position"} |
| Simple seed information. | |
| MuonVal::VectorBranch< char > & | m_seedType {m_tree.newVector<char>("MstTrkSeed_type")} |
| Is the seed in the encap or in the barrel chambers. | |
| MuonVal::VectorBranch< float > & | m_seedLength {m_tree.newVector<float>("MsTrkSeed_length")} |
| Maximum separation between the segments on the reference plane. | |
| MuonVal::VectorBranch< float > & | m_seedThetaCone {m_tree.newVector<float>("MsTrkSeed_thetaCone")} |
| Maximum angular difference between the segments part of the seed. | |
| MuonVal::VectorBranch< float > & | m_seedQP {m_tree.newVector<float>("MsTrkSeed_qTimesP")} |
| Estimated momentum times charge from the track seed. | |
| std::shared_ptr< TrackSummaryModule > | m_seedSummary {} |
| Hit summary on the track seed. | |
| std::shared_ptr< TrackSummaryModule > | m_trackSummary {} |
| Hit summary on the reconstructed track. | |
| MuonVal::MatrixBranch< unsigned short > & | m_seedRecoSegMatch {m_tree.newMatrix<unsigned short>("MsTrkSeed_segmentLinks")} |
| Link of the track seed to the building segment. | |
| MuonVal::MatrixBranch< unsigned short > & | m_truthSegToRecoLink {m_tree.newMatrix<unsigned short>("TruthSegments_recoSegLinks",-1)} |
| Link of the truth segments to the matchin reco segments. | |
| MuonVal::MatrixBranch< unsigned short > & | m_truthMuToSeedIdx {m_tree.newMatrix<unsigned short>("TruthMuons_seedLinks", -1)} |
| Links to all MsTrkSeeds that could be matched to the truthMuon, i.e. | |
| MuonVal::MatrixBranch< unsigned short > & | m_truthMuToSeedCounter {m_tree.newMatrix<unsigned short>("TruthMuons_seedNSeg")} |
| Corresponding matching counter of reconstructed segments. | |
| MuonVal::MatrixBranch< unsigned short > & | m_truthMuTruthSegLinks {m_tree.newMatrix<unsigned short>("TruthMuons_truthSegLinks")} |
| Links from the truth muon to the segments. | |
| MuonVal::VectorBranch< unsigned short > & | m_truthMuTruthNSegs {m_tree.newVector<unsigned short>("TruthMuons_nTruthSegments")} |
| Number of associated truth muon segments. | |
| MuonVal::MatrixBranch< unsigned short > & | m_truthMuRecoSegLinks {m_tree.newMatrix<unsigned short>("TruthMuons_recoSegLinks")} |
| Links from the truth muon to the segments. | |
| MuonVal::VectorBranch< float > & | m_truthMuonsSeedLength {m_tree.newVector<float>("TruthMuons_seedLength")} |
| MuonVal::VectorBranch< float > & | m_truthMuonsSeedCone {m_tree.newVector<float>("TruthMuons_seedThetaCone")} |
| Angular deviation of the true segment seed. | |
| MuonVal::VectorBranch< float > & | m_truthMuonQP {m_tree.newVector<float>("TruthMuons_qTimesP")} |
| Estimated Q x P from the seeder algorithm class. | |
| ParticleBranchPtr_t | m_legacyTrks {} |
| Output branches of the legacy MS tracks. | |
| ServiceHandle< ITHistSvc > | m_histSvc |
| Default constructor: AthHistogramAlgorithm();. | |
| std::string | m_prefix |
| Name of the ROOT output stream (file) | |
| std::string | m_rootDir |
| Name of the ROOT directory. | |
| std::string | m_histNamePrefix |
| The prefix for the histogram THx name. | |
| std::string | m_histNamePostfix |
| The postfix for the histogram THx name. | |
| std::string | m_histTitlePrefix |
| The prefix for the histogram THx title. | |
| std::string | m_histTitlePostfix |
| The postfix for the histogram THx title. | |
| DataObjIDColl | m_extendedExtraObjects |
| 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 |
| HistMap_t | m_histMap |
| The map of histogram names to their pointers. | |
| EffMap_t | m_effMap |
| The map of histogram names to their pointers. | |
| TreeMap_t | m_treeMap |
| The map of TTree names to their pointers. | |
| GraphMap_t | m_graphMap |
| The map of TGraph names to their pointers. | |
| std::string | m_streamName |
| Name of the ROOT output stream (file) | |
| std::string | m_name |
| Instance name. | |
| MsgStream | m_msg |
| Cached Message Stream. | |
Definition at line 32 of file MsTrackTester.h.
|
privateinherited |
Typedef for convenience.
Definition at line 205 of file AthHistogramming.h.
|
privateinherited |
Typedef for convenience.
Definition at line 219 of file AthHistogramming.h.
|
privateinherited |
typedef for the internal hash
Definition at line 169 of file AthHistogramming.h.
|
privateinherited |
Typedef for convenience.
Definition at line 198 of file AthHistogramming.h.
|
private |
Definition at line 40 of file MsTrackTester.h.
|
private |
Definition at line 88 of file MsTrackTester.h.
Definition at line 41 of file MsTrackTester.h.
|
private |
Definition at line 91 of file MsTrackTester.h.
|
private |
Definition at line 62 of file MsTrackTester.h.
|
privateinherited |
Definition at line 388 of file AthCommonDataStore.h.
|
privateinherited |
Typedef for convenience.
Definition at line 212 of file AthHistogramming.h.
|
private |
Definition at line 60 of file MsTrackTester.h.
| AthHistogramAlgorithm::AthHistogramAlgorithm | ( | const std::string & | name, |
| ISvcLocator * | pSvcLocator ) |
Constructor with parameters:
Definition at line 40 of file AthHistogramAlgorithm.cxx.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of TEfficiency.
Definition at line 335 of file AthHistogramming.h.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of TGraphs.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of histograms.
Definition at line 303 of file AthHistogramming.h.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of TTrees.
Definition at line 403 of file AthHistogramming.h.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of TEfficiency.
Definition at line 356 of file AthHistogramming.h.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of TEfficiency.
Definition at line 346 of file AthHistogramming.h.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of histograms.
Definition at line 324 of file AthHistogramming.h.
|
inlineprotectedinherited |
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of TEfficiency.
Definition at line 281 of file AthHistogramming.h.
|
protectedinherited |
Simplify the booking and registering (into THistSvc) of TGraphs.
Definition at line 427 of file AthHistogramming.cxx.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of histograms.
Definition at line 260 of file AthHistogramming.h.
|
protectedinherited |
Simplify the booking and registering (into THistSvc) of TTrees.
Definition at line 312 of file AthHistogramming.cxx.
|
protectedinherited |
Simplify the booking and registering (into THistSvc) of TEfficiency.
Definition at line 146 of file AthHistogramming.cxx.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of TEfficiency.
Definition at line 293 of file AthHistogramming.h.
|
protectedinherited |
Simplify the booking and registering (into THistSvc) of histograms.
Definition at line 98 of file AthHistogramming.cxx.
|
inlineprotectedinherited |
Simplify the booking and registering (into THistSvc) of histograms.
Definition at line 272 of file AthHistogramming.h.
|
privateinherited |
Method to build individual booking string.
Definition at line 560 of file AthHistogramming.cxx.
|
private |
Definition at line 80 of file MsTrackTester.cxx.
|
protectedinherited |
To be called by the derived classes to fill the internal configuration.
Definition at line 66 of file AthHistogramming.cxx.
|
inlineprivateinherited |
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 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.
|
protectedinherited |
Simplify the retrieval of registered TEfficiency.
Definition at line 250 of file AthHistogramming.cxx.
|
inlineinherited |
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Definition at line 85 of file AthCommonDataStore.h.
|
finaloverride |
Fetch the containers from store gate
Dump all truth segments
Finally dump the truth muons
Allocate the memory
Match the seeds to the truth particle
Definition at line 241 of file MsTrackTester.cxx.
|
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
|
overridevirtualinherited |
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 50 of file AthAlgorithm.cxx.
|
finaloverride |
Definition at line 361 of file MsTrackTester.cxx.
|
protectedinherited |
Simplify the retrieval of registered TGraphs.
Definition at line 492 of file AthHistogramming.cxx.
|
inlineprivateinherited |
Method to calculate a 32-bit hash from a string.
Definition at line 428 of file AthHistogramming.h.
|
protectedinherited |
Simplify the retrieval of registered histograms of any type.
Definition at line 198 of file AthHistogramming.cxx.
|
inlineprotectedinherited |
Simplify the retrieval of registered 2-d histograms.
Definition at line 369 of file AthHistogramming.h.
|
inlineprotectedinherited |
Simplify the retrieval of registered 3-d histograms.
Definition at line 386 of file AthHistogramming.h.
|
inlineinherited |
The standard THistSvc (for writing histograms and TTrees and more to a root file) Returns (kind of) a pointer to the THistSvc.
Definition at line 113 of file AthHistogramAlgorithm.h.
|
finaloverride |
Link the truth segment to the reconstructed segment...
Definition at line 99 of file MsTrackTester.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.
|
private |
Construct MS track seed from the truth associated segments.
A nullopt is returned if either no segment is matched to the particle or no valid seed could be constructed
| gctx | Geometry context to project the segments onto the sector centers |
| truthMuon | Reference to the truth muon for which a seed should be constructed |
Construct the 2 candidate seeds
Definition at line 43 of file MsTrackTester.cxx.
|
inlineinherited |
Definition at line 24 of file AthCommonMsg.h.
|
inlineinherited |
Definition at line 30 of file AthCommonMsg.h.
|
privateinherited |
Helper method to replace sub-string.
Definition at line 590 of file AthHistogramming.cxx.
|
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.
|
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.
|
virtualinherited |
Initialization method invoked by the framework.
This method is responsible for any bookkeeping of initialization required by the framework itself. It will in turn invoke the initialize() method of the derived algorithm, and of any sub-algorithms which it creates.
Reimplemented from AthAlgorithm.
Reimplemented in AthAnalysisAlgorithm.
Definition at line 75 of file AthHistogramAlgorithm.cxx.
|
overridevirtualinherited |
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
|
protectedinherited |
Simplify the retrieval of registered TTrees.
Definition at line 378 of file AthHistogramming.cxx.
|
inlineinherited |
Definition at line 308 of file AthCommonDataStore.h.
|
private |
Definition at line 55 of file MsTrackTester.h.
|
privateinherited |
Pointer to StoreGate (detector store by default)
Definition at line 393 of file AthCommonDataStore.h.
|
privateinherited |
The map of histogram names to their pointers.
Definition at line 208 of file AthHistogramming.h.
|
privateinherited |
Pointer to StoreGate (event store by default)
Definition at line 390 of file AthCommonDataStore.h.
|
privateinherited |
Definition at line 79 of file AthAlgorithm.h.
|
private |
Dependency on the magnetic field.
Definition at line 76 of file MsTrackTester.h.
|
private |
Dependency on the geometry alignment.
Definition at line 74 of file MsTrackTester.h.
|
privateinherited |
The map of TGraph names to their pointers.
Definition at line 222 of file AthHistogramming.h.
|
privateinherited |
The map of histogram names to their pointers.
Definition at line 201 of file AthHistogramming.h.
|
privateinherited |
The postfix for the histogram THx name.
Definition at line 97 of file AthHistogramAlgorithm.h.
|
privateinherited |
The prefix for the histogram THx name.
Definition at line 94 of file AthHistogramAlgorithm.h.
|
privateinherited |
Default constructor: AthHistogramAlgorithm();.
a handle on the Hist/TTree registration service
Definition at line 83 of file AthHistogramAlgorithm.h.
|
privateinherited |
The postfix for the histogram THx title.
Definition at line 103 of file AthHistogramAlgorithm.h.
|
privateinherited |
The prefix for the histogram THx title.
Definition at line 100 of file AthHistogramAlgorithm.h.
|
private |
Definition at line 57 of file MsTrackTester.h.
|
private |
Legacy track reconstruction chain.
Definition at line 85 of file MsTrackTester.h.
|
private |
|
privateinherited |
Cached Message Stream.
Definition at line 248 of file AthHistogramming.h.
|
private |
Temporary container write handle to push the seeds to store gate for later efficiency analysis.
Definition at line 72 of file MsTrackTester.h.
|
privateinherited |
Instance name.
Definition at line 245 of file AthHistogramming.h.
|
privateinherited |
Name of the ROOT output stream (file)
Definition at line 88 of file AthHistogramAlgorithm.h.
|
private |
Primary segment container.
Definition at line 66 of file MsTrackTester.h.
|
private |
Definition at line 93 of file MsTrackTester.h.
|
privateinherited |
Definition at line 91 of file AthHistogramAlgorithm.h.
|
private |
Definition at line 87 of file MsTrackTester.h.
|
private |
Maximum separation between the segments on the reference plane.
Definition at line 100 of file MsTrackTester.h.
|
private |
|
private |
Estimated momentum times charge from the track seed.
Definition at line 104 of file MsTrackTester.h.
|
private |
|
private |
|
private |
Maximum angular difference between the segments part of the seed.
Definition at line 102 of file MsTrackTester.h.
|
private |
|
private |
Segment selection tool to pick the good quality segments.
Definition at line 78 of file MsTrackTester.h.
|
privateinherited |
Name of the ROOT output stream (file)
Definition at line 226 of file AthHistogramming.h.
|
private |
|
private |
Dependency on the R4 MS track container.
Definition at line 80 of file MsTrackTester.h.
|
private |
|
private |
Definition at line 53 of file MsTrackTester.h.
|
privateinherited |
The map of TTree names to their pointers.
Definition at line 215 of file AthHistogramming.h.
|
private |
Decoration dependency to the MS truth track links.
Definition at line 70 of file MsTrackTester.h.
|
private |
Key to the truth particle collection.
Definition at line 68 of file MsTrackTester.h.
|
private |
|
private |
|
private |
Definition at line 124 of file MsTrackTester.h.
|
private |
|
private |
Corresponding matching counter of reconstructed segments.
Definition at line 116 of file MsTrackTester.h.
|
private |
Links to all MsTrkSeeds that could be matched to the truthMuon, i.e.
>= 1 segment
Definition at line 114 of file MsTrackTester.h.
|
private |
|
private |
|
private |
Segment from the truth hits.
Definition at line 64 of file MsTrackTester.h.
|
private |
Definition at line 92 of file MsTrackTester.h.
|
private |
Link of the truth segments to the matchin reco segments.
Definition at line 112 of file MsTrackTester.h.
|
private |
Definition at line 89 of file MsTrackTester.h.
|
privateinherited |
Definition at line 399 of file AthCommonDataStore.h.
|
privateinherited |
Definition at line 398 of file AthCommonDataStore.h.