Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TrajectoryDrawerUtils Namespace Reference

Enumerations

enum  TimesValidity { InvalidTimes , ValidTimes }
 

Functions

void GetPoints (const G4VTrajectory &traj, G4Polyline &trajectoryLine, G4Polymarker &auxiliaryPoints, G4Polymarker &stepPoints)
 
void DrawLineAndPoints (const G4VTrajectory &traj, const G4VisTrajContext &)
 
TimesValidity GetPointsAndTimes (const G4VTrajectory &traj, const G4VisTrajContext &context, G4Polyline &trajectoryLine, G4Polymarker &auxiliaryPoints, G4Polymarker &stepPoints, std::vector< G4double > &trajectoryLineTimes, std::vector< G4double > &auxiliaryPointTimes, std::vector< G4double > &stepPointTimes)
 

Enumeration Type Documentation

◆ TimesValidity

Function Documentation

◆ DrawLineAndPoints()

void G4TrajectoryDrawerUtils::DrawLineAndPoints ( const G4VTrajectory & traj,
const G4VisTrajContext & context )

Definition at line 318 of file G4TrajectoryDrawerUtils.cc.

319 {
320 // Return if don't need to do anything
321 if (!context.GetDrawLine() && !context.GetDrawAuxPts() && !context.GetDrawStepPts()) return;
322
323 // Get points and times (times are returned only if time-slicing
324 // is requested).
325 G4Polyline trajectoryLine;
326 G4Polymarker stepPoints;
327 G4Polymarker auxiliaryPoints;
328 std::vector<G4double> trajectoryLineTimes;
329 std::vector<G4double> stepPointTimes;
330 std::vector<G4double> auxiliaryPointTimes;
331
333 (traj, context,
334 trajectoryLine, auxiliaryPoints, stepPoints,
335 trajectoryLineTimes, auxiliaryPointTimes, stepPointTimes);
336
337 if (validity == ValidTimes) {
338
339 SliceLine(context.GetTimeSliceInterval(),
340 trajectoryLine, trajectoryLineTimes);
341
342 DrawWithTime(context,
343 trajectoryLine, auxiliaryPoints, stepPoints,
344 trajectoryLineTimes, auxiliaryPointTimes, stepPointTimes);
345
346 } else {
347
348 DrawWithoutTime(context, trajectoryLine, auxiliaryPoints, stepPoints);
349
350 }
351 }
G4bool GetDrawAuxPts() const
G4double GetTimeSliceInterval() const
G4bool GetDrawLine() const
G4bool GetDrawStepPts() const
TimesValidity GetPointsAndTimes(const G4VTrajectory &traj, const G4VisTrajContext &context, G4Polyline &trajectoryLine, G4Polymarker &auxiliaryPoints, G4Polymarker &stepPoints, std::vector< G4double > &trajectoryLineTimes, std::vector< G4double > &auxiliaryPointTimes, std::vector< G4double > &stepPointTimes)

Referenced by G4TrajectoryDrawByAttribute::Draw(), G4TrajectoryDrawByCharge::Draw(), G4TrajectoryDrawByEncounteredVolume::Draw(), G4TrajectoryDrawByOriginVolume::Draw(), G4TrajectoryDrawByParticleID::Draw(), and G4TrajectoryGenericDrawer::Draw().

◆ GetPoints()

void G4TrajectoryDrawerUtils::GetPoints ( const G4VTrajectory & traj,
G4Polyline & trajectoryLine,
G4Polymarker & auxiliaryPoints,
G4Polymarker & stepPoints )

◆ GetPointsAndTimes()

TimesValidity G4TrajectoryDrawerUtils::GetPointsAndTimes ( const G4VTrajectory & traj,
const G4VisTrajContext & context,
G4Polyline & trajectoryLine,
G4Polymarker & auxiliaryPoints,
G4Polymarker & stepPoints,
std::vector< G4double > & trajectoryLineTimes,
std::vector< G4double > & auxiliaryPointTimes,
std::vector< G4double > & stepPointTimes )

Definition at line 49 of file G4TrajectoryDrawerUtils.cc.

58 {
59 TimesValidity validity = InvalidTimes;
60 if (context.GetTimeSliceInterval()) validity = ValidTimes;
61
62 // Memory for last trajectory point position for auxiliary point
63 // time interpolation algorithm. There are no auxiliary points
64 // for the first trajectory point, so its initial value is
65 // immaterial.
66 G4ThreeVector lastTrajectoryPointPosition;
67
68 // Keep positions. Don't store unless first or different.
69 std::vector<G4ThreeVector> positions;
70
71 for (G4int iPoint=0; iPoint<traj.GetPointEntries(); iPoint++) {
72
73 G4VTrajectoryPoint* aTrajectoryPoint = traj.GetPoint(iPoint);
74 const G4ThreeVector& trajectoryPointPosition =
75 aTrajectoryPoint->GetPosition();
76
77 // Only store if first or if different
78 if (positions.size() == 0 ||
79 trajectoryPointPosition != positions[positions.size()-1]) {
80
81 // Pre- and Post-Point times from the trajectory point...
82 G4double trajectoryPointPreTime = -std::numeric_limits<double>::max();
83 G4double trajectoryPointPostTime = std::numeric_limits<double>::max();
84
85 if (context.GetTimeSliceInterval() && validity == ValidTimes) {
86
87 std::vector<G4AttValue>* trajectoryPointAttValues =
88 aTrajectoryPoint->CreateAttValues();
89 if (!trajectoryPointAttValues) {
90 static G4bool warnedNoAttValues = false;
91 if (!warnedNoAttValues) {
92 G4warn <<
93 "*************************************************************************"
94 "\n* WARNING: G4TrajectoryDrawerUtils::GetPointsAndTimes: no att values."
95 "\n*************************************************************************"
96 << G4endl;
97 warnedNoAttValues = true;
98 }
99 validity = InvalidTimes;
100 } else {
101 G4bool foundPreTime = false, foundPostTime = false;
102 for (std::vector<G4AttValue>::iterator i =
103 trajectoryPointAttValues->begin();
104 i != trajectoryPointAttValues->end(); ++i) {
105 if (i->GetName() == "PreT") {
106 trajectoryPointPreTime =
108 foundPreTime = true;
109 }
110 if (i->GetName() == "PostT") {
111 trajectoryPointPostTime =
113 foundPostTime = true;
114 }
115 }
116 if (!foundPreTime || !foundPostTime) {
117 static G4bool warnedTimesNotFound = false;
118 if (!warnedTimesNotFound) {
119 G4warn <<
120 "*************************************************************************"
121 "\n* WARNING: G4TrajectoryDrawerUtils::GetPointsAndTimes: times not found."
122 "\n You need to specify \"/vis/scene/add/trajectories rich\""
123 "\n*************************************************************************"
124 << G4endl;
125 warnedTimesNotFound = true;
126 }
127 validity = InvalidTimes;
128 }
129 }
130 delete trajectoryPointAttValues; // (Must be deleted after use.)
131 }
132
133 const std::vector<G4ThreeVector>* auxiliaries
134 = aTrajectoryPoint->GetAuxiliaryPoints();
135 if (0 != auxiliaries) {
136 for (size_t iAux=0; iAux<auxiliaries->size(); ++iAux) {
137 const G4ThreeVector& auxPointPosition = (*auxiliaries)[iAux];
138 if (positions.size() == 0 ||
139 auxPointPosition != positions[positions.size()-1]) {
140 // Only store if first or if different
141 positions.push_back(trajectoryPointPosition);
142 trajectoryLine.push_back(auxPointPosition);
143 auxiliaryPoints.push_back(auxPointPosition);
144 if (validity == ValidTimes) {
145 // Interpolate time for auxiliary points...
146 G4double s1 =
147 (auxPointPosition - lastTrajectoryPointPosition).mag();
148 G4double s2 =
149 (trajectoryPointPosition - auxPointPosition).mag();
150 G4double t = trajectoryPointPreTime +
151 (trajectoryPointPostTime - trajectoryPointPreTime) *
152 (s1 / (s1 + s2));
153 trajectoryLineTimes.push_back(t);
154 auxiliaryPointTimes.push_back(t);
155 }
156 }
157 }
158 }
159
160 positions.push_back(trajectoryPointPosition);
161 trajectoryLine.push_back(trajectoryPointPosition);
162 stepPoints.push_back(trajectoryPointPosition);
163 if (validity == ValidTimes) {
164 trajectoryLineTimes.push_back(trajectoryPointPostTime);
165 stepPointTimes.push_back(trajectoryPointPostTime);
166 }
167 lastTrajectoryPointPosition = trajectoryPointPosition;
168 }
169 }
170 return validity;
171 }
#define G4warn
Definition G4Scene.cc:41
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
static G4double ConvertToDimensionedDouble(const char *st)
virtual std::vector< G4AttValue > * CreateAttValues() const
virtual const std::vector< G4ThreeVector > * GetAuxiliaryPoints() const
virtual const G4ThreeVector GetPosition() const =0
virtual G4VTrajectoryPoint * GetPoint(G4int i) const =0
virtual G4int GetPointEntries() const =0

Referenced by DrawLineAndPoints().