58 fPreStepPointGlobalTime(aTrack->GetGlobalTime()),
59 fPostStepPointGlobalTime(aTrack->GetGlobalTime()),
60 fpPreStepPointVolume(aTrack->GetTouchableHandle()),
61 fpPostStepPointVolume(aTrack->GetNextTouchableHandle()),
62 fPreStepPointWeight(aTrack->GetWeight()),
63 fPostStepPointWeight(aTrack->GetWeight())
67 : fPosition(aStep->GetPostStepPoint()->
GetPosition()),
68 fpAuxiliaryPointVector(aStep->GetPointerToVectorOfAuxiliaryPoints()),
69 fTotEDep(aStep->GetTotalEnergyDeposit())
75 fRemainingEnergy = aStep->GetTrack()->GetKineticEnergy();
78 fRemainingEnergy = preStepPoint->GetKineticEnergy() - fTotEDep;
87 fPreStepPointWeight = preStepPoint->
GetWeight();
88 fPostStepPointWeight = postStepPoint->
GetWeight();
93 fPosition = right.fPosition;
94 fTotEDep = right.fTotEDep;
95 fRemainingEnergy = right.fRemainingEnergy;
96 fpProcess = right.fpProcess;
97 fPreStepPointStatus = right.fPreStepPointStatus;
98 fPostStepPointStatus = right.fPostStepPointStatus;
99 fPreStepPointGlobalTime = right.fPreStepPointGlobalTime;
100 fPostStepPointGlobalTime = right.fPostStepPointGlobalTime;
101 fpPreStepPointVolume = right.fpPreStepPointVolume;
102 fpPostStepPointVolume = right.fpPostStepPointVolume;
103 fPreStepPointWeight = right.fPreStepPointWeight;
104 fPostStepPointWeight = right.fPostStepPointWeight;
105 if(right.fpAuxiliaryPointVector!=
nullptr && right.fpAuxiliaryPointVector->size()>0)
107 fpAuxiliaryPointVector =
new std::vector<G4ThreeVector>;
108 for(
auto& i : *(right.fpAuxiliaryPointVector))
109 { fpAuxiliaryPointVector->push_back(i); }
123 (*store)[ID] =
G4AttDef(ID,
"Position",
"Physics",
"G4BestUnit",
"G4ThreeVector");
126 G4AttDef(ID,
"Auxiliary Point Position",
"Physics",
"G4BestUnit",
"G4ThreeVector");
128 (*store)[ID] =
G4AttDef(ID,
"Total Energy Deposit",
"Physics",
"G4BestUnit",
"G4double");
130 (*store)[ID] =
G4AttDef(ID,
"Remaining Energy",
"Physics",
"G4BestUnit",
"G4double");
132 (*store)[ID] =
G4AttDef(ID,
"Process Defined Step",
"Physics",
"",
"G4String");
134 (*store)[ID] =
G4AttDef(ID,
"Process Type Defined Step",
"Physics",
"",
"G4String");
136 (*store)[ID] =
G4AttDef(ID,
"Pre-step-point status",
"Physics",
"",
"G4String");
138 (*store)[ID] =
G4AttDef(ID,
"Post-step-point status",
"Physics",
"",
"G4String");
140 (*store)[ID] =
G4AttDef(ID,
"Pre-step-point global time",
"Physics",
"G4BestUnit",
"G4double");
142 (*store)[ID] =
G4AttDef(ID,
"Post-step-point global time",
"Physics",
"G4BestUnit",
"G4double");
144 (*store)[ID] =
G4AttDef(ID,
"Pre-step Volume Path",
"Physics",
"",
"G4String");
146 (*store)[ID] =
G4AttDef(ID,
"Post-step Volume Path",
"Physics",
"",
"G4String");
148 (*store)[ID] =
G4AttDef(ID,
"Pre-step-point weight",
"Physics",
"",
"G4double");
150 (*store)[ID] =
G4AttDef(ID,
"Post-step-point weight",
"Physics",
"",
"G4double");
160 status =
"fWorldBoundary";
163 status =
"fGeomBoundary";
166 status =
"fAtRestDoItProc";
169 status =
"fAlongStepDoItProc";
172 status =
"fPostStepDoItProc";
175 status =
"fUserDefinedLimit";
178 status =
"fExclusivelyForcedProc";
181 status =
"fUndefined";
184 status =
"Not recognised";
192 std::ostringstream oss;
194 for (
G4int i = depth; i >= 0; --i) {
196 if (i != 0) oss <<
'/';
205 auto values =
new std::vector<G4AttValue>;
212 if (fpAuxiliaryPointVector !=
nullptr) {
213 for (
const auto& iAux : *fpAuxiliaryPointVector) {
221 if (fpProcess !=
nullptr) {
222 values->push_back(
G4AttValue(
"PDS", fpProcess->GetProcessName(),
""));
227 values->push_back(
G4AttValue(
"PDS",
"None",
""));
228 values->push_back(
G4AttValue(
"PTDS",
"None",
""));
231 values->push_back(
G4AttValue(
"PreStatus", Status(fPreStepPointStatus),
""));
233 values->push_back(
G4AttValue(
"PostStatus", Status(fPostStepPointStatus),
""));
239 if (fpPreStepPointVolume && (fpPreStepPointVolume->GetVolume() !=
nullptr)) {
240 values->push_back(
G4AttValue(
"PreVPath", Path(fpPreStepPointVolume),
""));
243 values->push_back(
G4AttValue(
"PreVPath",
"None",
""));
246 if (fpPostStepPointVolume && (fpPostStepPointVolume->GetVolume() !=
nullptr)) {
247 values->push_back(
G4AttValue(
"PostVPath", Path(fpPostStepPointVolume),
""));
250 values->push_back(
G4AttValue(
"PostVPath",
"None",
""));
253 std::ostringstream oss1;
254 oss1 << fPreStepPointWeight;
255 values->push_back(
G4AttValue(
"PreW", oss1.str(),
""));
257 std::ostringstream oss2;
258 oss2 << fPostStepPointWeight;
259 values->push_back(
G4AttValue(
"PostW", oss2.str(),
""));
G4Allocator< G4ClonedRichTrajectoryPoint > *& aClonedRichTrajectoryPointAllocator()
G4ReferenceCountedHandle< G4VTouchable > G4TouchableHandle
G4GLOB_DLL std::ostream G4cout
const std::map< G4String, G4AttDef > * GetAttDefs() const override
std::vector< G4AttValue > * CreateAttValues() const override
G4ClonedRichTrajectoryPoint()=default
const G4ThreeVector GetPosition() const override
~G4ClonedRichTrajectoryPoint() 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)