67 fPreStepPointGlobalTime(aTrack->GetGlobalTime()),
68 fPostStepPointGlobalTime(aTrack->GetGlobalTime()),
69 fpPreStepPointVolume(aTrack->GetTouchableHandle()),
70 fpPostStepPointVolume(aTrack->GetNextTouchableHandle()),
71 fPreStepPointWeight(aTrack->GetWeight()),
72 fPostStepPointWeight(aTrack->GetWeight())
76 : fPosition(aStep->GetPostStepPoint()->
GetPosition()),
77 fpAuxiliaryPointVector(aStep->GetPointerToVectorOfAuxiliaryPoints()),
78 fTotEDep(aStep->GetTotalEnergyDeposit())
84 fRemainingEnergy = aStep->GetTrack()->GetKineticEnergy();
87 fRemainingEnergy = preStepPoint->GetKineticEnergy() - fTotEDep;
96 fPreStepPointWeight = preStepPoint->
GetWeight();
97 fPostStepPointWeight = postStepPoint->
GetWeight();
115 (*store)[ID] =
G4AttDef(ID,
"Position",
"Physics",
"G4BestUnit",
"G4ThreeVector");
118 G4AttDef(ID,
"Auxiliary Point Position",
"Physics",
"G4BestUnit",
"G4ThreeVector");
120 (*store)[ID] =
G4AttDef(ID,
"Total Energy Deposit",
"Physics",
"G4BestUnit",
"G4double");
122 (*store)[ID] =
G4AttDef(ID,
"Remaining Energy",
"Physics",
"G4BestUnit",
"G4double");
124 (*store)[ID] =
G4AttDef(ID,
"Process Defined Step",
"Physics",
"",
"G4String");
126 (*store)[ID] =
G4AttDef(ID,
"Process Type Defined Step",
"Physics",
"",
"G4String");
128 (*store)[ID] =
G4AttDef(ID,
"Pre-step-point status",
"Physics",
"",
"G4String");
130 (*store)[ID] =
G4AttDef(ID,
"Post-step-point status",
"Physics",
"",
"G4String");
132 (*store)[ID] =
G4AttDef(ID,
"Pre-step-point global time",
"Physics",
"G4BestUnit",
"G4double");
134 (*store)[ID] =
G4AttDef(ID,
"Post-step-point global time",
"Physics",
"G4BestUnit",
"G4double");
136 (*store)[ID] =
G4AttDef(ID,
"Pre-step Volume Path",
"Physics",
"",
"G4String");
138 (*store)[ID] =
G4AttDef(ID,
"Post-step Volume Path",
"Physics",
"",
"G4String");
140 (*store)[ID] =
G4AttDef(ID,
"Pre-step-point weight",
"Physics",
"",
"G4double");
142 (*store)[ID] =
G4AttDef(ID,
"Post-step-point weight",
"Physics",
"",
"G4double");
152 status =
"fWorldBoundary";
155 status =
"fGeomBoundary";
158 status =
"fAtRestDoItProc";
161 status =
"fAlongStepDoItProc";
164 status =
"fPostStepDoItProc";
167 status =
"fUserDefinedLimit";
170 status =
"fExclusivelyForcedProc";
173 status =
"fUndefined";
176 status =
"Not recognised";
184 std::ostringstream oss;
186 for (
G4int i = depth; i >= 0; --i) {
188 if (i != 0) oss <<
'/';
197 auto values =
new std::vector<G4AttValue>;
204 if (fpAuxiliaryPointVector !=
nullptr) {
205 for (
const auto& iAux : *fpAuxiliaryPointVector) {
213 if (fpProcess !=
nullptr) {
214 values->push_back(
G4AttValue(
"PDS", fpProcess->GetProcessName(),
""));
219 values->push_back(
G4AttValue(
"PDS",
"None",
""));
220 values->push_back(
G4AttValue(
"PTDS",
"None",
""));
223 values->push_back(
G4AttValue(
"PreStatus", Status(fPreStepPointStatus),
""));
225 values->push_back(
G4AttValue(
"PostStatus", Status(fPostStepPointStatus),
""));
231 if (fpPreStepPointVolume && (fpPreStepPointVolume->GetVolume() !=
nullptr)) {
232 values->push_back(
G4AttValue(
"PreVPath", Path(fpPreStepPointVolume),
""));
235 values->push_back(
G4AttValue(
"PreVPath",
"None",
""));
238 if (fpPostStepPointVolume && (fpPostStepPointVolume->GetVolume() !=
nullptr)) {
239 values->push_back(
G4AttValue(
"PostVPath", Path(fpPostStepPointVolume),
""));
242 values->push_back(
G4AttValue(
"PostVPath",
"None",
""));
245 std::ostringstream oss1;
246 oss1 << fPreStepPointWeight;
247 values->push_back(
G4AttValue(
"PreW", oss1.str(),
""));
249 std::ostringstream oss2;
250 oss2 << fPostStepPointWeight;
251 values->push_back(
G4AttValue(
"PostW", oss2.str(),
""));
G4Allocator< G4RichTrajectoryPoint > *& aRichTrajectoryPointAllocator()
G4ReferenceCountedHandle< G4VTouchable > G4TouchableHandle
G4GLOB_DLL std::ostream G4cout
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const G4ThreeVector GetPosition() const override
std::vector< G4AttValue > * CreateAttValues() const override
~G4RichTrajectoryPoint() override
G4StepStatus GetStepStatus() const
G4double GetGlobalTime() const
const G4VProcess * GetProcessDefinedStep() const
const G4TouchableHandle & GetTouchableHandle() const
G4double GetWeight() const
G4Track * GetTrack() const
G4StepPoint * GetPreStepPoint() const
G4StepPoint * GetPostStepPoint() const
G4int GetCopyNumber(G4int depth=0) const
virtual G4VPhysicalVolume * GetVolume(G4int depth=0) const
virtual G4int GetHistoryDepth() const
G4int GetCurrentStepNumber() const
const G4String & GetName() const
static const G4String & GetProcessTypeName(G4ProcessType)
std::map< G4String, G4AttDef > * GetInstance(const G4String &storeKey, G4bool &isNew)
#define G4ThreadLocalStatic