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

#include <TruthTrackBuilder.h>

Inheritance diagram for Trk::TruthTrackBuilder:
Collaboration diagram for Trk::TruthTrackBuilder:

Public Member Functions

 TruthTrackBuilder (const std::string &t, const std::string &n, const IInterface *p)
 Constructor.
StatusCode initialize ()
StatusCode finalize ()
TrackcreateTrack (const PRD_TruthTrajectory &prdTraj, SegmentCollection *segs=0) const
 return a map of GenParticles to PRDs for further processing
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 ()
 AlgTool interface methods.

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

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< ITrackFitterm_trackFitter {this, "TrackFitter", ""}
 fits the PRDs
ToolHandle< IExtrapolatorm_extrapolator {this, "ExtrapolationTool", ""}
 extrapolator
ToolHandle< IRIO_OnTrackCreatorm_rotcreator {this, "RotCreatorTool", ""}
ToolHandle< IRIO_OnTrackCreatorm_rotcreatorbroad {this, "BroadRotCreatorTool", ""}
const AtlasDetectorIDm_DetID
Gaudi::Property< size_t > m_minNdof {this, "MinDegreesOfFreedom", 6}
 checks min degrees of freedom if bigger -1
Gaudi::Property< bool > m_onlyPrimaries {this, "OnlyPrimaries", false}
 restrict track creation to primaries
Gaudi::Property< unsigned int > m_minSiHits {this, "MinSiHits", 7}
 min number of Si hits for refit
Gaudi::Property< unsigned int > m_minSiHitsForward {this, "MinSiHitsForward", 7}
 min number of Si hits for refit in forward region (ITk specific)
Gaudi::Property< float > m_forwardBoundary {this, "ForwardBoundary", 2.5}
 Boundary eta value defining the forward region.
Gaudi::Property< int > m_matEffects
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 37 of file TruthTrackBuilder.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

◆ TruthTrackBuilder()

Trk::TruthTrackBuilder::TruthTrackBuilder ( const std::string & t,
const std::string & n,
const IInterface * p )

Constructor.

Definition at line 28 of file TruthTrackBuilder.cxx.

28 :
29 AthAlgTool(t,n,p),
30 m_DetID(nullptr)
31{
32 declareInterface<Trk::ITruthTrackBuilder>(this);
33}
AthAlgTool()
Default constructor:
const AtlasDetectorID * m_DetID

Member Function Documentation

◆ createTrack()

Trk::Track * Trk::TruthTrackBuilder::createTrack ( const PRD_TruthTrajectory & prdTraj,
SegmentCollection * segs = 0 ) const
virtual

return a map of GenParticles to PRDs for further processing

< get the charge via the particle table ...

<

Todo
: if we need a dedicated electron fitter is has to go in here !

< Refit a second time to add TRT hits

Implements Trk::ITruthTrackBuilder.

Definition at line 78 of file TruthTrackBuilder.cxx.

79{
80 const EventContext& ctx = Gaudi::Hive::currentContext();
81 if( segs != nullptr ){
82 ATH_MSG_WARNING("Requested to fill segment collection but mode not implemented");
83 }
84 ATH_MSG_VERBOSE("The PRD Truth trajectory contains " << prdTraj.prds.size() << " PRDs.");
85
86 // get the associated GenParticle
87 auto genPart = prdTraj.genParticle;
88 if (!genPart) {
89 ATH_MSG_WARNING("No GenParticle associated to this PRD_TruthTrajectory. Ignoring track creation.");
90 return nullptr;
91 }
92 ATH_MSG_VERBOSE("Got PRD Truth trajectory with " << prdTraj.nDoF << " degrees of freedom.");
93 // check min degrees of freedom
94 if ( m_minNdof > 0 && prdTraj.nDoF < m_minNdof) return nullptr;
95 // get the startPosition : math library madness as usual
96 Amg::Vector3D startPos = genPart->production_vertex() ?
97 Amg::Vector3D(genPart->production_vertex()->position().x(),
98 genPart->production_vertex()->position().y(),
99 genPart->production_vertex()->position().z()) : Amg::Vector3D(0.,0.,0.);
100 Amg::Vector3D startMom(genPart->momentum().x(),
101 genPart->momentum().y(),
102 genPart->momentum().z());
104
105 const int pdgCode = genPart->pdg_id();
106 const double charge = MC::charge(pdgCode);
107
108 // ----------------------- get teh PRDS and start
109 const std::vector<const Trk::PrepRawData*> & clusters = prdTraj.prds;
110 // nominal 0,0,0 position for track fit seeding
111 Trk::PerigeeSurface persurf;
112 Trk::CurvilinearParameters startParams(startPos,startMom,charge);
113 //minimal conversion; ideally the extrapolator would return a unique_ptr
114 auto per = std::unique_ptr<Trk::TrackParameters>(
115 m_extrapolator->extrapolate(ctx,
116 startParams,
117 persurf,
119 false,
121 if (!per) {
122 ATH_MSG_DEBUG("Perigee creation for genParticle start position failed. "
123 "Skipping track creation.");
124 return nullptr;
125 }
126 // first TrackStateOnSurface is the Perigee
127 std::bitset<Trk::TrackStateOnSurface::NumberOfTrackStateOnSurfaceTypes> typePattern;
128 typePattern.set(Trk::TrackStateOnSurface::Perigee);
129
130 const Trk::TrackStateOnSurface *pertsos=new Trk::TrackStateOnSurface(nullptr,std::move(per),nullptr,typePattern);
131 auto traj = std::make_unique<Trk::TrackStates>();
132 traj->push_back(pertsos);
133
134
135
136 std::unique_ptr<const Trk::TrackParameters> prevpar(startParams.uniqueClone());
137 // First create a Trk::Track object 'traj' that will go into the fitter for refitting
138 int i=0;
139 for ( ;i<(int)clusters.size();i++){
140 if (m_DetID->is_trt(clusters[i]->identify())) break;
141 const Trk::Surface &surf=clusters[i]->detectorElement()->surface(clusters[i]->identify());
142 if (surf==prevpar->associatedSurface()) continue;
143 bool ispixel=false;
144 if (m_DetID->is_pixel(clusters[i]->identify())) ispixel=true;
145
146 auto thispar = std::unique_ptr<const Trk::TrackParameters>(
147 m_extrapolator->extrapolate(ctx,
148 *prevpar,
149 surf,
151 false,
153 if (!thispar)
154 break;
155 if (!surf.insideBounds(thispar->localPosition(),20*Gaudi::Units::mm,50*Gaudi::Units::mm)) {
156 continue;
157 }
158 AmgVector(5) params=thispar->parameters();
159 params[Trk::loc1]=clusters[i]->localPosition().x();
160 if (ispixel) params[Trk::loc2]=clusters[i]->localPosition().y();
161 std::bitset<Trk::TrackStateOnSurface::NumberOfTrackStateOnSurfaceTypes> typePattern;
162 typePattern.set(Trk::TrackStateOnSurface::Measurement);
163 std::unique_ptr<Trk::RIO_OnTrack> rot{m_rotcreator->correct(*clusters[i],*thispar,ctx)};
164 if (!rot) {
165 continue;
166 }
167 // create the ROTs for the reference trajectory
168 const Trk::TrackStateOnSurface *tsos=new Trk::TrackStateOnSurface(std::move(rot),thispar->uniqueClone(),nullptr,typePattern);
169 traj->push_back(tsos);
170 prevpar=std::move(thispar);
171 }
172 // this is the reference trajectory to be refitted
173 Trk::TrackInfo info;
174 Trk::Track track(info, std::move(traj), nullptr);
175 if (/* ndof<0 */ (track.measurementsOnTrack()->size() < m_minSiHits &&
176 std::abs(genPart->momentum().eta()) <= m_forwardBoundary) ||
177 (track.measurementsOnTrack()->size() < m_minSiHitsForward &&
178 std::abs(genPart->momentum().eta()) > m_forwardBoundary) ||
181 "Track does not fulfill requirements for refitting. Skipping it.");
182 return nullptr;
183 }
184 // choose the material effects
186
187 // create the refitted track
188 //
189 //
190 //
192
193 Trk::Track *refittedtrack=(m_trackFitter->fit(Gaudi::Hive::currentContext(),track,false,materialInteractions)).release();
194
196 Trk::Track *refittedtrack2=nullptr;
197 if (refittedtrack && (int)clusters.size()-i>=9){
198
199 //owner of measurements so they get cleaned up automatically if needs be
200 std::vector<std::unique_ptr<MeasurementBase>> meassetOwn;
201 //vector of plain ptr to the owned ones acts as a "view"
202 Trk::MeasurementSet measset;
203
204 std::unique_ptr<const Trk::TrackParameters> prevpar(refittedtrack->trackParameters()->back()->uniqueClone());
205 for (;i<(int)clusters.size();i++) {
206 const Trk::Surface *surf=&clusters[i]->detectorElement()->surface(clusters[i]->identify());
207 std::unique_ptr<const Trk::TrackParameters> thispar(m_extrapolator->extrapolate(ctx,*prevpar,*surf,Trk::alongMomentum,false,Trk::nonInteracting));
208 if (!thispar) break;
209 Trk::RIO_OnTrack *rot=m_rotcreatorbroad->correct(*clusters[i],*thispar,ctx);
210
211 if (rot) {
212 meassetOwn.emplace_back(rot);
213 measset.push_back(meassetOwn.back().get());
214 }
215 prevpar=std::move(thispar);
216 }
217
218 refittedtrack2=(m_trackFitter->fit(Gaudi::Hive::currentContext(),*refittedtrack,measset,false,materialInteractions)).release();
219
220 if (!refittedtrack2){
221 auto traj2 = std::make_unique<Trk::TrackStates>();
222 for (const Trk::TrackStateOnSurface *j : *refittedtrack->trackStateOnSurfaces()) traj2->push_back(new Trk::TrackStateOnSurface(*j));
223 std::bitset<Trk::TrackStateOnSurface::NumberOfTrackStateOnSurfaceTypes> typePattern2;
224 typePattern2.set(Trk::TrackStateOnSurface::Outlier);
225 //measset needs to be unique_ptr before progress further
226 for (auto & j : meassetOwn) {
227 traj2->push_back(new Trk::TrackStateOnSurface(
228 std::move(j),
229 nullptr,
230 nullptr,
231 typePattern2));
232 }
233 refittedtrack2 = new Trk::Track(refittedtrack->info(),
234 std::move(traj2),
235 refittedtrack->fitQuality()->uniqueClone());
236 }
237 } else if(!refittedtrack){
238 ATH_MSG_VERBOSE("Track fit of truth trajectory NOT successful, NO track created. ");
239 return nullptr;
240 }
241
242 if (refittedtrack2) delete refittedtrack;
243 if (!refittedtrack2 && refittedtrack) refittedtrack2=refittedtrack;
244
245 //
246 ATH_MSG_DEBUG("Track fit of truth trajectory successful, track created. ");
247 // return what you have
248 // Before returning, fix the creator
249 if (refittedtrack2){
251 }
252 return refittedtrack2;
253}
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
double charge(const T &p)
Definition AtlasPID.h:997
#define AmgVector(rows)
if(pathvar)
Eigen::Matrix< double, 3, 1 > Vector3D
std::unique_ptr< FitQuality > uniqueClone() const
NVI uniqueClone.
virtual bool insideBounds(const Amg::Vector2D &locpos, double tol1=0., double tol2=0.) const =0
virtual methods to be overwritten by the inherited surfaces
void setPatternRecognitionInfo(const TrackPatternRecoInfo &patternReco)
Method setting the pattern recognition algorithm.
@ Perigee
This represents a perigee, and so will contain a Perigee object only.
@ Outlier
This TSoS contains an outlier, that is, it contains a MeasurementBase/RIO_OnTrack which was not used ...
const Trk::TrackStates * trackStateOnSurfaces() const
return a pointer to a const DataVector of const TrackStateOnSurfaces.
const DataVector< const TrackParameters > * trackParameters() const
Return a pointer to a vector of TrackParameters.
const TrackInfo & info() const
Returns a const ref to info of a const tracks.
const FitQuality * fitQuality() const
return a pointer to the fit quality const-overload
ToolHandle< IRIO_OnTrackCreator > m_rotcreator
Gaudi::Property< unsigned int > m_minSiHits
min number of Si hits for refit
Gaudi::Property< float > m_forwardBoundary
Boundary eta value defining the forward region.
Gaudi::Property< unsigned int > m_minSiHitsForward
min number of Si hits for refit in forward region (ITk specific)
Gaudi::Property< size_t > m_minNdof
checks min degrees of freedom if bigger -1
Gaudi::Property< bool > m_onlyPrimaries
restrict track creation to primaries
ToolHandle< ITrackFitter > m_trackFitter
fits the PRDs
Gaudi::Property< int > m_matEffects
ToolHandle< IRIO_OnTrackCreator > m_rotcreatorbroad
ToolHandle< IExtrapolator > m_extrapolator
extrapolator
Eigen::Matrix< double, 3, 1 > Vector3D
bool is_simulation_particle(const T &p)
Method to establish if a particle (or barcode) was created during the simulation (TODO update to be s...
double charge(const T &p)
constexpr ParticleHypothesis particle[PARTICLEHYPOTHESES]
the array of masses
@ alongMomentum
@ anyDirection
std::vector< const MeasurementBase * > MeasurementSet
vector of fittable measurements
Definition FitterTypes.h:30
CurvilinearParametersT< TrackParametersDim, Charged, PlaneSurface > CurvilinearParameters
@ x
Definition ParamDefs.h:55
@ y
Definition ParamDefs.h:56
@ loc2
generic first and second local coordinate
Definition ParamDefs.h:35
@ loc1
Definition ParamDefs.h:34
ParticleHypothesis
Enumeration for Particle hypothesis respecting the interaction with material.
const Identifier & identify(const UncalibratedMeasurement *meas)
Returns the associated identifier from the muon measurement.

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

◆ 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

◆ finalize()

StatusCode Trk::TruthTrackBuilder::finalize ( )

Definition at line 71 of file TruthTrackBuilder.cxx.

72{
73 ATH_MSG_VERBOSE("Finalizing ...");
74 return StatusCode::SUCCESS;
75}

◆ initialize()

StatusCode Trk::TruthTrackBuilder::initialize ( )

Definition at line 37 of file TruthTrackBuilder.cxx.

38{
39 ATH_MSG_VERBOSE("Initializing ...");
40 if (m_rotcreator.retrieve().isFailure()) {
41 msg(MSG::FATAL) << "Could not get " << m_rotcreator.type() << endmsg;
42 return StatusCode::FAILURE;
43 }
44
45 if (m_rotcreatorbroad.retrieve().isFailure()) {
46 msg(MSG::FATAL) << "Could not get " << m_rotcreatorbroad.type() << endmsg;
47 return StatusCode::FAILURE;
48 }
49
50 // track fitter
51 if (m_trackFitter.retrieve().isFailure()){
52 ATH_MSG_ERROR("Could not retrieve " << m_trackFitter << ". Aborting ...");
53 return StatusCode::FAILURE;
54 }
55
56 // extrapolator
57 if (m_extrapolator.retrieve().isFailure()){
58 ATH_MSG_ERROR("Could not retrieve " << m_extrapolator << ". Aborting ...");
59 return StatusCode::FAILURE;
60 }
61
62 // need an Atlas id-helper to identify sub-detectors, take the one from detStore
63 if (detStore()->retrieve(m_DetID, "AtlasID").isFailure()) {
64 ATH_MSG_ERROR ("Could not get AtlasDetectorID helper" );
65 return StatusCode::FAILURE;
66 }
67 return StatusCode::SUCCESS;
68}
#define endmsg
#define ATH_MSG_ERROR(x)
const ServiceHandle< StoreGateSvc > & detStore() const
MsgStream & msg() const

◆ 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 & Trk::ITruthTrackBuilder::interfaceID ( )
inlinestaticinherited

AlgTool interface methods.

Definition at line 39 of file ITruthTrackBuilder.h.

39{ return IID_ITruthTrackBuilder; }
static const InterfaceID IID_ITruthTrackBuilder("ITruthTrackBuilder", 1, 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 }

◆ 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 >, and AthCheckedComponent<::AthAlgTool >.

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

const AtlasDetectorID* Trk::TruthTrackBuilder::m_DetID
private

Definition at line 56 of file TruthTrackBuilder.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_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_extrapolator

ToolHandle<IExtrapolator> Trk::TruthTrackBuilder::m_extrapolator {this, "ExtrapolationTool", ""}
private

extrapolator

Definition at line 52 of file TruthTrackBuilder.h.

52{this, "ExtrapolationTool", ""};

◆ m_forwardBoundary

Gaudi::Property<float> Trk::TruthTrackBuilder::m_forwardBoundary {this, "ForwardBoundary", 2.5}
private

Boundary eta value defining the forward region.

Definition at line 62 of file TruthTrackBuilder.h.

62{this, "ForwardBoundary", 2.5};

◆ m_matEffects

Gaudi::Property<int> Trk::TruthTrackBuilder::m_matEffects
private
Initial value:
{this, "MatEffects", 3,
"Type of material interaction in extrapolation (Default Pion)"}

Definition at line 64 of file TruthTrackBuilder.h.

64 {this, "MatEffects", 3,
65 "Type of material interaction in extrapolation (Default Pion)"};

◆ m_minNdof

Gaudi::Property<size_t> Trk::TruthTrackBuilder::m_minNdof {this, "MinDegreesOfFreedom", 6}
private

checks min degrees of freedom if bigger -1

Definition at line 58 of file TruthTrackBuilder.h.

58{this, "MinDegreesOfFreedom", 6};

◆ m_minSiHits

Gaudi::Property<unsigned int> Trk::TruthTrackBuilder::m_minSiHits {this, "MinSiHits", 7}
private

min number of Si hits for refit

Definition at line 60 of file TruthTrackBuilder.h.

60{this, "MinSiHits", 7};

◆ m_minSiHitsForward

Gaudi::Property<unsigned int> Trk::TruthTrackBuilder::m_minSiHitsForward {this, "MinSiHitsForward", 7}
private

min number of Si hits for refit in forward region (ITk specific)

Definition at line 61 of file TruthTrackBuilder.h.

61{this, "MinSiHitsForward", 7};

◆ m_onlyPrimaries

Gaudi::Property<bool> Trk::TruthTrackBuilder::m_onlyPrimaries {this, "OnlyPrimaries", false}
private

restrict track creation to primaries

Definition at line 59 of file TruthTrackBuilder.h.

59{this, "OnlyPrimaries", false};

◆ m_rotcreator

ToolHandle< IRIO_OnTrackCreator > Trk::TruthTrackBuilder::m_rotcreator {this, "RotCreatorTool", ""}
private

Definition at line 53 of file TruthTrackBuilder.h.

53{this, "RotCreatorTool", ""};

◆ m_rotcreatorbroad

ToolHandle< IRIO_OnTrackCreator > Trk::TruthTrackBuilder::m_rotcreatorbroad {this, "BroadRotCreatorTool", ""}
private

Definition at line 54 of file TruthTrackBuilder.h.

54{this, "BroadRotCreatorTool", ""};

◆ m_trackFitter

ToolHandle<ITrackFitter> Trk::TruthTrackBuilder::m_trackFitter {this, "TrackFitter", ""}
private

fits the PRDs

Definition at line 51 of file TruthTrackBuilder.h.

51{this, "TrackFitter", ""};

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