ATLAS Offline Software
Loading...
Searching...
No Matches
JiveXML::VertexRetriever Class Reference

Retrieves all Trk::VxCandidate objects. More...

#include <VertexRetriever.h>

Inheritance diagram for JiveXML::VertexRetriever:
Collaboration diagram for JiveXML::VertexRetriever:

Public Member Functions

 VertexRetriever (const std::string &t, const std::string &n, const IInterface *p)
 Standard constructor.
virtual StatusCode retrieve (ToolHandle< IFormatTool > &FormatTool)
 Retrieve all the data.
virtual std::string dataTypeName () const
 Return the name of the data type.
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

Static Public Member Functions

static const InterfaceID & interfaceID ()
 Return the interface identifier.

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< StoreGateSvcStoreGateSvc_t

Private Member Functions

virtual StatusCode fillPerigeeList ()
 Retrieve measured perigee, automatically switch between Trk::Track and Rec::TrackParticle depending on selected input collection for tracks.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

std::string m_primaryVertexKey
 StoreGate key for primary vertex candidate collection.
std::string m_secondaryVertexKey
 StoreGate key for secondary vertex candidate collection.
std::string m_conversionVertexKey
 StoreGate key for conversion candidate collection.
bool m_doWriteHLT
 wether to write HLTAutoKey objects
bool m_doWritePrimAndSecVertexOnly
 write primary and secondary vertizes only - placeholder, to be removed
std::string m_trackCollection
 StoreGate key for track collection for association.
float m_chi2Cut
 Chi^2 over NumberOfDegreesOfFreedom cut.
const std::string m_typeName
 The data type that is generated by this retriever.
std::vector< const Trk::Perigee * > m_perigeeVector
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

Detailed Description

Retrieves all Trk::VxCandidate objects.

  • Properties
    • PrimaryVertexCollection = 'VxPrimaryCandidate': StoreGate key for primary vertex candidate collection.
  • IgnoreTrackAssociations = False:
  • DoWritePrimAndSecVertexOnly = False: write primary and secondary vertizes only - placeholder, to be removed
  • DoWriteHLT = False: wether to write HLTAutoKey objects
  • Retrieved Data
    • x, y, z : coordinates of vertex
    • primVxCand : boolean for vertex candidate
    • chi2 : \(\chi^2\) of vertex fit
    • covMatrix : covariance matrix of vertex fit
    • numTracks : number of tracks associated with the vertex
    • tracks : indices of associated tracks in track collection

Definition at line 33 of file VertexRetriever.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< AlgTool > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ VertexRetriever()

JiveXML::VertexRetriever::VertexRetriever ( const std::string & type,
const std::string & name,
const IInterface * parent )

Standard constructor.

This is the standard AthAlgTool constructor.

Parameters
typeAlgTool type name
nameAlgTool instance name
parentAlgTools parent owning this tool

Definition at line 36 of file VertexRetriever.cxx.

36 :
37 AthAlgTool(type,name,parent),
38 m_typeName("RVx"){
39
40 //Declare the interface
41 declareInterface<IDataRetriever>(this);
42
43 //Declare AlgTool properties
44 declareProperty("PrimaryVertexCollection", m_primaryVertexKey = "VxPrimaryCandidate", "Vertices to use as primary vertex");
45 declareProperty("SecondaryVertexCollection", m_secondaryVertexKey = "SecVertices", "Vertices to use as secondary vertex");
46 declareProperty("ConversionVertexCollection", m_conversionVertexKey = "ConversionCandidate", "Vertices to use as conversion vertex");
47 declareProperty("DoWritePrimAndSecVertexOnly", m_doWritePrimAndSecVertexOnly = false,
48 "if true only write primary and secondary vertex, placeholder to be removed");
49 declareProperty("DoWriteHLT", m_doWriteHLT = false, "whether to write HLTAutoKey objects");
50 declareProperty("TrackCollection", m_trackCollection = "Tracks");
51 declareProperty("Chi2OverDOFCut", m_chi2Cut = 10.); // <10 is 'tight', <100 is 'loose'
52 }
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
std::string m_trackCollection
StoreGate key for track collection for association.
std::string m_conversionVertexKey
StoreGate key for conversion candidate collection.
std::string m_secondaryVertexKey
StoreGate key for secondary vertex candidate collection.
const std::string m_typeName
The data type that is generated by this retriever.
float m_chi2Cut
Chi^2 over NumberOfDegreesOfFreedom cut.
bool m_doWriteHLT
wether to write HLTAutoKey objects
std::string m_primaryVertexKey
StoreGate key for primary vertex candidate collection.
bool m_doWritePrimAndSecVertexOnly
write primary and secondary vertizes only - placeholder, to be removed

Member Function Documentation

◆ dataTypeName()

virtual std::string JiveXML::VertexRetriever::dataTypeName ( ) const
inlinevirtual

Return the name of the data type.

Implements JiveXML::IDataRetriever.

Definition at line 45 of file VertexRetriever.h.

45{ return m_typeName; };

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
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

◆ fillPerigeeList()

StatusCode JiveXML::VertexRetriever::fillPerigeeList ( )
privatevirtual

Retrieve measured perigee, automatically switch between Trk::Track and Rec::TrackParticle depending on selected input collection for tracks.

read TrackParticleCollection to compare Perigee and ordering

Definition at line 84 of file VertexRetriever.cxx.

84 {
85
87// from:
88// http://atlas-sw.cern.ch/cgi-bin/viewcvs-all.cgi/users/jsvirzi/PhysicsAnalysis/Atlas_ESD_Analysis/src/Atlas_ESD_Analysis.cxx?root=atlas&view=co
90// InnerDetector/InDetMonitoring/InDetAlignmentMonitoring/TrackSplitterTool.cxx
92// const Trk::Perigee* trackPerigee = inputTrack->perigeeParameters();
93// const Trk::perigee* perigee = dynamic_cast<const Trk::perigee*>( trackPerigee );
94// double m_d0 = perigee->parameters()[Trk::d0];
95
96 std::string searchStr = "TrackParticle";
97 size_t found=m_trackCollection.find(searchStr);
98
99 m_perigeeVector.clear(); // need to clear, otherwise accumulates over events
100 if (found!=std::string::npos){ // User selected a Rec::TrackParticle Collection
101 SG::ReadHandle<Rec::TrackParticleContainer> tracks (m_trackCollection);
102 if (!tracks.isValid()){
103 ATH_MSG_WARNING("Unable to retrieve track collection" << m_trackCollection << " for association ");
104 } else {
105 ATH_MSG_DEBUG("Retrieved " << m_trackCollection);
106
107 //xAOD::VertexContainer::const_iterator VertexItr = cont->begin();
108 //for ( ; VertexItr != cont->end(); ++VertexItr) {
109 for(const auto track : *tracks) {
110 const Trk::Perigee *perigee = track->perigee();
111 //if(perigee == 0) continue; // not skip ! need to keep order for index !
112 m_perigeeVector.push_back( perigee ); // this perigee match works !
113 }
114 }
115 }
116
117 else{ // User selected a Trk::Track collection
118 ATH_MSG_DEBUG(" User selected a Trk::Track collection ! ");
119 SG::ReadHandle<TrackCollection> tracks (m_trackCollection);
120 if (!tracks.isValid()){
121 ATH_MSG_WARNING("Unable to retrieve track collection" << m_trackCollection << " for association ");
122 } else {
123 ATH_MSG_DEBUG("Retrieved " << m_trackCollection);
124 for(const auto track : *tracks) {
125 const Trk::Perigee* trackPerigee = track->perigeeParameters();
126 //const Trk::Perigee *perigee = dynamic_cast<const Trk::Perigee*>( trackPerigee );
127 //if(perigee == 0) continue; // not skip ! need to keep order for index !
128 //m_perigeeVector.push_back( perigee );
129 m_perigeeVector.push_back( trackPerigee );
130 }
131 }
132 }
133 return StatusCode::SUCCESS;
134 }
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
std::vector< const Trk::Perigee * > m_perigeeVector
ParametersT< TrackParametersDim, Charged, PerigeeSurface > Perigee

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::inputHandles ( ) const
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.

◆ interfaceID()

const InterfaceID & JiveXML::IDataRetriever::interfaceID ( )
inlinestaticinherited

Return the interface identifier.

Definition at line 40 of file IDataRetriever.h.

40{ return IID_IDataRetriever; }
static const InterfaceID IID_IDataRetriever("JiveXML::IDataRetriever", 3, 0)

◆ msg()

MsgStream & AthCommonMsg< AlgTool >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< AlgTool >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::outputHandles ( ) const
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.

◆ renounce()

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 > AthCommonDataStore< AthCommonMsg< AlgTool > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
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)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ retrieve()

StatusCode JiveXML::VertexRetriever::retrieve ( ToolHandle< IFormatTool > & FormatTool)
virtual

Retrieve all the data.

For all vertex collections retrieve all data.

  • loop over vertices in all collections
  • for each vertex get basic coordinates and fit parameters
  • find index in track collection for each track associated with this vertex
    Parameters
    FormatToolthe tool that will create formated output from the DataMap

Step 1: Fill in all the basic parameters that should be always there

Step 2: Get track associations

Implements JiveXML::IDataRetriever.

Definition at line 143 of file VertexRetriever.cxx.

143 {
144
145 ATH_MSG_DEBUG("In retrieve()");
146
147 //Get an iterator over all vertex collections,
148 //return if there are none
149 SG::ConstIterator<VxContainer> vtxCollectionItr, vtxCollectionsEnd;
150 if (evtStore()->retrieve(vtxCollectionItr,vtxCollectionsEnd).isFailure()) {
151 if (msgLvl(MSG::DEBUG )) msg(MSG::DEBUG ) << "No VxContainer containers found in this event" << endmsg;
152 return StatusCode::SUCCESS;
153 }
154
155 //See if we can find the requested secondary vertex collection
156 const VxContainer* secondaryVtxCollection;
157 if (evtStore()->retrieve(secondaryVtxCollection,m_secondaryVertexKey).isFailure()) {
158 if (msgLvl(MSG::DEBUG )) msg(MSG::DEBUG ) << "No Secondary vertex container found at SecVertices" << endmsg;
159 }else{
160 if (msgLvl(MSG::DEBUG )) msg(MSG::DEBUG ) << "Secondary vertex container size: " << secondaryVtxCollection->size() << endmsg;
161 }
162
163 //See if we can find the requested primary vertex collection
164 const VxContainer* primaryVtxCollection;
165 if ( evtStore()->retrieve(primaryVtxCollection,m_primaryVertexKey).isFailure()) {
166 if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Primary vertex container "
167 << m_primaryVertexKey << " not found" << endmsg;
168 }
169
170 //Declare all the data vectors we want to retrieve
171 DataVect x;
172 DataVect y;
173 DataVect z;
174 DataVect primVxCand;
178 DataVect numTracks;
179 DataVect tracks;
181
182 //Loop over all vertex containers
183 for ( ; vtxCollectionItr != vtxCollectionsEnd; ++vtxCollectionItr ) {
184
185 //Check whether we should ignore HLTAutoKey collections
186 if ( (!m_doWriteHLT) && ( vtxCollectionItr.key().find("HLT") != std::string::npos)){
187 if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Ignoring HLT collection " << vtxCollectionItr.key() << endmsg;
188 continue;
189 }
190
191 //Get size of current container
192 VxContainer::size_type NVtx = vtxCollectionItr->size();
193
194 ATH_MSG_DEBUG("Reading vertex container " << vtxCollectionItr.key()
195 << " with " << NVtx << " entries");
196
197 //Declare all the data vectors we want to retrieve and reserve space
198 x.reserve(x.size()+NVtx);
199 y.reserve(y.size()+NVtx);
200 z.reserve(z.size()+NVtx);
201 primVxCand.reserve(primVxCand.size()+NVtx);
202 chi2.reserve(chi2.size()+NVtx);
203 sgkey.reserve(sgkey.size()+NVtx);
204 covMatrix.reserve(covMatrix.size()+NVtx);
205 numTracks.reserve(numTracks.size()+NVtx);
206 vertexType.reserve(numTracks.size()+NVtx);
207
209 if (!sc.isFailure()) {
210 ATH_MSG_DEBUG("Perigee list filled with " << m_perigeeVector.size() << " entries ");
211 }
212
213 //Loop over vertices
214 VxContainer::const_iterator vertexItr = vtxCollectionItr->begin();
215 for ( ; vertexItr != vtxCollectionItr->end(); ++vertexItr) {
217// if ( m_doWritePrimAndSecVertexOnly && vtxCollectionItr.key() == m_conversionVertexKey ){
218// if (msgLvl(MSG::DEBUG)){ msg(MSG::DEBUG) << " DoWritePrimAndSecVertexOnly switch true - skipping "
219// << vtxCollectionItr.key() << endmsg; }
220// continue; }
222
226 //Get fit quality object
227 Trk::FitQuality fitQuality = (*vertexItr)->recVertex().fitQuality();
228
229 //degrees of freedom might be zero - beware
230 float this_chi2 = -1;
231 if ( fitQuality.doubleNumberDoF() != 0 ){
233 }
234 //Cut: on Chi^2 over NumberOfDegreesOfFreedom only for ConversionCandidate
235 if ( this_chi2 > m_chi2Cut && ( vtxCollectionItr.key() == m_conversionVertexKey )) continue;
236
237 float this_x = (*vertexItr)->recVertex().position().x()/10.; //Atlantis units are cm
238 float this_y = (*vertexItr)->recVertex().position().y()/10.;
239 float this_z = (*vertexItr)->recVertex().position().z()/10.;
240 float R = std::hypot (this_x, this_y); // distance from beamline
241
242 ATH_MSG_DEBUG(" Collection: " << vtxCollectionItr.key()
243 << ", this_chi2: " << this_chi2 << " - chi2: " << fitQuality.chiSquared()
244 //<< " ," << (*vertexItr)->recVertex().position().x()/10. << " ," << (*vertexItr)->recVertex().position().x()*CLHEP::cm
245 << ", R: " << R);
246
247 chi2.emplace_back( this_chi2 );
248 x.emplace_back( this_x );
249 y.emplace_back( this_y );
250 z.emplace_back( this_z );
251
252 // from: Tracking/TrkEvent/TrkEventPrimitives/VertexType.h
253 const Trk::VertexType vtx_type = (*vertexItr)->vertexType();
254 vertexType.emplace_back( vtx_type );
255 ATH_MSG_DEBUG(" collection " << vtxCollectionItr.key() << ": VertexType: " << vtx_type);
256
257 //Store primary vertex candidate flag
258 if ( &(*vtxCollectionItr) == primaryVtxCollection ){
259 if ( Trk::PriVtx == vtx_type ){ primVxCand.emplace_back( 1 ); // type 1 'real' primary vertex
260 }else{ primVxCand.emplace_back( 0 ); } // hack ! 'type 3 pileup' Should properly use 'vertexType'
261 }else if ( &(*vtxCollectionItr) == secondaryVtxCollection ){
262 primVxCand.emplace_back( 2 ); // normally those are 'type 9 Kshort'
263 }else{
264 primVxCand.emplace_back( 0 );
265 }
266
267// !!! This doesn't work after Migration. 'errorposition' not known anymore ? jpt Dec'13 !!!
269 //double scale = (CLHEP::cm*CLHEP::cm)/(CLHEP::mm*CLHEP::mm); // in order to convert the covMatrix elements from (mm)^2 to (cm)^2 divide them by 100
270 //double precision = 10000; //// otherwise you sometimes loose precision by putting only 6 decimal points into the xml
271 //for (int i = 0;i<3; i++)
272 //for (int j = 0; j<i+1; j++ )
273 //covMatrix.push_back (DataType((*vertexItr)->recVertex().errorPosition().covariance()[i][j]/scale*precision ));
274//-----------
279 covMatrix.emplace_back("2 -.1 .5 -.01 0.002 .01");
280
285
286//---- association from:
287//---- from http://alxr.usatlas.bnl.gov/lxr/source/atlas/Reconstruction/tauRec/src/PhotonConversionPID.cxx
288
289 const std::vector<Trk::VxTrackAtVertex*>* trklist = (*vertexItr)->vxTrackAtVertex();
290
291 ATH_MSG_DEBUG("Tracks at vertex: " << trklist->size());
292
293 numTracks.emplace_back( trklist->size() );
294 sgkey.emplace_back( m_trackCollection ); // sgkey in current scheme is _not_ a multiple !
295
296 tracks.emplace_back( -1 );
297 }
298 } // loop over vertex containers
299
300 //Finally add all retrieved data to the data map
302 dataMap["x"] = x;
303 dataMap["y"] = y;
304 dataMap["z"] = z;
305 dataMap["primVxCand"] = primVxCand;
306 dataMap["chi2"] = chi2;
307 dataMap["covMatrix multiple=\"6\""] = covMatrix;
308 dataMap["numTracks"] = numTracks;
309 dataMap["sgkey"] = sgkey;
310 dataMap["vertexType"] = vertexType;
311
312 //If there had been any tracks, add a tag
313 if (!numTracks.empty()){
314 //Calculate average number of tracks per vertex
315 double NTracksPerVertex = tracks.size()*1./numTracks.size();
316 std::string tag = "tracks multiple=\"" +DataType(NTracksPerVertex).toString()+"\"";
317 dataMap[tag] = tracks;
319// std::string tag2 = "sgkey multiple=\"" +DataType(NTracksPerVertex).toString()+"\"";
320// dataMap[tag2] = sgkey;
321 }
322
326 //return FormatTool->AddToEvent(dataTypeName(), "PrimSecConvRecVx", &dataMap);
327 return FormatTool->AddToEvent(dataTypeName(), "", &dataMap);
328
329 } // end retrieve
#define endmsg
OFFLINE_FRAGMENTS_NAMESPACE::PointerType DataType
static Double_t sc
Athena::TPCnvVers::Old VxContainer
#define y
#define x
#define z
ServiceHandle< StoreGateSvc > & evtStore()
bool msgLvl(const MSG::Level lvl) const
MsgStream & msg() const
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
typename DataVectorBase< Trk::VxCandidate >::Base::size_type size_type
Definition DataVector.h:814
size_type size() const noexcept
Returns the number of elements in the collection.
virtual std::string dataTypeName() const
Return the name of the data type.
virtual StatusCode fillPerigeeList()
Retrieve measured perigee, automatically switch between Trk::Track and Rec::TrackParticle depending o...
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
const std::string & key() const
Get the key string with which the current object was stored.
double chiSquared() const
returns the of the overall track fit
Definition FitQuality.h:56
double doubleNumberDoF() const
returns the number of degrees of freedom of the overall track or vertex fit as double
Definition FitQuality.h:68
double chi2(TH1 *h0, TH1 *h1)
double R(const INavigable4Momentum *p1, const double v_eta, const double v_phi)
::StatusCode StatusCode
StatusCode definition for legacy code.
std::map< std::string, DataVect > DataMap
Definition DataType.h:59
std::vector< DataType > DataVect
Defines a map with a key and a vector of DataType objects e.g.
Definition DataType.h:58
FitQualityOnSurface fitQuality(const MultiComponentState &, const MeasurementBase &)
Method for determining the chi2 of the multi-component state and the number of degrees of freedom.
VertexType
This file defines the enums in the Trk namespace for the different vertex types.
Definition VertexType.h:25
@ PriVtx
Primary Vertex.
Definition VertexType.h:27
sgkey(tool)
Definition common.py:1027

◆ sysInitialize()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysInitialize ( )
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.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_chi2Cut

float JiveXML::VertexRetriever::m_chi2Cut
private

Chi^2 over NumberOfDegreesOfFreedom cut.

Definition at line 65 of file VertexRetriever.h.

◆ m_conversionVertexKey

std::string JiveXML::VertexRetriever::m_conversionVertexKey
private

StoreGate key for conversion candidate collection.

Definition at line 56 of file VertexRetriever.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_doWriteHLT

bool JiveXML::VertexRetriever::m_doWriteHLT
private

wether to write HLTAutoKey objects

Definition at line 58 of file VertexRetriever.h.

◆ m_doWritePrimAndSecVertexOnly

bool JiveXML::VertexRetriever::m_doWritePrimAndSecVertexOnly
private

write primary and secondary vertizes only - placeholder, to be removed

Definition at line 60 of file VertexRetriever.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_perigeeVector

std::vector<const Trk::Perigee*> JiveXML::VertexRetriever::m_perigeeVector
private

Definition at line 70 of file VertexRetriever.h.

◆ m_primaryVertexKey

std::string JiveXML::VertexRetriever::m_primaryVertexKey
private

StoreGate key for primary vertex candidate collection.

Definition at line 52 of file VertexRetriever.h.

◆ m_secondaryVertexKey

std::string JiveXML::VertexRetriever::m_secondaryVertexKey
private

StoreGate key for secondary vertex candidate collection.

Definition at line 54 of file VertexRetriever.h.

◆ m_trackCollection

std::string JiveXML::VertexRetriever::m_trackCollection
private

StoreGate key for track collection for association.

Definition at line 63 of file VertexRetriever.h.

◆ m_typeName

const std::string JiveXML::VertexRetriever::m_typeName
private

The data type that is generated by this retriever.

Definition at line 68 of file VertexRetriever.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< AlgTool > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< AlgTool > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: