ATLAS Offline Software
Loading...
Searching...
No Matches
ActsExtrapolationAlg Class Reference

#include <ActsExtrapolationAlg.h>

Inheritance diagram for ActsExtrapolationAlg:
Collaboration diagram for ActsExtrapolationAlg:

Public Member Functions

StatusCode initialize () override
StatusCode execute (const EventContext &ctx) const override
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

void writeStepsObj (const std::vector< Acts::detail::Step > &steps) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ServiceHandle< IActsPropStepRootWriterSvcm_propStepWriterSvc {this, "PropStepRootWriterSvc", "ActsPropStepRootWriterSvc"}
ServiceHandle< IAthRNGSvcm_rndmGenSvc {this, "AthRNGSvc", "AthRNGSvc"}
ToolHandle< ActsTrk::IExtrapolationToolm_extrapolationTool {this, "ExtrapolationTool", "ActsExtrapolationTool"}
PublicToolHandle< ActsTrk::ITrackingGeometryToolm_trackingGeometryTool {this, "TrackingGeometryTool", "ActsTrackingGeometryTool"}
Gaudi::Property< std::vector< double > > m_etaRange {this, "EtaRange", {-3, 3}, "The eta range for particles"}
Gaudi::Property< std::vector< double > > m_ptRange {this, "PtRange", {0.1, 1000}, "The pt range for particles"}
Gaudi::Property< size_t > m_nParticlePerEvent {this, "NParticlesPerEvent", 1, "The number of particles per event"}
Gaudi::Property< bool > m_writeMaterialTracks {this, "WriteMaterialTracks", false, "Write material track"}
Gaudi::Property< bool > m_writePropStep {this, "WritePropStep", false, "Write propagation step"}
ServiceHandle< IActsMaterialTrackWriterSvcm_materialTrackWriterSvc {this, "MaterialTrackWriterSvc", "ActsMaterialTrackWriterSvc"}
std::mutex m_writeMutex
size_t m_objVtxCount ATLAS_THREAD_SAFE {0}
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 40 of file ActsExtrapolationAlg.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.

64{
65 return 0;
66}

◆ 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 ActsExtrapolationAlg::execute ( const EventContext & ctx) const
override

Definition at line 61 of file ActsExtrapolationAlg.cxx.

61 {
62
63 ATH_MSG_VERBOSE(name() << "::" << __FUNCTION__);
64
65 ATHRNG::RNGWrapper *rngWrapper = m_rndmGenSvc->getEngine(this);
66 rngWrapper->setSeed(name(), ctx);
67 CLHEP::HepRandomEngine *rngEngine = rngWrapper->getEngine(ctx);
68
69 ATH_MSG_VERBOSE("Extrapolating " << m_nParticlePerEvent << " particles");
70
71 for (size_t i = 0; i < m_nParticlePerEvent; i++) {
72 double d0 = 0;
73 double z0 = 0;
74 double phi = rngEngine->flat() * 2 * M_PI - M_PI;
75 std::vector<double> etaRange = m_etaRange;
76 double etaMin = etaRange.at(0);
77 double etaMax = etaRange.at(1);
78 double eta = rngEngine->flat() * std::abs(etaMax - etaMin) + etaMin;
79
80 std::vector<double> ptRange = m_ptRange;
81 double ptMin = ptRange.at(0) * 1_GeV;
82 double ptMax = ptRange.at(1) * 1_GeV;
83
84 double pt = rngEngine->flat() * std::abs(ptMax - ptMin) + ptMin;
85
86 Acts::Vector3 momentum(pt * std::cos(phi), pt * std::sin(phi),
87 pt * std::sinh(eta));
88
89 double theta = Acts::VectorHelpers::theta(momentum);
90
91 double charge = rngEngine->flat() > 0.5 ? -1 : 1;
92
93 double qop = charge / momentum.norm();
94
95 std::shared_ptr<Acts::PerigeeSurface> surface =
96 Acts::Surface::makeShared<Acts::PerigeeSurface>(
97 Acts::Vector3(0, 0, 0));
98
99 double t = 0;
100 ATH_MSG_VERBOSE("Pseudo-particle: eta: " << eta << " phi: " << phi);
101
102 Acts::BoundVector pars;
103 // cppcheck-suppress constStatement; will be able to initialize this directly with eigen 3.4
104 pars << d0, z0, phi, theta, qop, t;
105 std::optional<Acts::BoundSquareMatrix> cov = std::nullopt;
106
107 using PropagationOutput = ActsTrk::IExtrapolationTool::PropagationOutput;
108 PropagationOutput output;
109
110 if (charge != 0.) {
111 // Perigee, no alignment -> default geo context
112 Acts::GenericBoundTrackParameters startParameters(std::move(surface), std::move(pars), std::move(cov), Acts::ParticleHypothesis::pion());
113 output = m_extrapolationTool->propagationSteps(ctx, startParameters);
114 if(output.first.size() == 0) {
115 ATH_MSG_WARNING("Got ZERO steps from the extrapolation tool");
116 }
117 if (m_writePropStep) {
118 m_propStepWriterSvc->write(output.first);
119 }
120
123 track.first.first = Acts::Vector3::Zero();
124 track.first.second = momentum;
125 track.second = std::move(output.second);
126 m_materialTrackWriterSvc->write(track);
127 }
128 }
129
130 ATH_MSG_VERBOSE(name() << " execute done");
131 }
132
133 return StatusCode::SUCCESS;
134}
#define M_PI
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
Scalar theta() const
theta method
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
double charge(const T &p)
Definition AtlasPID.h:997
void setSeed(const std::string &algName, const EventContext &ctx)
Set the random seed using a string (e.g.
Definition RNGWrapper.h:169
CLHEP::HepRandomEngine * getEngine(const EventContext &ctx) const
Retrieve the random engine corresponding to the provided EventContext.
Definition RNGWrapper.h:134
ToolHandle< ActsTrk::IExtrapolationTool > m_extrapolationTool
Gaudi::Property< size_t > m_nParticlePerEvent
ServiceHandle< IAthRNGSvc > m_rndmGenSvc
Gaudi::Property< bool > m_writePropStep
Gaudi::Property< std::vector< double > > m_etaRange
Gaudi::Property< bool > m_writeMaterialTracks
Gaudi::Property< std::vector< double > > m_ptRange
ServiceHandle< IActsPropStepRootWriterSvc > m_propStepWriterSvc
ServiceHandle< IActsMaterialTrackWriterSvc > m_materialTrackWriterSvc
std::pair< std::vector< Acts::detail::Step >, RecordedMaterial > PropagationOutput
Abrivation of the recorded steps and the allocated material.
std::pair< std::pair< Acts::Vector3, Acts::Vector3 >, RecordedMaterial > RecordedMaterialTrack
Recorded material track.
etaRange
Filling Eta range.
output
Definition merge.py:16

◆ 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.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
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 ActsExtrapolationAlg::initialize ( )
override

Definition at line 46 of file ActsExtrapolationAlg.cxx.

46 {
47
48 ATH_MSG_DEBUG(name() << "::" << __FUNCTION__);
49
50 ATH_CHECK(m_rndmGenSvc.retrieve());
56 }
57
58 return StatusCode::SUCCESS;
59}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
PublicToolHandle< ActsTrk::ITrackingGeometryTool > m_trackingGeometryTool

◆ 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.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ 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.

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

◆ 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 }

◆ writeStepsObj()

void ActsExtrapolationAlg::writeStepsObj ( const std::vector< Acts::detail::Step > & steps) const
private

Definition at line 137 of file ActsExtrapolationAlg.cxx.

138 {
139
140 std::lock_guard<std::mutex> lock(m_writeMutex);
141
142 static std::ofstream out ATLAS_THREAD_SAFE ("steps.obj");
143 std::stringstream lstr;
144 lstr << "l";
145 for (const auto &step : steps) {
146 const auto &pos = step.position;
147 out << "v " << pos.x() << " " << pos.y() << " " << pos.z() << std::endl;
148 lstr << " " << m_objVtxCount;
149 m_objVtxCount++;
150 }
151
152 lstr << std::endl;
153
154 out << lstr.str() << std::endl;
155}
size_t m_objVtxCount ATLAS_THREAD_SAFE

Member Data Documentation

◆ ATLAS_THREAD_SAFE

size_t m_objVtxCount ActsExtrapolationAlg::ATLAS_THREAD_SAFE {0}
mutableprivate

Definition at line 68 of file ActsExtrapolationAlg.h.

68{0};

◆ 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_etaRange

Gaudi::Property<std::vector<double> > ActsExtrapolationAlg::m_etaRange {this, "EtaRange", {-3, 3}, "The eta range for particles"}
private

Definition at line 57 of file ActsExtrapolationAlg.h.

57{this, "EtaRange", {-3, 3}, "The eta range for particles"};

◆ 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_extrapolationTool

ToolHandle<ActsTrk::IExtrapolationTool> ActsExtrapolationAlg::m_extrapolationTool {this, "ExtrapolationTool", "ActsExtrapolationTool"}
private

Definition at line 51 of file ActsExtrapolationAlg.h.

51{this, "ExtrapolationTool", "ActsExtrapolationTool"};

◆ m_materialTrackWriterSvc

ServiceHandle<IActsMaterialTrackWriterSvc> ActsExtrapolationAlg::m_materialTrackWriterSvc {this, "MaterialTrackWriterSvc", "ActsMaterialTrackWriterSvc"}
private

Definition at line 64 of file ActsExtrapolationAlg.h.

64{this, "MaterialTrackWriterSvc", "ActsMaterialTrackWriterSvc"};

◆ m_nParticlePerEvent

Gaudi::Property<size_t> ActsExtrapolationAlg::m_nParticlePerEvent {this, "NParticlesPerEvent", 1, "The number of particles per event"}
private

Definition at line 59 of file ActsExtrapolationAlg.h.

59{this, "NParticlesPerEvent", 1, "The number of particles per event"};

◆ m_propStepWriterSvc

ServiceHandle<IActsPropStepRootWriterSvc> ActsExtrapolationAlg::m_propStepWriterSvc {this, "PropStepRootWriterSvc", "ActsPropStepRootWriterSvc"}
private

Definition at line 48 of file ActsExtrapolationAlg.h.

48{this, "PropStepRootWriterSvc", "ActsPropStepRootWriterSvc"};

◆ m_ptRange

Gaudi::Property<std::vector<double> > ActsExtrapolationAlg::m_ptRange {this, "PtRange", {0.1, 1000}, "The pt range for particles"}
private

Definition at line 58 of file ActsExtrapolationAlg.h.

58{this, "PtRange", {0.1, 1000}, "The pt range for particles"};

◆ m_rndmGenSvc

ServiceHandle<IAthRNGSvc> ActsExtrapolationAlg::m_rndmGenSvc {this, "AthRNGSvc", "AthRNGSvc"}
private

Definition at line 49 of file ActsExtrapolationAlg.h.

49{this, "AthRNGSvc", "AthRNGSvc"};

◆ m_trackingGeometryTool

PublicToolHandle<ActsTrk::ITrackingGeometryTool> ActsExtrapolationAlg::m_trackingGeometryTool {this, "TrackingGeometryTool", "ActsTrackingGeometryTool"}
private

Definition at line 53 of file ActsExtrapolationAlg.h.

53{this, "TrackingGeometryTool", "ActsTrackingGeometryTool"};

◆ 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.

◆ m_writeMaterialTracks

Gaudi::Property<bool> ActsExtrapolationAlg::m_writeMaterialTracks {this, "WriteMaterialTracks", false, "Write material track"}
private

Definition at line 62 of file ActsExtrapolationAlg.h.

62{this, "WriteMaterialTracks", false, "Write material track"};

◆ m_writeMutex

std::mutex ActsExtrapolationAlg::m_writeMutex
mutableprivate

Definition at line 67 of file ActsExtrapolationAlg.h.

◆ m_writePropStep

Gaudi::Property<bool> ActsExtrapolationAlg::m_writePropStep {this, "WritePropStep", false, "Write propagation step"}
private

Definition at line 63 of file ActsExtrapolationAlg.h.

63{this, "WritePropStep", false, "Write propagation step"};

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