ATLAS Offline Software
Loading...
Searching...
No Matches
G4UA::iGeant4::TrackProcessorUserActionFullG4 Class Referencefinal

#include <TrackProcessorUserActionFullG4.h>

Inheritance diagram for G4UA::iGeant4::TrackProcessorUserActionFullG4:
Collaboration diagram for G4UA::iGeant4::TrackProcessorUserActionFullG4:

Classes

struct  Config

Public Member Functions

 TrackProcessorUserActionFullG4 (const Config &config)
virtual ~TrackProcessorUserActionFullG4 ()
virtual void PreUserTrackingAction (const G4Track *) override final
virtual void BeginOfEventAction (const G4Event *) override final
virtual void EndOfEventAction (const G4Event *) override final
virtual void PostUserTrackingAction (const G4Track *) override final
virtual void UserSteppingAction (const G4Step *) override final
ISF::ISFParticleContainer ReturnSecondaries (ISF::ISFParticle const *parent)

Protected Attributes

ISF::ISFParticleContainer m_storedSecondaries

Private Member Functions

void ISFSteppingAction (const G4Step *, ISF::ISFParticle *curISP) override final
 Called by the base class after the G4Track->ISFParticle association has been established.
ISF::EntryLayer entryLayer (const G4Step *aStep)
void setupPrimary (G4Track &)
 Setup the given G4Track as the current primary particle which we'll process.
void setupSecondary (const G4Track &)
 Setup the given G4Track as the current secondary particle which we'll process.
void updateCurrentBaseISFParticle (ISF::ISFParticle *baseISFParticle)
 Set the base ISFParticle for the currently traced particle.
VTrackInformation::TrackClassification classify (HepMC::ConstGenParticlePtr primaryGenParticle, HepMC::ConstGenParticlePtr generationZeroGenParticle, HepMC::ConstGenParticlePtr currentGenParticle, int regenerationNumber) const
 Classify the particle represented by the given set of truth links.

Private Attributes

Config m_config
ISF::IEntryLayerToolm_entryLayerToolQuick
 access to the ISF Entry Layer tool which is used to record entry-layer collections
ISF::IGeoIDSvcm_geoIDSvcQuick
 access to the central ISF GeoID serice
std::map< std::string, int, std::less< std::string > > m_entryLayerMap
AtlasDetDescr::AtlasRegion m_nextGeoID
const G4Track * m_currentTrack
ISF::ISFParticlem_curBaseISP {}
 The most recent ISFParticle ancestor that triggers the currently processed G4Track.

Detailed Description

Definition at line 34 of file TrackProcessorUserActionFullG4.h.

Constructor & Destructor Documentation

◆ TrackProcessorUserActionFullG4()

G4UA::iGeant4::TrackProcessorUserActionFullG4::TrackProcessorUserActionFullG4 ( const Config & config)

Definition at line 39 of file TrackProcessorUserActionFullG4.cxx.

41 m_entryLayerToolQuick(nullptr),
42 m_geoIDSvcQuick(nullptr),
43 m_currentTrack(nullptr)
44 {
45
46 if(4<m_config.verboseLevel)
47 {
48 G4cout << "create TrackProcessorUserActionFullG4" << G4endl;
49 }
50
52
53 if ( !m_config.entryLayerTool.empty() ) {
54 if ( m_config.entryLayerTool.retrieve().isFailure()) {
55 G4ExceptionDescription description;
56 description << G4String("TrackProcessorUserActionFullG4: ") + "Could not retrieve ISF Entry Layer Tool: " << m_config.entryLayerTool;
57 G4Exception("G4UA::iGeant4::TrackProcessorUserActionFullG4", "NoISFEntryLayerTool", FatalException, description);
58 return; //The G4Exception call above should abort the job, but Coverity does not seem to pick this up.
59 }
60 m_entryLayerToolQuick = &(*m_config.entryLayerTool);
61 }
62
63 if ( !m_config.geoIDSvc.empty() ) {
64 if (m_config.geoIDSvc.retrieve().isFailure()) {
65 G4ExceptionDescription description;
66 description << G4String("TrackProcessorUserActionFullG4: ") + "Could not retrieve ISF GeoID Svc: " << m_config.geoIDSvc;
67 G4Exception("G4UA::iGeant4::TrackProcessorUserActionFullG4", "NoISFGeoIDSvc", FatalException, description);
68 return; //The G4Exception call above should abort the job, but Coverity does not seem to pick this up.
69 }
70
71 m_geoIDSvcQuick = &(*m_config.geoIDSvc);
72 }
73
74 m_entryLayerMap["CALO::CALO"] = m_config.truthVolLevel+1;
75 m_entryLayerMap["MUONQ02::MUONQ02"] = m_config.truthVolLevel+1;
76 m_entryLayerMap[m_config.isITkGeometry ? "ITK::ITK" : "IDET::IDET"] = m_config.truthVolLevel+1;
77
78 }
std::map< std::string, int, std::less< std::string > > m_entryLayerMap
ISF::IEntryLayerTool * m_entryLayerToolQuick
access to the ISF Entry Layer tool which is used to record entry-layer collections
ISF::IGeoIDSvc * m_geoIDSvcQuick
access to the central ISF GeoID serice
std::string description
glabal timer - how long have I taken so far?
Definition hcg.cxx:93

◆ ~TrackProcessorUserActionFullG4()

virtual G4UA::iGeant4::TrackProcessorUserActionFullG4::~TrackProcessorUserActionFullG4 ( )
inlinevirtual

Definition at line 53 of file TrackProcessorUserActionFullG4.h.

53{}

Member Function Documentation

◆ BeginOfEventAction()

void G4UA::iGeant4::TrackProcessorUserActionBase::BeginOfEventAction ( const G4Event * )
finaloverridevirtualinherited

Definition at line 46 of file TrackProcessorUserActionBase.cxx.

47{
48 m_curBaseISP = nullptr;
49 return;
50}
ISF::ISFParticle * m_curBaseISP
The most recent ISFParticle ancestor that triggers the currently processed G4Track.

◆ classify()

VTrackInformation::TrackClassification G4UA::iGeant4::TrackProcessorUserActionBase::classify ( HepMC::ConstGenParticlePtr primaryGenParticle,
HepMC::ConstGenParticlePtr generationZeroGenParticle,
HepMC::ConstGenParticlePtr currentGenParticle,
int regenerationNumber ) const
privateinherited

Classify the particle represented by the given set of truth links.

Definition at line 212 of file TrackProcessorUserActionBase.cxx.

216{
217 // if particle points to a non-zero truth particle it can not just be a 'simple' Secondary
218
219 if (currentGenParticle) {
220 if (currentGenParticle == primaryGenParticle) {
222 }
223 else if (generationZeroGenParticle == primaryGenParticle && regenerationNumber>0) {
225 }
226 else {
228 }
229 }
230
232}

◆ EndOfEventAction()

void G4UA::iGeant4::TrackProcessorUserActionBase::EndOfEventAction ( const G4Event * )
finaloverridevirtualinherited

Definition at line 52 of file TrackProcessorUserActionBase.cxx.

53{
54 m_curBaseISP = nullptr;
55 return;
56}

◆ entryLayer()

ISF::EntryLayer G4UA::iGeant4::TrackProcessorUserActionFullG4::entryLayer ( const G4Step * aStep)
private

Definition at line 169 of file TrackProcessorUserActionFullG4.cxx.

170 {
171 //
172 // this is the same prescription for getting the entry layer as in
173 // MCTruth/MCTruthSteppingAction
174 //
175
176 const G4StepPoint *preStep =aStep->GetPreStepPoint();
177 const G4StepPoint *postStep=aStep->GetPostStepPoint();
178
179 const G4TouchableHistory *preTHist=static_cast<const G4TouchableHistory*>(preStep->GetTouchable());
180 const G4TouchableHistory *postTHist=static_cast<const G4TouchableHistory*>(postStep->GetTouchable());
181 int nLev1 = preTHist->GetHistoryDepth();
182 int nLev2 = postTHist->GetHistoryDepth();
183
184 std::map<std::string, int, std::less<std::string> >::const_iterator it;
185
186 std::string vname1;
187 bool pass=false;
188 for (it=m_entryLayerMap.begin(); it!=m_entryLayerMap.end(); ++it) {
189
190 int il=(*it).second;
191
192 if (il<=(nLev1+1)) {
193 vname1=preTHist->GetVolume(nLev1-il+1)->GetName();
194
195 if (vname1!=(*it).first) continue;
196
197 if (il<=(nLev2+1)) {
198 if (vname1 == static_cast<const std::string&>(postTHist->GetVolume(nLev2-il+1)->GetName()))
199 {
200 continue;
201 }
202 }
203
204 pass=true;
205 break;
206 }
207 }
208
209
211 if (pass) {
212 if (!m_config.isITkGeometry && vname1=="IDET::IDET") layer=ISF::fAtlasCaloEntry;
213 else if ( m_config.isITkGeometry && vname1=="ITK::ITK") layer=ISF::fAtlasCaloEntry;
214 else if (vname1=="CALO::CALO") layer=ISF::fAtlasMuonEntry;
215 else if (vname1=="MUONQ02::MUONQ02") layer=ISF::fAtlasMuonExit;
216 }
217
218 return layer;
219 }
EntryLayer
Identifiers for the TrackRecordCollections on the boundaries between CaloEntry: Inner Detector - Calo...
Definition EntryLayer.h:31
@ fAtlasMuonExit
Definition EntryLayer.h:39
@ fUnsetEntryLayer
Definition EntryLayer.h:33
@ fAtlasCaloEntry
Definition EntryLayer.h:37
@ fAtlasMuonEntry
Definition EntryLayer.h:38
@ layer
Definition HitInfo.h:79

◆ ISFSteppingAction()

void G4UA::iGeant4::TrackProcessorUserActionFullG4::ISFSteppingAction ( const G4Step * aStep,
ISF::ISFParticle * curISP )
finaloverrideprivatevirtual

Called by the base class after the G4Track->ISFParticle association has been established.

Implements G4UA::iGeant4::TrackProcessorUserActionBase.

Definition at line 80 of file TrackProcessorUserActionFullG4.cxx.

81 {
82 G4Track* aTrack = aStep->GetTrack();
83 //int aTrackID = aTrack->GetTrackID(); // Only used in DEBUG messages
84 G4TrackStatus aTrackStatus = aTrack->GetTrackStatus();
85
86 const G4StepPoint *preStep = aStep->GetPreStepPoint();
87 const G4StepPoint *postStep = aStep->GetPostStepPoint();
88
89
92 truthVolLevel,
94 if ( curISP->nextGeoID()!=nextG4GeoID ) {
95 curISP->setNextGeoID( nextG4GeoID );
96 }
97
98 // check if dead track
99 if ( aTrackStatus==fStopAndKill ) {
100 // ATH_MSG_DEBUG("Stepping dead G4Track, returning. TrackLength="<<aTrack->GetTrackLength()<<
101 // " TrackEkin="<<aTrack->GetKineticEnergy()<<" TrackID="<<aTrackID);
102 return;
103 }
104
105 const G4VPhysicalVolume *preVol = preStep->GetPhysicalVolume();
106 const G4VPhysicalVolume *postVol = postStep->GetPhysicalVolume();
107
108 // check if particle left detector volume
109 if ( postVol==0 ) {
110 // ATH_MSG_DEBUG("G4Step not in physical volume, returning. TrackLength="<<
111 // aTrack->GetTrackLength()<<" TrackEkin="<<aTrack->GetKineticEnergy()<<
112 // " TrackID="<<aTrackID);
113 // left world
114 return;
115 }
116
117 // check if particle is within same physical volume
118 if ( preVol==postVol ) {
119 // ATH_MSG_DEBUG("G4Track stays inside current volume");
120 return;
121 }
122
123 //
124 // this point is only reached if particle has crossed
125 // a sub-det boundary in the Geant4-only mode
126 //
127
128 TrackHelper tHelp(aTrack);
129
130 // only process particle at entry layer if primary or registered secondary
131
132 if ( ! tHelp.IsSecondary() ) {
133
134 // get entry layer
136
137 if (layer!=ISF::fUnsetEntryLayer) {
138
139
141 m_config.truthVolLevel,
143
144 ISF::ISFParticle *tmpISP = ::iGeant4::ISFG4Helper::convertG4TrackToISFParticle( *aTrack,
145 *curISP,
146 nullptr // truthBinding
147 );
148 tmpISP->setNextGeoID(nextGeoID);
150
151 auto generationZeroBarcode = tHelp.GetBarcode(); // FIXME barcode-based
152 tmpISP->setBarcode(generationZeroBarcode); // FIXME barcode-based
153 auto generationZeroID = tHelp.GetUniqueID();
154 tmpISP->setId(generationZeroID);
155
156 tmpISP->setNextGeoID( nextGeoID );
157
158 // inform the entry layer tool about this particle
159 m_entryLayerToolQuick->registerParticle( *tmpISP, layer);
160
161 delete tmpISP;
162 }
163
164 }
165
166 return;
167 }
void setNextSimID(SimSvcID simID)
register the next SimSvcID
void setBarcode(int bc)
set a new barcode
void setId(int id)
set a new unique ID
void setNextGeoID(AtlasDetDescr::AtlasRegion geoID)
register the next AtlasDetDescr::AtlasRegion
AtlasDetDescr::AtlasRegion nextGeoID() const
next geoID the particle will be simulated in
static AtlasDetDescr::AtlasRegion nextGeoId(const G4Step *aStep, int truthVolLevel, ISF::IGeoIDSvc *geoIDSvc)
static ISF::ISFParticle * convertG4TrackToISFParticle(const G4Track &aTrack, const ISF::ISFParticle &parent, ISF::TruthBinding *truth=nullptr)
convert the given G4Track into an ISFParticle
AtlasRegion
A simple enum of ATLAS regions and sub-detectors.
Definition AtlasRegion.h:21
@ fUndefinedSimID
Definition SimSvcID.h:32

◆ PostUserTrackingAction()

void G4UA::iGeant4::TrackProcessorUserActionBase::PostUserTrackingAction ( const G4Track * )
finaloverridevirtualinherited

Definition at line 236 of file TrackProcessorUserActionBase.cxx.

237{
238 m_curBaseISP = nullptr;
239 return;
240}

◆ PreUserTrackingAction()

void G4UA::iGeant4::TrackProcessorUserActionFullG4::PreUserTrackingAction ( const G4Track * aTrack)
finaloverridevirtual

Reimplemented from G4UA::iGeant4::TrackProcessorUserActionBase.

Definition at line 221 of file TrackProcessorUserActionFullG4.cxx.

221 {
222 // reset geoId, call upstream method
224 m_currentTrack = aTrack;
226 return;
227 }
virtual void PreUserTrackingAction(const G4Track *) override

◆ ReturnSecondaries()

ISF::ISFParticleContainer G4UA::iGeant4::TrackProcessorUserActionBase::ReturnSecondaries ( ISF::ISFParticle const * parent)
inherited

Definition at line 242 of file TrackProcessorUserActionBase.cxx.

243{
244 // For now, just return all particles
247 return result;
248}
std::list< ISF::ISFParticle * > ISFParticleContainer
generic ISFParticle container (not necessarily a std::list!)
void swap(ElementLinkVector< DOBJ > &lhs, ElementLinkVector< DOBJ > &rhs)

◆ setupPrimary()

void G4UA::iGeant4::TrackProcessorUserActionBase::setupPrimary ( G4Track & aTrack)
privateinherited

Setup the given G4Track as the current primary particle which we'll process.

Definition at line 121 of file TrackProcessorUserActionBase.cxx.

122{
123 //
124 // Get PrimaryParticleInformation from G4PrimaryParticle (assigned by TransportTool::addPrimaryVertex)
125 //
126
127 auto* trackInfo = ::iGeant4::ISFG4Helper::getISFTrackInfo(aTrack);
128 if ( trackInfo ) {
129 G4ExceptionDescription description;
130 description << G4String("PreUserTrackingAction: ")
131 << "Started simulation of primary particle which already has a TrackInformation/TrackBarcodeInfo object attached (trackID: "
132 << aTrack.GetTrackID() << ", track pos: "<<aTrack.GetPosition() << ", mom: "<<aTrack.GetMomentum()
133 << ", parentID " << aTrack.GetParentID() << ")";
134 G4Exception("iGeant4::TrackProcessorUserActionBase", "TrackInformationAlreadyExists", FatalException, description);
135 return; // The G4Exception call above should abort the job, but Coverity does not seem to pick this up.
136 }
137
138 auto* primaryPartInfo = dynamic_cast <PrimaryParticleInformation*> (aTrack.GetDynamicParticle()->GetPrimaryParticle()->GetUserInformation());
139 if (!primaryPartInfo) {
140 G4ExceptionDescription description;
141 description << G4String("PreUserTrackingAction: ") + "NULL PrimaryParticleInformation pointer for current G4Step (trackID "
142 << aTrack.GetTrackID() << ", track pos: "<<aTrack.GetPosition() << ", mom: "<<aTrack.GetMomentum()
143 << ", parentID " << aTrack.GetParentID() << ")";
144 G4Exception("iGeant4::TrackProcessorUserActionBase", "NoPPInfo", FatalException, description);
145 return; // The G4Exception call above should abort the job, but Coverity does not seem to pick this up.
146 }
147
148 // get base ISFParticle and link to TrackInformation
149 auto* baseISP = primaryPartInfo->GetISFParticle();
150 if (!baseISP) {
151 G4ExceptionDescription description;
152 description << G4String("PreUserTrackingAction: ") + "No ISFParticle associated with primary particle (trackID: "
153 << aTrack.GetTrackID() << ", track pos: "<<aTrack.GetPosition() << ", mom: "<<aTrack.GetMomentum()
154 << ", parentID " << aTrack.GetParentID() << ")";
155 G4Exception("iGeant4::TrackProcessorUserActionBase", "NoISFParticle", FatalException, description);
156 return; // The G4Exception call above should abort the job, but Coverity does not seem to pick this up.
157 }
158
159 ISF::TruthBinding* truthBinding = baseISP->getTruthBinding();
160 if (!truthBinding) {
161 G4ExceptionDescription description;
162 description << G4String("PreUserTrackingAction: ") + "No ISF::TruthBinding associated with primary particle (trackID: "
163 << aTrack.GetTrackID() << ", track pos: "<<aTrack.GetPosition() << ", mom: "<<aTrack.GetMomentum()
164 << ", parentID " << aTrack.GetParentID() << ")";
165 G4Exception("iGeant4::TrackProcessorUserActionBase", "NoISFTruthBinding", FatalException, description);
166 return; // The G4Exception call above should abort the job, but Coverity does not seem to pick this up.
167 }
168
169 int regenerationNr = primaryPartInfo->GetRegenerationNr();
170
171 // Keep the legacy classification based on generation-zero identity; the
172 // true primary is stored separately on TrackInformation by ISFG4Helper.
173 HepMC::GenParticlePtr generationZeroGenParticle = truthBinding->getGenerationZeroGenParticle();
174 HepMC::GenParticlePtr primaryGenParticle = generationZeroGenParticle;
175 HepMC::GenParticlePtr currentGenParticle = truthBinding->getCurrentGenParticle();
176
177 auto classification = classify(primaryGenParticle,
178 generationZeroGenParticle,
179 currentGenParticle,
180 regenerationNr);
181
182 auto* newTrackInfo = ::iGeant4::ISFG4Helper::attachTrackInfoToNewG4Track(aTrack,
183 *baseISP,
184 classification,
185 generationZeroGenParticle );
186 newTrackInfo->SetRegenerationNr(regenerationNr);
187
189
190 return;
191}
VTrackInformation::TrackClassification classify(HepMC::ConstGenParticlePtr primaryGenParticle, HepMC::ConstGenParticlePtr generationZeroGenParticle, HepMC::ConstGenParticlePtr currentGenParticle, int regenerationNumber) const
Classify the particle represented by the given set of truth links.
void updateCurrentBaseISFParticle(ISF::ISFParticle *baseISFParticle)
Set the base ISFParticle for the currently traced particle.
HepMC::GenParticlePtr getCurrentGenParticle()
pointer to the particle in the simulation truth
HepMC::GenParticlePtr getGenerationZeroGenParticle()
pointer to the simulation truth particle before any regeneration happened (eg.
static VTrackInformation * getISFTrackInfo(const G4Track &aTrack)
return a valid UserInformation object of the G4Track for use within the ISF
static TrackInformation * attachTrackInfoToNewG4Track(G4Track &aTrack, ISF::ISFParticle &baseIsp, VTrackInformation::TrackClassification classification, HepMC::GenParticlePtr generationZeroGenParticle=nullptr)
attach a new TrackInformation object to the given new (!) G4Track (the G4Track must not have a UserIn...
HepMC3::GenParticlePtr GenParticlePtr
Definition GenParticle.h:19

◆ setupSecondary()

void G4UA::iGeant4::TrackProcessorUserActionBase::setupSecondary ( const G4Track & aTrack)
privateinherited

Setup the given G4Track as the current secondary particle which we'll process.

Definition at line 193 of file TrackProcessorUserActionBase.cxx.

194{
195 auto* trackInfo = ::iGeant4::ISFG4Helper::getISFTrackInfo(aTrack);
196
197 ISF::ISFParticle* baseISFParticle = trackInfo->GetBaseISFParticle();
198
199 updateCurrentBaseISFParticle(baseISFParticle);
200
201 return;
202}

◆ updateCurrentBaseISFParticle()

void G4UA::iGeant4::TrackProcessorUserActionBase::updateCurrentBaseISFParticle ( ISF::ISFParticle * baseISFParticle)
privateinherited

Set the base ISFParticle for the currently traced particle.

Definition at line 204 of file TrackProcessorUserActionBase.cxx.

205{
206 m_curBaseISP = baseISFParticle;
207 return;
208}

◆ UserSteppingAction()

void G4UA::iGeant4::TrackProcessorUserActionBase::UserSteppingAction ( const G4Step * aStep)
finaloverridevirtualinherited

Definition at line 58 of file TrackProcessorUserActionBase.cxx.

59{
60 // get geoID from parent
61 //TODO ELLI AtlasDetDescr::AtlasRegion curGeoID = m_curBaseISP->nextGeoID();
62 //TODO ELLI ATH_MSG_DEBUG( "Currently simulating TrackID = " << aStep->GetTrack()->GetTrackID() <<
63 //TODO ELLI " inside geoID = " << curGeoID );
64
65 // AdePT currently does not return the G4Secondary vector per G4Step. As the vector is required to attach
66 // the G4VUserInfo in the PreUserTrackingAction below, the G4VUserInfo is not available, which
67 // would lead to nullptr access crashes
68#ifdef ATHSIMULATION_USE_ADEPT
69 return;
70#endif
71 //
72 // call the ISFSteppingAction method of the implementation
73 //
75
76 //
77 // propagate the current ISFParticle link to all secondaries
78 //
79 const std::vector<const G4Track*> *secondaryVector = aStep->GetSecondaryInCurrentStep();
80 if (secondaryVector && !secondaryVector->empty()) {
81 for ( auto* aConstSecondaryTrack : *secondaryVector ) {
82 // get a non-const G4Track for current secondary (nasty!)
83 G4Track* aSecondaryTrack ATLAS_THREAD_SAFE = const_cast<G4Track*>( aConstSecondaryTrack ); // imposed by Geant4 interface
84
85 auto *trackInfo = ::iGeant4::ISFG4Helper::getISFTrackInfo(*aSecondaryTrack);
86
87 // G4Tracks aready returned to ISF will have a TrackInformation attached to them
88 bool particleReturnedToISF = trackInfo && trackInfo->GetReturnedToISF();
89 if (!particleReturnedToISF) {
90 HepMC::GenParticlePtr generationZeroGenParticle{};
94 generationZeroGenParticle );
95 }
96 } // <- loop over secondaries from this step
97 }
98
99 return;
100}
#define ATLAS_THREAD_SAFE
virtual void ISFSteppingAction(const G4Step *, ISF::ISFParticle *)=0
This method is called by TrackProcessorUserActionBase after the G4Track->ISFParticle association has ...

Member Data Documentation

◆ m_config

Config G4UA::iGeant4::TrackProcessorUserActionFullG4::m_config
private

Definition at line 61 of file TrackProcessorUserActionFullG4.h.

◆ m_curBaseISP

ISF::ISFParticle* G4UA::iGeant4::TrackProcessorUserActionBase::m_curBaseISP {}
privateinherited

The most recent ISFParticle ancestor that triggers the currently processed G4Track.

Definition at line 68 of file TrackProcessorUserActionBase.h.

68{};

◆ m_currentTrack

const G4Track* G4UA::iGeant4::TrackProcessorUserActionFullG4::m_currentTrack
private

Definition at line 75 of file TrackProcessorUserActionFullG4.h.

◆ m_entryLayerMap

std::map<std::string, int, std::less<std::string> > G4UA::iGeant4::TrackProcessorUserActionFullG4::m_entryLayerMap
private

Definition at line 72 of file TrackProcessorUserActionFullG4.h.

◆ m_entryLayerToolQuick

ISF::IEntryLayerTool* G4UA::iGeant4::TrackProcessorUserActionFullG4::m_entryLayerToolQuick
private

access to the ISF Entry Layer tool which is used to record entry-layer collections

quickaccess avoiding gaudi ovehead

Definition at line 66 of file TrackProcessorUserActionFullG4.h.

◆ m_geoIDSvcQuick

ISF::IGeoIDSvc* G4UA::iGeant4::TrackProcessorUserActionFullG4::m_geoIDSvcQuick
private

access to the central ISF GeoID serice

quickaccess avoiding gaudi ovehead

Definition at line 69 of file TrackProcessorUserActionFullG4.h.

◆ m_nextGeoID

AtlasDetDescr::AtlasRegion G4UA::iGeant4::TrackProcessorUserActionFullG4::m_nextGeoID
private

Definition at line 74 of file TrackProcessorUserActionFullG4.h.

◆ m_storedSecondaries

ISF::ISFParticleContainer G4UA::iGeant4::TrackProcessorUserActionBase::m_storedSecondaries
protectedinherited

Definition at line 45 of file TrackProcessorUserActionBase.h.


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