Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4RichTrajectory class implementation << 26 // >> 27 // >> 28 // --------------------------------------------------------------- >> 29 // >> 30 // G4RichTrajectory.cc 27 // 31 // 28 // Contact: 32 // Contact: 29 // Questions and comments on G4Trajectory, o 33 // Questions and comments on G4Trajectory, on which this is based, 30 // should be sent to 34 // should be sent to 31 // Katsuya Amako (e-mail: Katsuya.Amako@k 35 // Katsuya Amako (e-mail: Katsuya.Amako@kek.jp) 32 // Makoto Asai (e-mail: asai@slac.stanf << 36 // Makoto Asai (e-mail: asai@kekvax.kek.jp) 33 // Takashi Sasaki (e-mail: Takashi.Sasaki@ 37 // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp) 34 // and on the extended code to: 38 // and on the extended code to: 35 // John Allison (e-mail: John.Allison@ma 39 // John Allison (e-mail: John.Allison@manchester.ac.uk) 36 // Joseph Perl (e-mail: perl@slac.stanf 40 // Joseph Perl (e-mail: perl@slac.stanford.edu) 37 // ------------------------------------------- << 41 // >> 42 // --------------------------------------------------------------- 38 43 39 #include "G4RichTrajectory.hh" 44 #include "G4RichTrajectory.hh" 40 #include "G4ClonedRichTrajectory.hh" << 45 #include "G4RichTrajectoryPoint.hh" 41 << 42 #include "G4ParticleTable.hh" << 43 #include "G4AttDef.hh" << 44 #include "G4AttDefStore.hh" 46 #include "G4AttDefStore.hh" >> 47 #include "G4AttDef.hh" 45 #include "G4AttValue.hh" 48 #include "G4AttValue.hh" 46 #include "G4PhysicsModelCatalog.hh" << 47 #include "G4RichTrajectoryPoint.hh" << 48 #include "G4UIcommand.hh" 49 #include "G4UIcommand.hh" 49 #include "G4UnitsTable.hh" 50 #include "G4UnitsTable.hh" 50 #include "G4VProcess.hh" 51 #include "G4VProcess.hh" 51 52 52 namespace { << 53 //#define G4ATTDEBUG 53 G4Mutex CloneRichTrajectoryMutex = G4MUTEX_IN << 54 } << 55 << 56 // #define G4ATTDEBUG << 57 #ifdef G4ATTDEBUG 54 #ifdef G4ATTDEBUG 58 # include "G4AttCheck.hh" << 55 #include "G4AttCheck.hh" 59 #endif 56 #endif 60 57 61 #include <sstream> 58 #include <sstream> 62 59 63 G4Allocator<G4RichTrajectory>*& aRichTrajector 60 G4Allocator<G4RichTrajectory>*& aRichTrajectoryAllocator() 64 { 61 { 65 G4ThreadLocalStatic G4Allocator<G4RichTrajec << 62 G4ThreadLocalStatic G4Allocator<G4RichTrajectory>* _instance = nullptr; 66 return _instance; << 63 return _instance; 67 } 64 } 68 65 69 G4RichTrajectory::G4RichTrajectory(const G4Tra << 66 G4RichTrajectory::G4RichTrajectory(): >> 67 fpRichPointsContainer(0), >> 68 fpCreatorProcess(0), >> 69 fCreatorModelID(0), >> 70 fpEndingProcess(0), >> 71 fFinalKineticEnergy(0.) 70 { 72 { 71 G4ParticleDefinition* fpParticleDefinition = << 73 } 72 ParticleName = fpParticleDefinition->GetPart << 73 PDGCharge = fpParticleDefinition->GetPDGChar << 74 PDGEncoding = fpParticleDefinition->GetPDGEn << 75 fTrackID = aTrack->GetTrackID(); << 76 fParentID = aTrack->GetParentID(); << 77 initialKineticEnergy = aTrack->GetKineticEne << 78 initialMomentum = aTrack->GetMomentum(); << 79 positionRecord = new G4TrajectoryPointContai << 80 << 81 // Following is for the first trajectory poi << 82 positionRecord->push_back(new G4RichTrajecto << 83 74 >> 75 G4RichTrajectory::G4RichTrajectory(const G4Track* aTrack): >> 76 G4Trajectory(aTrack) // Note: this initialises the base class data >> 77 // members and, unfortunately but never mind, >> 78 // creates a G4TrajectoryPoint in >> 79 // TrajectoryPointContainer that we cannot >> 80 // access because it's private. We store the >> 81 // same information (plus more) in a >> 82 // G4RichTrajectoryPoint in the >> 83 // RichTrajectoryPointsContainer >> 84 { 84 fpInitialVolume = aTrack->GetTouchableHandle 85 fpInitialVolume = aTrack->GetTouchableHandle(); 85 fpInitialNextVolume = aTrack->GetNextTouchab 86 fpInitialNextVolume = aTrack->GetNextTouchableHandle(); 86 fpCreatorProcess = aTrack->GetCreatorProcess 87 fpCreatorProcess = aTrack->GetCreatorProcess(); 87 fCreatorModelID = aTrack->GetCreatorModelID( 88 fCreatorModelID = aTrack->GetCreatorModelID(); 88 << 89 // On construction, set final values to init 89 // On construction, set final values to initial values. 90 // Final values are updated at the addition 90 // Final values are updated at the addition of every step - see AppendStep. 91 // << 92 fpFinalVolume = aTrack->GetTouchableHandle() 91 fpFinalVolume = aTrack->GetTouchableHandle(); 93 fpFinalNextVolume = aTrack->GetNextTouchable 92 fpFinalNextVolume = aTrack->GetNextTouchableHandle(); 94 fpEndingProcess = aTrack->GetCreatorProcess( 93 fpEndingProcess = aTrack->GetCreatorProcess(); 95 fFinalKineticEnergy = aTrack->GetKineticEner 94 fFinalKineticEnergy = aTrack->GetKineticEnergy(); 96 << 97 // Insert the first rich trajectory point (s 95 // Insert the first rich trajectory point (see note above)... 98 // << 96 fpRichPointsContainer = new RichTrajectoryPointsContainer; 99 fpRichPointContainer = new G4TrajectoryPoint << 97 fpRichPointsContainer->push_back(new G4RichTrajectoryPoint(aTrack)); 100 fpRichPointContainer->push_back(new G4RichTr << 98 } 101 } << 102 << 103 G4RichTrajectory::G4RichTrajectory(G4RichTraje << 104 { << 105 ParticleName = right.ParticleName; << 106 PDGCharge = right.PDGCharge; << 107 PDGEncoding = right.PDGEncoding; << 108 fTrackID = right.fTrackID; << 109 fParentID = right.fParentID; << 110 initialKineticEnergy = right.initialKineticE << 111 initialMomentum = right.initialMomentum; << 112 positionRecord = new G4TrajectoryPointContai << 113 << 114 for (auto& i : *right.positionRecord) { << 115 auto rightPoint = (G4RichTrajectoryPoint*) << 116 positionRecord->push_back(new G4RichTrajec << 117 } << 118 99 >> 100 G4RichTrajectory::G4RichTrajectory(G4RichTrajectory & right): >> 101 G4Trajectory(right) >> 102 { 119 fpInitialVolume = right.fpInitialVolume; 103 fpInitialVolume = right.fpInitialVolume; 120 fpInitialNextVolume = right.fpInitialNextVol 104 fpInitialNextVolume = right.fpInitialNextVolume; 121 fpCreatorProcess = right.fpCreatorProcess; 105 fpCreatorProcess = right.fpCreatorProcess; 122 fCreatorModelID = right.fCreatorModelID; 106 fCreatorModelID = right.fCreatorModelID; 123 fpFinalVolume = right.fpFinalVolume; 107 fpFinalVolume = right.fpFinalVolume; 124 fpFinalNextVolume = right.fpFinalNextVolume; 108 fpFinalNextVolume = right.fpFinalNextVolume; 125 fpEndingProcess = right.fpEndingProcess; 109 fpEndingProcess = right.fpEndingProcess; 126 fFinalKineticEnergy = right.fFinalKineticEne 110 fFinalKineticEnergy = right.fFinalKineticEnergy; 127 fpRichPointContainer = new G4TrajectoryPoint << 111 fpRichPointsContainer = new RichTrajectoryPointsContainer; 128 for (auto& i : *right.fpRichPointContainer) << 112 for(size_t i=0;i<right.fpRichPointsContainer->size();i++) 129 auto rightPoint = (G4RichTrajectoryPoint*) << 113 { 130 fpRichPointContainer->push_back(new G4Rich << 114 G4RichTrajectoryPoint* rightPoint = >> 115 (G4RichTrajectoryPoint*)((*(right.fpRichPointsContainer))[i]); >> 116 fpRichPointsContainer->push_back(new G4RichTrajectoryPoint(*rightPoint)); 131 } 117 } 132 } 118 } 133 119 134 G4RichTrajectory::~G4RichTrajectory() 120 G4RichTrajectory::~G4RichTrajectory() 135 { 121 { 136 if (fpRichPointContainer != nullptr) { << 122 if (fpRichPointsContainer) { 137 for (auto& i : *fpRichPointContainer) { << 123 // fpRichPointsContainer->clearAndDestroy(); 138 delete i; << 124 size_t i; >> 125 for(i=0;i<fpRichPointsContainer->size();i++){ >> 126 delete (*fpRichPointsContainer)[i]; 139 } 127 } 140 fpRichPointContainer->clear(); << 128 fpRichPointsContainer->clear(); 141 delete fpRichPointContainer; << 129 delete fpRichPointsContainer; 142 } 130 } 143 } 131 } 144 132 145 void G4RichTrajectory::AppendStep(const G4Step 133 void G4RichTrajectory::AppendStep(const G4Step* aStep) 146 { 134 { 147 fpRichPointContainer->push_back(new G4RichTr << 135 fpRichPointsContainer->push_back(new G4RichTrajectoryPoint(aStep)); 148 << 149 // Except for first step, which is a sort of 136 // Except for first step, which is a sort of virtual step to start 150 // the track, compute the final values... 137 // the track, compute the final values... 151 // << 152 const G4Track* track = aStep->GetTrack(); 138 const G4Track* track = aStep->GetTrack(); 153 const G4StepPoint* postStepPoint = aStep->Ge 139 const G4StepPoint* postStepPoint = aStep->GetPostStepPoint(); 154 if (track->GetCurrentStepNumber() > 0) { 140 if (track->GetCurrentStepNumber() > 0) { 155 fpFinalVolume = track->GetTouchableHandle( 141 fpFinalVolume = track->GetTouchableHandle(); 156 fpFinalNextVolume = track->GetNextTouchabl 142 fpFinalNextVolume = track->GetNextTouchableHandle(); 157 fpEndingProcess = postStepPoint->GetProces 143 fpEndingProcess = postStepPoint->GetProcessDefinedStep(); 158 fFinalKineticEnergy = 144 fFinalKineticEnergy = 159 aStep->GetPreStepPoint()->GetKineticEner << 145 aStep->GetPreStepPoint()->GetKineticEnergy() - >> 146 aStep->GetTotalEnergyDeposit(); 160 } 147 } 161 } 148 } 162 << 149 163 void G4RichTrajectory::MergeTrajectory(G4VTraj 150 void G4RichTrajectory::MergeTrajectory(G4VTrajectory* secondTrajectory) 164 { 151 { 165 if (secondTrajectory == nullptr) return; << 152 if(!secondTrajectory) return; 166 153 167 auto seco = (G4RichTrajectory*)secondTraject << 154 G4RichTrajectory* seco = (G4RichTrajectory*)secondTrajectory; 168 G4int ent = seco->GetPointEntries(); 155 G4int ent = seco->GetPointEntries(); 169 for (G4int i = 1; i < ent; ++i) { << 156 for(G4int i=1;i<ent;i++) { 170 // initial point of the second trajectory 157 // initial point of the second trajectory should not be merged 171 // << 158 fpRichPointsContainer->push_back((*(seco->fpRichPointsContainer))[i]); 172 fpRichPointContainer->push_back((*(seco->f << 159 // fpRichPointsContainer->push_back(seco->fpRichPointsContainer->removeAt(1)); 173 } 160 } 174 delete (*seco->fpRichPointContainer)[0]; << 161 delete (*seco->fpRichPointsContainer)[0]; 175 seco->fpRichPointContainer->clear(); << 162 seco->fpRichPointsContainer->clear(); 176 } 163 } 177 164 178 void G4RichTrajectory::ShowTrajectory(std::ost 165 void G4RichTrajectory::ShowTrajectory(std::ostream& os) const 179 { 166 { 180 // Invoke the default implementation in G4VT 167 // Invoke the default implementation in G4VTrajectory... 181 // << 182 G4VTrajectory::ShowTrajectory(os); 168 G4VTrajectory::ShowTrajectory(os); 183 << 184 // ... or override with your own code here. 169 // ... or override with your own code here. 185 } 170 } 186 171 187 void G4RichTrajectory::DrawTrajectory() const 172 void G4RichTrajectory::DrawTrajectory() const 188 { 173 { 189 // Invoke the default implementation in G4VT 174 // Invoke the default implementation in G4VTrajectory... 190 // << 191 G4VTrajectory::DrawTrajectory(); 175 G4VTrajectory::DrawTrajectory(); 192 << 193 // ... or override with your own code here. 176 // ... or override with your own code here. 194 } 177 } 195 178 196 const std::map<G4String, G4AttDef>* G4RichTraj << 179 const std::map<G4String,G4AttDef>* G4RichTrajectory::GetAttDefs() const 197 { 180 { 198 G4bool isNew; 181 G4bool isNew; 199 std::map<G4String, G4AttDef>* store = G4AttD << 182 std::map<G4String,G4AttDef>* store >> 183 = G4AttDefStore::GetInstance("G4RichTrajectory",isNew); 200 if (isNew) { 184 if (isNew) { 201 G4String ID; << 202 << 203 ID = "ID"; << 204 (*store)[ID] = G4AttDef(ID, "Track ID", "P << 205 185 206 ID = "PID"; << 186 // Get att defs from base class... 207 (*store)[ID] = G4AttDef(ID, "Parent ID", " << 187 *store = *(G4Trajectory::GetAttDefs()); 208 188 209 ID = "PN"; << 189 G4String ID; 210 (*store)[ID] = G4AttDef(ID, "Particle Name << 211 << 212 ID = "Ch"; << 213 (*store)[ID] = G4AttDef(ID, "Charge", "Phy << 214 << 215 ID = "PDG"; << 216 (*store)[ID] = G4AttDef(ID, "PDG Encoding" << 217 << 218 ID = "IKE"; << 219 (*store)[ID] = G4AttDef(ID, "Initial kinet << 220 << 221 ID = "IMom"; << 222 (*store)[ID] = G4AttDef(ID, "Initial momen << 223 << 224 ID = "IMag"; << 225 (*store)[ID] = G4AttDef(ID, "Initial momen << 226 << 227 ID = "NTP"; << 228 (*store)[ID] = G4AttDef(ID, "No. of points << 229 190 230 ID = "IVPath"; 191 ID = "IVPath"; 231 (*store)[ID] = G4AttDef(ID, "Initial Volum << 192 (*store)[ID] = G4AttDef(ID,"Initial Volume Path", >> 193 "Physics","","G4String"); 232 194 233 ID = "INVPath"; 195 ID = "INVPath"; 234 (*store)[ID] = G4AttDef(ID, "Initial Next << 196 (*store)[ID] = G4AttDef(ID,"Initial Next Volume Path", >> 197 "Physics","","G4String"); 235 198 236 ID = "CPN"; 199 ID = "CPN"; 237 (*store)[ID] = G4AttDef(ID, "Creator Proce << 200 (*store)[ID] = G4AttDef(ID,"Creator Process Name", >> 201 "Physics","","G4String"); 238 202 239 ID = "CPTN"; 203 ID = "CPTN"; 240 (*store)[ID] = G4AttDef(ID, "Creator Proce << 204 (*store)[ID] = G4AttDef(ID,"Creator Process Type Name", 241 << 205 "Physics","","G4String"); >> 206 242 ID = "CMID"; 207 ID = "CMID"; 243 (*store)[ID] = G4AttDef(ID, "Creator Model << 208 (*store)[ID] = G4AttDef(ID,"Creator Model ID", >> 209 "Physics","","G4int"); 244 210 245 ID = "CMN"; 211 ID = "CMN"; 246 (*store)[ID] = G4AttDef(ID, "Creator Model << 212 (*store)[ID] = G4AttDef(ID,"Creator Model Name", >> 213 "Physics","","G4String"); 247 214 248 ID = "FVPath"; 215 ID = "FVPath"; 249 (*store)[ID] = G4AttDef(ID, "Final Volume << 216 (*store)[ID] = G4AttDef(ID,"Final Volume Path", >> 217 "Physics","","G4String"); 250 218 251 ID = "FNVPath"; 219 ID = "FNVPath"; 252 (*store)[ID] = G4AttDef(ID, "Final Next Vo << 220 (*store)[ID] = G4AttDef(ID,"Final Next Volume Path", >> 221 "Physics","","G4String"); 253 222 254 ID = "EPN"; 223 ID = "EPN"; 255 (*store)[ID] = G4AttDef(ID, "Ending Proces << 224 (*store)[ID] = G4AttDef(ID,"Ending Process Name", >> 225 "Physics","","G4String"); 256 226 257 ID = "EPTN"; 227 ID = "EPTN"; 258 (*store)[ID] = G4AttDef(ID, "Ending Proces << 228 (*store)[ID] = G4AttDef(ID,"Ending Process Type Name", >> 229 "Physics","","G4String"); 259 230 260 ID = "FKE"; 231 ID = "FKE"; 261 (*store)[ID] = G4AttDef(ID, "Final kinetic << 232 (*store)[ID] = G4AttDef(ID,"Final kinetic energy", >> 233 "Physics","G4BestUnit","G4double"); >> 234 262 } 235 } 263 236 264 return store; 237 return store; 265 } 238 } 266 239 267 static G4String Path(const G4TouchableHandle& 240 static G4String Path(const G4TouchableHandle& th) 268 { 241 { 269 std::ostringstream oss; 242 std::ostringstream oss; 270 G4int depth = th->GetHistoryDepth(); 243 G4int depth = th->GetHistoryDepth(); 271 for (G4int i = depth; i >= 0; --i) { 244 for (G4int i = depth; i >= 0; --i) { 272 oss << th->GetVolume(i)->GetName() << ':' << 245 oss << th->GetVolume(i)->GetName() >> 246 << ':' << th->GetCopyNumber(i); 273 if (i != 0) oss << '/'; 247 if (i != 0) oss << '/'; 274 } 248 } 275 return oss.str(); 249 return oss.str(); 276 } 250 } 277 251 278 std::vector<G4AttValue>* G4RichTrajectory::Cre 252 std::vector<G4AttValue>* G4RichTrajectory::CreateAttValues() const 279 { 253 { 280 // Create base class att values... 254 // Create base class att values... 281 //std::vector<G4AttValue>* values = G4VTraje << 255 std::vector<G4AttValue>* values = G4Trajectory::CreateAttValues(); 282 auto values = new std::vector<G4AttValue>; << 283 values->push_back(G4AttValue("ID", G4UIcomma << 284 values->push_back(G4AttValue("PID", G4UIcomm << 285 values->push_back(G4AttValue("PN", ParticleN << 286 values->push_back(G4AttValue("Ch", G4UIcomma << 287 values->push_back(G4AttValue("PDG", G4UIcomm << 288 values->push_back(G4AttValue("IKE", G4BestUn << 289 values->push_back(G4AttValue("IMom", G4BestU << 290 values->push_back(G4AttValue("IMag", G4BestU << 291 values->push_back(G4AttValue("NTP", G4UIcomm << 292 << 293 if (fpInitialVolume && (fpInitialVolume->Get << 294 values->push_back(G4AttValue("IVPath", Pat << 295 } << 296 else { << 297 values->push_back(G4AttValue("IVPath", "No << 298 } << 299 << 300 if (fpInitialNextVolume && (fpInitialNextVol << 301 values->push_back(G4AttValue("INVPath", Pa << 302 } << 303 else { << 304 values->push_back(G4AttValue("INVPath", "N << 305 } << 306 256 307 if (fpCreatorProcess != nullptr) { << 257 if (fpInitialVolume && fpInitialVolume->GetVolume()) { 308 values->push_back(G4AttValue("CPN", fpCrea << 258 values->push_back(G4AttValue("IVPath",Path(fpInitialVolume),"")); 309 G4ProcessType type = fpCreatorProcess->Get << 259 } else { 310 values->push_back(G4AttValue("CPTN", G4VPr << 260 values->push_back(G4AttValue("IVPath","None","")); 311 values->push_back(G4AttValue("CMID", G4UIc << 312 const G4String& creatorModelName = G4Physi << 313 values->push_back(G4AttValue("CMN", creato << 314 } << 315 else { << 316 values->push_back(G4AttValue("CPN", "None" << 317 values->push_back(G4AttValue("CPTN", "None << 318 values->push_back(G4AttValue("CMID", "None << 319 values->push_back(G4AttValue("CMN", "None" << 320 } 261 } 321 262 322 if (fpFinalVolume && (fpFinalVolume->GetVolu << 263 if (fpInitialNextVolume && fpInitialNextVolume->GetVolume()) { 323 values->push_back(G4AttValue("FVPath", Pat << 264 values->push_back(G4AttValue("INVPath",Path(fpInitialNextVolume),"")); 324 } << 265 } else { 325 else { << 266 values->push_back(G4AttValue("INVPath","None","")); 326 values->push_back(G4AttValue("FVPath", "No << 327 } 267 } 328 268 329 if (fpFinalNextVolume && (fpFinalNextVolume- << 269 if (fpCreatorProcess) { 330 values->push_back(G4AttValue("FNVPath", Pa << 270 values->push_back 331 } << 271 (G4AttValue("CPN",fpCreatorProcess->GetProcessName(),"")); 332 else { << 272 G4ProcessType type = fpCreatorProcess->GetProcessType(); 333 values->push_back(G4AttValue("FNVPath", "N << 273 values->push_back >> 274 (G4AttValue("CPTN",G4VProcess::GetProcessTypeName(type),"")); >> 275 values->push_back >> 276 (G4AttValue("CMID",G4UIcommand::ConvertToString(fCreatorModelID),"")); >> 277 const G4String& creatorModelName = >> 278 G4PhysicsModelCatalog::GetModelName(fCreatorModelID); >> 279 values->push_back(G4AttValue("CMN",creatorModelName,"")); >> 280 } else { >> 281 values->push_back(G4AttValue("CPN","None","")); >> 282 values->push_back(G4AttValue("CPTN","None","")); >> 283 values->push_back(G4AttValue("CMID","None","")); >> 284 values->push_back(G4AttValue("CMN","None","")); >> 285 } >> 286 >> 287 if (fpFinalVolume && fpFinalVolume->GetVolume()) { >> 288 values->push_back(G4AttValue("FVPath",Path(fpFinalVolume),"")); >> 289 } else { >> 290 values->push_back(G4AttValue("FVPath","None","")); >> 291 } >> 292 >> 293 if (fpFinalNextVolume && fpFinalNextVolume->GetVolume()) { >> 294 values->push_back(G4AttValue("FNVPath",Path(fpFinalNextVolume),"")); >> 295 } else { >> 296 values->push_back(G4AttValue("FNVPath","None","")); 334 } 297 } 335 298 336 if (fpEndingProcess != nullptr) { << 299 if (fpEndingProcess) { 337 values->push_back(G4AttValue("EPN", fpEndi << 300 values->push_back(G4AttValue("EPN",fpEndingProcess->GetProcessName(),"")); 338 G4ProcessType type = fpEndingProcess->GetP 301 G4ProcessType type = fpEndingProcess->GetProcessType(); 339 values->push_back(G4AttValue("EPTN", G4VPr << 302 values->push_back(G4AttValue("EPTN",G4VProcess::GetProcessTypeName(type),"")); 340 } << 303 } else { 341 else { << 304 values->push_back(G4AttValue("EPN","None","")); 342 values->push_back(G4AttValue("EPN", "None" << 305 values->push_back(G4AttValue("EPTN","None","")); 343 values->push_back(G4AttValue("EPTN", "None << 344 } 306 } 345 307 346 values->push_back(G4AttValue("FKE", G4BestUn << 308 values->push_back >> 309 (G4AttValue("FKE",G4BestUnit(fFinalKineticEnergy,"Energy"),"")); 347 310 348 #ifdef G4ATTDEBUG 311 #ifdef G4ATTDEBUG 349 G4cout << G4AttCheck(values, GetAttDefs()); << 312 G4cout << G4AttCheck(values,GetAttDefs()); 350 #endif 313 #endif 351 314 352 return values; 315 return values; 353 } 316 } 354 << 355 G4ParticleDefinition* G4RichTrajectory::GetPar << 356 { << 357 return (G4ParticleTable::GetParticleTable()- << 358 } << 359 << 360 G4VTrajectory* G4RichTrajectory::CloneForMaste << 361 { << 362 G4AutoLock lock(&CloneRichTrajectoryMutex); << 363 auto* cloned = new G4ClonedRichTrajectory(*t << 364 return cloned; << 365 } << 366 << 367 317