![]() |
ATLAS Offline Software
|
This class uses primary vertex reconstruction to measure and monitor the LHC beam as seen by the ATLAS detector. More...
#include <T2VertexBeamSpotTool.h>
Public Types | |
| using | TrackVector = std::vector<const Trk::Track*> |
Public Member Functions | |
| T2VertexBeamSpotTool (const std::string &type, const std::string &name, const IInterface *parent) | |
| virtual StatusCode | initialize () override final |
| void | updateBS (const TrackCollection &tracks, const EventContext &ctx) const |
| Update beam spot data with new track information. | |
| 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 |
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 | |
| unsigned | numHighPTTrack (const TrackVector &tracks) const |
| Return count of high pT track in the track list, the total number of these high pT tracks is checked in the selectTracks function and the threshold can be set via TrackSeedPt (by default 1 GeV) | |
| unsigned int | reconstructVertices (TrackVector &tracks, TrigVertexCollection &myVertexCollection, DataVector< TrigVertexCollection > &mySplitVertexCollections, const EventContext &) const |
| bool | isGoodVertex (const T2Vertex &vertex) const |
| bool | isGoodVertexBCID (const T2Vertex &vertex) const |
| void | reconstructSplitVertices (TrackVector &tracks, DataVector< TrigVertexCollection > &mySplitVertexCollections, T2TrackClusterer &trackClusterer, const InDet::BeamSpotData *indetBeamSpot, const EventContext &) const |
| void | monitor_cluster (const T2TrackClusterer &clusterer) const |
| void | monitor_cluster_tracks (T2TrackClusterer &clusterer, const Trk::Track &track) const |
| void | monitor_vertex (const std::string &prefix, const std::string &suffix, const T2Vertex &vertex, int bcid=-1) const |
| void | monitor_split_vertex (const std::string &prefix, const std::string &suffix, const T2SplitVertex &vertex) const |
| Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &) |
| specialization for handling Gaudi::Property<SG::VarHandleKey> | |
Private Attributes | |
| double | m_trackClusDZ |
| bool | m_weightSeed |
| bool | m_splitWholeCluster |
| bool | m_reclusterSplit |
| double | m_trackSeedPt |
| std::string | m_clusterPerigee = "original" |
| T2TrackClusterer::TrackPerigee | m_clusterTrackPerigee = T2TrackClusterer::perigee_original |
| unsigned | m_totalNTrkMin |
| unsigned int | m_vtxNTrkMin |
| unsigned int | m_vtxNTrkMax |
| double | m_vtxQualMin |
| double | m_vtxQualMax |
| double | m_vtxChi2ProbMin |
| double | m_vtxMassMin |
| double | m_vtxSumPtMin |
| double | m_vtxXposMax |
| double | m_vtxXerrMax |
| double | m_vtxYposMax |
| double | m_vtxYerrMax |
| double | m_vtxZposMax |
| double | m_vtxZerrMax |
| unsigned int | m_vtxBCIDNTrkMin |
| Additional vertex selection criteria for BCID measurements. | |
| unsigned | m_nSplitVertices |
| bool | m_filterBS |
| SG::ReadCondHandleKey< InDet::BeamSpotData > | m_beamSpotKey {this, "BeamSpotKey", "BeamSpotData", "SG key for beam spot"} |
| SG::WriteHandleKey< TrigVertexCollection > | m_outputVertexCollectionKey {this, "OutputVertexCollection", "myVertices", "SG key for output vertex collection"} |
| ToolHandle< ITrigPrimaryVertexFitter > | m_primaryVertexFitterTool |
| Primary Vertex Fitter Tool. | |
| ToolHandle< T2BSTrackFilterTool > | m_trackFilterTool {this, "TrackFilter", "PESA::T2BSTrackFilterTool/T2BSTrackFilterTool" } |
| ToolHandle< GenericMonitoringTool > | m_monTool {this,"MonTool","","Monitoring tool"} |
| 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 |
This class uses primary vertex reconstruction to measure and monitor the LHC beam as seen by the ATLAS detector.
Fast, online vertexing is implemented using Dmitry Emeliyanov's (D.Eme.nosp@m.liya.nosp@m.nov@r.nosp@m.l.ac.nosp@m..uk) TrigPrimaryVertexFitter.
Definition at line 69 of file T2VertexBeamSpotTool.h.
|
privateinherited |
Definition at line 388 of file AthCommonDataStore.h.
| using PESA::T2VertexBeamSpotTool::TrackVector = std::vector<const Trk::Track*> |
Definition at line 72 of file T2VertexBeamSpotTool.h.
| PESA::T2VertexBeamSpotTool::T2VertexBeamSpotTool | ( | const std::string & | type, |
| const std::string & | name, | ||
| const IInterface * | parent ) |
Definition at line 67 of file T2VertexBeamSpotTool.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.
|
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
|
finaloverridevirtual |
Definition at line 109 of file T2VertexBeamSpotTool.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 |
Definition at line 473 of file T2VertexBeamSpotTool.cxx.
|
private |
Definition at line 494 of file T2VertexBeamSpotTool.cxx.
|
private |
Definition at line 504 of file T2VertexBeamSpotTool.cxx.
|
private |
Definition at line 513 of file T2VertexBeamSpotTool.cxx.
|
private |
Definition at line 556 of file T2VertexBeamSpotTool.cxx.
|
private |
Definition at line 526 of file T2VertexBeamSpotTool.cxx.
|
inlineinherited |
Definition at line 24 of file AthCommonMsg.h.
|
inlineinherited |
Definition at line 30 of file AthCommonMsg.h.
|
private |
Return count of high pT track in the track list, the total number of these high pT tracks is checked in the selectTracks function and the threshold can be set via TrackSeedPt (by default 1 GeV)
Definition at line 176 of file T2VertexBeamSpotTool.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.
|
private |
Definition at line 379 of file T2VertexBeamSpotTool.cxx.
|
private |
Definition at line 193 of file T2VertexBeamSpotTool.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.
|
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.
| void T2VertexBeamSpotTool::updateBS | ( | const TrackCollection & | tracks, |
| const EventContext & | ctx ) const |
Update beam spot data with new track information.
Parameter provides a lists of tracks.
Definition at line 127 of file T2VertexBeamSpotTool.cxx.
|
inlineinherited |
Definition at line 308 of file AthCommonDataStore.h.
|
private |
Definition at line 152 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 123 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 124 of file T2VertexBeamSpotTool.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 149 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 162 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 147 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 155 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 159 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 121 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 120 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 127 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 118 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 161 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 122 of file T2VertexBeamSpotTool.h.
|
privateinherited |
Definition at line 399 of file AthCommonDataStore.h.
|
privateinherited |
Definition at line 398 of file AthCommonDataStore.h.
|
private |
Additional vertex selection criteria for BCID measurements.
Definition at line 145 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 134 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 135 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 131 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 130 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 133 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 132 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 136 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 138 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 137 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 140 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 139 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 142 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 141 of file T2VertexBeamSpotTool.h.
|
private |
Definition at line 119 of file T2VertexBeamSpotTool.h.