ATLAS Offline Software
Loading...
Searching...
No Matches
Trk::AdaptiveVertexFitterTestAlg Class Reference

#include <AdaptiveVertexFitterTestAlg.h>

Inheritance diagram for Trk::AdaptiveVertexFitterTestAlg:
Collaboration diagram for Trk::AdaptiveVertexFitterTestAlg:

Public Member Functions

virtual StatusCode initialize () override
 Standard Gaudi initialize method.
virtual StatusCode execute (const EventContext &ctx) const override
 Execute the algorithm.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) const
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.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

StatusCode test1 (const EventContext &ctx) const
StatusCode test2 (const EventContext &ctx) const
StatusCode test3 (const EventContext &ctx) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< Trk::IVertexFitterm_fitter { this, "Tool", "Trk::AdaptiveVertexFitter", "Tool to test." }
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
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

Definition at line 26 of file AdaptiveVertexFitterTestAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Member Function Documentation

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

62{
63 return 0;
64}

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

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

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode Trk::AdaptiveVertexFitterTestAlg::execute ( const EventContext & ctx) const
overridevirtual

Execute the algorithm.

Standard Gaudi execute method.

Definition at line 438 of file AdaptiveVertexFitterTestAlg.cxx.

439{
440 ATH_MSG_VERBOSE ("execute");
441
442 ATH_CHECK( test1(ctx) );
443 ATH_CHECK( test2(ctx) );
444 ATH_CHECK( test3(ctx) );
445 return StatusCode::SUCCESS;
446}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_VERBOSE(x)
StatusCode test3(const EventContext &ctx) const
StatusCode test2(const EventContext &ctx) const
StatusCode test1(const EventContext &ctx) const

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

88{
89 // If we didn't find any symlinks to add, just return the collection
90 // from the base class. Otherwise, return the extended collection.
91 if (!m_extendedExtraObjects.empty()) {
93 }
95}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ initialize()

StatusCode Trk::AdaptiveVertexFitterTestAlg::initialize ( )
overridevirtual

Standard Gaudi initialize method.

Definition at line 430 of file AdaptiveVertexFitterTestAlg.cxx.

431{
432 ATH_CHECK( m_fitter.retrieve() );
433 return StatusCode::SUCCESS;
434}
ToolHandle< Trk::IVertexFitter > m_fitter

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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.

◆ isClonable()

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

75{
76 return BaseAlg::sysExecute (ctx);
77}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

105 {
107
108 if (sc.isFailure()) {
109 return sc;
110 }
111
112 ServiceHandle<ICondSvc> cs("CondSvc",name());
113 for (auto h : outputHandles()) {
114 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
115 // do this inside the loop so we don't create the CondSvc until needed
116 if ( cs.retrieve().isFailure() ) {
117 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
118 return StatusCode::SUCCESS;
119 }
120 if (cs->regHandle(this,*h).isFailure()) {
122 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
123 << " with CondSvc");
124 }
125 }
126 }
127 return sc;
128}
#define ATH_MSG_ERROR(x)
#define ATH_MSG_WARNING(x)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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.

◆ test1()

StatusCode Trk::AdaptiveVertexFitterTestAlg::test1 ( const EventContext & ctx) const
private

Definition at line 449 of file AdaptiveVertexFitterTestAlg.cxx.

450{
451 xAOD::Vertex exp_v0;
452 exp_v0.makePrivateStore();
453 exp_v0.setPosition ({4.27611, 4.35683, 1.62467});
454 exp_v0.setFitQuality (1.69878, 0.79376);
455 exp_v0.setCovariance (std::vector<float>
456 {28.318, 26.913, 37.8531, 17.3323, 17.3041, 23.6152});
457 setFitQuality (exp_v0, 0, 0.936, 1);
458 setFitQuality (exp_v0, 1, 0.000, 2);
459 setFitQuality (exp_v0, 2, 0.000, 2);
460
461 NeutralUVec_t neutrals = makeNeutrals1();
462 std::unique_ptr<xAOD::Vertex> v1 (m_fitter->fit (ctx, std::vector<const Trk::TrackParameters*>(),
463 asVec (neutrals)));
464 compareVertex (*v1, exp_v0);
465
466 return StatusCode::SUCCESS;
467}
void setCovariance(const std::vector< float > &value)
Sets the covariance matrix as a simple vector of values.
void setPosition(const Amg::Vector3D &position)
Sets the 3-position.
void setFitQuality(float chiSquared, float numberDoF)
Set the 'Fit Quality' information.
Vertex_v1 Vertex
Define the latest version of the vertex class.

◆ test2()

StatusCode Trk::AdaptiveVertexFitterTestAlg::test2 ( const EventContext & ctx) const
private

Definition at line 470 of file AdaptiveVertexFitterTestAlg.cxx.

471{
472 xAOD::Vertex exp_v0;
473 exp_v0.makePrivateStore();
474 exp_v0.setPosition ({-0.666051, 1.88126, -4.2844});
475 exp_v0.setFitQuality (1.36804, 6.60783);
476 exp_v0.setCovariance (std::vector<float>
477 {25.8826, 26.6122, 91.0458, 6.34189, 14.6174, 13.9884});
478 setRefittedPerigee(
479 exp_v0,
480 0,
481 1,
482 { 1.58753, 0.380882, -10.2063 },
483 { 399.6301520, 600.2463141, 200.0002601 },
484 { 1.58278, -0.618193, -0.821391, 0.00010879, -0.171884, -0.618193,
485 2.32566, 0.908938, 0.800925, 0.346876, -0.821391, 0.908938,
486 1.20816, -0.000294073, 0.461137, 0.00010879, 0.800925, -0.000294073,
487 1, -0.000269915, -0.171884, 0.346876, 0.461137, -0.000269915,
488 1 });
489 setFitQuality (exp_v0, 0, 0.000, 2);
490 setRefittedPerigee(
491 exp_v0,
492 1,
493 -1,
494 { -0.209537, 1.1947, -2.59698 },
495 { 600.4814296, 399.2766328, -200.0005578 },
496 { 3.53014, 0.466334, -2.04043, 0.000621337, -0.653413, 0.466334,
497 3.53405, -0.415368, 1.56192, -0.206492, -2.04043, -0.415368,
498 1.81448, -0.000856625, 0.901728, 0.000621337, 1.56192, -0.000856625,
499 1, -0.000578862, -0.653413, -0.206492, 0.901728, -0.000578862,
500 1 });
501 setFitQuality (exp_v0, 1, 0.017, 2);
502 setRefittedPerigee(exp_v0,
503 2,
504 -1,
505 { 1.20591, 1.3197, -6.99803 },
506 { 299.9873170, 1000.0038041, 100.0000072 },
507 { 1.00049,
508 0.00413671,
509 0.0221412,
510 -2.7918e-08,
511 -0.000147081,
512 0.00413671,
513 1.03551,
514 0.18734,
515 -0.0223173,
516 -0.00248881,
517 0.0221412,
518 0.18734,
519 1.00242,
520 -1.91988e-06,
521 -0.0133167,
522 -2.7918e-08,
523 -0.0223173,
524 -1.91988e-06,
525 1,
526 7.24261e-06,
527 -0.000147081,
528 -0.00248881,
529 -0.0133167,
530 7.24261e-06,
531 1 });
532 setFitQuality (exp_v0, 2, 0.020, 2);
533 setFitQuality (exp_v0, 3, 0.136, 2);
534 setFitQuality (exp_v0, 4, 0.000, 2);
535 setFitQuality (exp_v0, 5, 0.000, 2);
536
537 Amg::Vector3D pnt1 (5, 6, -3);
538
539 TrackUVec_t tracks = makeTracks (makePerigees1());
540 setInitialPerigees (exp_v0, tracks);
541
542 PerigeeUVec_t perigees = makePerigees1();
543 NeutralUVec_t neutrals = makeNeutrals1();
544 std::unique_ptr<xAOD::Vertex> v1 (m_fitter->fit (ctx,
545 asVec (perigees),
546 asVec (neutrals),
547 pnt1));
548 compareVertex (*v1, exp_v0);
549
550 xAODTPUVec_t xtps = makexAODTP (makePerigees1());
551 xAODNPUVec_t xaodnp = makexAODNP (makeNeutrals1());
552 std::unique_ptr<xAOD::Vertex> v2 (m_fitter->fit (ctx,
553 asVec (xtps),
554 asVec (xaodnp),
555 pnt1));
556 clearInitialPerigees (exp_v0);
557 compareVertex (*v2, exp_v0);
558
559 return StatusCode::SUCCESS;
560}
Eigen::Matrix< double, 3, 1 > Vector3D

◆ test3()

StatusCode Trk::AdaptiveVertexFitterTestAlg::test3 ( const EventContext & ctx) const
private

Definition at line 564 of file AdaptiveVertexFitterTestAlg.cxx.

565{
566 xAOD::Vertex exp_v0;
567 exp_v0.makePrivateStore();
568 exp_v0.setPosition ({4.85208, 5.949, -3.1349});
569 exp_v0.setFitQuality (2.38503, 8.54327);
570 exp_v0.setCovariance (std::vector<float>
571 {1.183, 0.0323074, 1.21271,
572 0.00903037, 0.0167373, 1.12584});
573 setRefittedPerigee(
574 exp_v0,
575 0,
576 1,
577 { 5.1719083, 5.7335618, -8.4196568 },
578 { 402.8346276, 598.1012479, 199.9979000 },
579 { 135.368, 4.54292, 41.4349, -0.0182748, -10.0936,
580 4.54292, 38.8427, 1.48244, -6.13913, -0.389733,
581 41.4349, 1.48244, 13.5349, -0.00640884, -3.54057,
582 -0.0182748, -6.13913, -0.00640884, 1, 0.00218082,
583 -10.0936, -0.389733, -3.54057, 0.00218082, 1 });
584 setFitQuality (exp_v0, 0, 0.682, 2);
585
586 setRefittedPerigee(exp_v0,
587 1,
588 -1,
589 { 5.4869777, 5.0058724, -4.4978936 },
590 { 598.2006961, 402.6869274, -199.9979142 },
591 { 111.922, -11.1715, 35.7532, -0.0162277, -9.04482,
592 -11.1715, 35.9577, -3.83303, -5.80842, 1.04702,
593 35.7532, -3.83303, 12.2632, -0.0060222, -3.35579,
594 -0.0162277, -5.80842, -0.0060222, 1, 0.00216502,
595 -9.04482, 1.04702, -3.35579, 0.00216502, 1 });
596 setFitQuality (exp_v0, 1, 0.061, 2);
597
598 setRefittedPerigee(
599 exp_v0,
600 2,
601 -1,
602 { 2.7708142, 6.5661849, -6.4736255 },
603 { 296.8467752, 1000.9403742, 100.0017963 },
604 { 114.181, -7.37341, 35.593, -0.0172367, -9.10529,
605 -7.37341, 32.345, -2.46816, -5.55155, 0.684107,
606 35.593, -2.46816, 11.9239, -0.00626001, -3.30551,
607 -0.0172367, -5.55155, -0.00626001, 1, 0.00180269,
608 -9.10529, 0.684107, -3.30551, 0.00180269, 1 });
609 setFitQuality (exp_v0, 2, 0.352, 2);
610 setFitQuality (exp_v0, 3, 1.119, 1);
611 setFitQuality (exp_v0, 4, 0.000, 2);
612 setFitQuality (exp_v0, 5, 0.000, 2);
613
614 Amg::Vector3D pnt1 (5, 6, -3);
615 xAOD::Vertex pnt2;
616 pnt2.makePrivateStore();
617 pnt2.setPosition (pnt1);
618 AmgSymMatrix(3) pnt2covar;
619 pnt2covar.setIdentity();
620 pnt2.setCovariancePosition (pnt2covar);
621
622 TrackUVec_t tracks = makeTracks (makePerigees1());
623 setInitialPerigees (exp_v0, tracks);
624
625 PerigeeUVec_t perigees = makePerigees1();
626 NeutralUVec_t neutrals = makeNeutrals1();
627 std::unique_ptr<xAOD::Vertex> v1 (m_fitter->fit (ctx,
628 asVec (perigees),
629 asVec (neutrals),
630 pnt2));
631 compareVertex (*v1, exp_v0);
632
633 xAODTPUVec_t xtps = makexAODTP (makePerigees1());
634 xAODNPUVec_t xaodnp = makexAODNP (makeNeutrals1());
635 std::unique_ptr<xAOD::Vertex> v2 (m_fitter->fit (ctx,
636 asVec (xtps),
637 asVec (xaodnp),
638 pnt2));
639 clearInitialPerigees (exp_v0);
640 compareVertex (*v2, exp_v0);
641
642 return StatusCode::SUCCESS;
643}
#define AmgSymMatrix(dim)
boost::graph_traits< boost::adjacency_list< boost::vecS, boost::vecS, boost::bidirectionalS > >::vertex_descriptor Vertex

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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 }

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default).

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default).

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_fitter

ToolHandle<Trk::IVertexFitter> Trk::AdaptiveVertexFitterTestAlg::m_fitter { this, "Tool", "Trk::AdaptiveVertexFitter", "Tool to test." }
private

Definition at line 46 of file AdaptiveVertexFitterTestAlg.h.

47{ this, "Tool", "Trk::AdaptiveVertexFitter", "Tool to test." };

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.


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