Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // G4Trajectory class implementation << 23 // >> 24 // $Id: G4Trajectory.cc,v 1.20 2002/11/08 18:27:40 johna Exp $ >> 25 // GEANT4 tag $Name: geant4-05-01-patch-01 $ >> 26 // >> 27 // >> 28 // --------------------------------------------------------------- >> 29 // >> 30 // G4Trajectory.cc 27 // 31 // 28 // Contact: 32 // Contact: 29 // Questions and comments to this code shoul 33 // Questions and comments to this code should be sent to 30 // Katsuya Amako (e-mail: Katsuya.Amako@k 34 // Katsuya Amako (e-mail: Katsuya.Amako@kek.jp) 31 // Makoto Asai (e-mail: asai@slac.stanf << 35 // Makoto Asai (e-mail: asai@kekvax.kek.jp) 32 // Takashi Sasaki (e-mail: Takashi.Sasaki@ 36 // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp) 33 // ------------------------------------------- << 37 // >> 38 // --------------------------------------------------------------- 34 39 35 #include "G4Trajectory.hh" << 36 40 37 #include "G4AttDef.hh" << 41 #include "G4Trajectory.hh" >> 42 #include "G4TrajectoryPoint.hh" >> 43 #include "G4ParticleTable.hh" 38 #include "G4AttDefStore.hh" 44 #include "G4AttDefStore.hh" >> 45 #include "G4AttDef.hh" 39 #include "G4AttValue.hh" 46 #include "G4AttValue.hh" 40 #include "G4ParticleTable.hh" << 41 #include "G4TrajectoryPoint.hh" << 42 #include "G4ClonedTrajectory.hh" << 43 #include "G4UIcommand.hh" << 44 #include "G4UnitsTable.hh" 47 #include "G4UnitsTable.hh" 45 #include "G4AutoLock.hh" << 48 #include "g4std/strstream" 46 49 47 namespace { << 50 G4Allocator<G4Trajectory> aTrajectoryAllocator; 48 G4Mutex CloneTrajectoryMutex = G4MUTEX_INITIA << 49 } << 50 51 51 // #define G4ATTDEBUG << 52 G4Trajectory::G4Trajectory() 52 #ifdef G4ATTDEBUG << 53 : positionRecord(0), fTrackID(0), fParentID(0), 53 # include "G4AttCheck.hh" << 54 PDGEncoding( 0 ), PDGCharge(0.0), ParticleName(""), 54 #endif << 55 initialMomentum( G4ThreeVector() ) 55 << 56 {;} 56 G4Allocator<G4Trajectory>*& aTrajectoryAllocat << 57 { << 58 G4ThreadLocalStatic G4Allocator<G4Trajectory << 59 return _instance; << 60 } << 61 57 62 G4Trajectory::G4Trajectory(const G4Track* aTra 58 G4Trajectory::G4Trajectory(const G4Track* aTrack) 63 { 59 { 64 G4ParticleDefinition* fpParticleDefinition = << 60 G4ParticleDefinition * fpParticleDefinition = aTrack->GetDefinition(); 65 ParticleName = fpParticleDefinition->GetPart << 61 ParticleName = fpParticleDefinition->GetParticleName(); 66 PDGCharge = fpParticleDefinition->GetPDGChar << 62 PDGCharge = fpParticleDefinition->GetPDGCharge(); 67 PDGEncoding = fpParticleDefinition->GetPDGEn << 63 PDGEncoding = fpParticleDefinition->GetPDGEncoding(); 68 fTrackID = aTrack->GetTrackID(); << 64 fTrackID = aTrack->GetTrackID(); 69 fParentID = aTrack->GetParentID(); << 65 fParentID = aTrack->GetParentID(); 70 initialKineticEnergy = aTrack->GetKineticEne << 66 initialMomentum = aTrack->GetMomentum(); 71 initialMomentum = aTrack->GetMomentum(); << 67 positionRecord = new TrajectoryPointContainer(); 72 positionRecord = new G4TrajectoryPointContai << 68 // Following is for the first trajectory point 73 << 69 positionRecord->push_back(new G4TrajectoryPoint(aTrack->GetPosition())); 74 // Following is for the first trajectory poi << 75 positionRecord->push_back(new G4TrajectoryPo << 76 } 70 } 77 71 78 G4Trajectory::G4Trajectory(G4Trajectory& right << 72 G4Trajectory::G4Trajectory(G4Trajectory & right) 79 { 73 { 80 ParticleName = right.ParticleName; 74 ParticleName = right.ParticleName; 81 PDGCharge = right.PDGCharge; 75 PDGCharge = right.PDGCharge; 82 PDGEncoding = right.PDGEncoding; 76 PDGEncoding = right.PDGEncoding; 83 fTrackID = right.fTrackID; 77 fTrackID = right.fTrackID; 84 fParentID = right.fParentID; 78 fParentID = right.fParentID; 85 initialKineticEnergy = right.initialKineticE << 86 initialMomentum = right.initialMomentum; 79 initialMomentum = right.initialMomentum; 87 positionRecord = new G4TrajectoryPointContai << 80 positionRecord = new TrajectoryPointContainer(); 88 81 89 for (auto& i : *right.positionRecord) { << 82 for(size_t i=0;i<right.positionRecord->size();i++) 90 auto rightPoint = (G4TrajectoryPoint*)i; << 83 { >> 84 G4TrajectoryPoint* rightPoint = (G4TrajectoryPoint*)((*(right.positionRecord))[i]); 91 positionRecord->push_back(new G4Trajectory 85 positionRecord->push_back(new G4TrajectoryPoint(*rightPoint)); 92 } 86 } 93 } 87 } 94 88 95 G4VTrajectory* G4Trajectory::CloneForMaster() << 96 { << 97 G4AutoLock lock(&CloneTrajectoryMutex); << 98 auto* cloned = new G4ClonedTrajectory(*this) << 99 return cloned; << 100 } << 101 << 102 G4Trajectory::~G4Trajectory() 89 G4Trajectory::~G4Trajectory() 103 { 90 { 104 if (positionRecord != nullptr) { << 91 // positionRecord->clearAndDestroy(); 105 for (auto& i : *positionRecord) { << 92 size_t i; 106 delete i; << 93 for(i=0;i<positionRecord->size();i++){ 107 } << 94 delete (*positionRecord)[i]; 108 positionRecord->clear(); << 109 delete positionRecord; << 110 } 95 } >> 96 positionRecord->clear(); >> 97 >> 98 delete positionRecord; 111 } 99 } 112 100 113 void G4Trajectory::ShowTrajectory(std::ostream << 101 void G4Trajectory::ShowTrajectory(G4std::ostream& os) const 114 { 102 { 115 // Invoke the default implementation in G4VT 103 // Invoke the default implementation in G4VTrajectory... 116 G4VTrajectory::ShowTrajectory(os); 104 G4VTrajectory::ShowTrajectory(os); 117 << 118 // ... or override with your own code here. 105 // ... or override with your own code here. 119 } 106 } 120 107 121 void G4Trajectory::DrawTrajectory() const << 108 void G4Trajectory::DrawTrajectory(G4int i_mode) const 122 { 109 { 123 // Invoke the default implementation in G4VT 110 // Invoke the default implementation in G4VTrajectory... 124 G4VTrajectory::DrawTrajectory(); << 111 G4VTrajectory::DrawTrajectory(i_mode); 125 << 126 // ... or override with your own code here. 112 // ... or override with your own code here. 127 } 113 } 128 114 129 const std::map<G4String, G4AttDef>* G4Trajecto << 115 const G4std::map<G4String,G4AttDef>* G4Trajectory::GetAttDefs() const 130 { 116 { 131 G4bool isNew; 117 G4bool isNew; 132 std::map<G4String, G4AttDef>* store = G4AttD << 118 G4std::map<G4String,G4AttDef>* store >> 119 = G4AttDefStore::GetInstance("G4Trajectory",isNew); 133 if (isNew) { 120 if (isNew) { >> 121 134 G4String ID("ID"); 122 G4String ID("ID"); 135 (*store)[ID] = G4AttDef(ID, "Track ID", "P << 123 (*store)[ID] = G4AttDef(ID,"Track ID","Bookkeeping","","G4int"); 136 124 137 G4String PID("PID"); 125 G4String PID("PID"); 138 (*store)[PID] = G4AttDef(PID, "Parent ID", << 126 (*store)[PID] = G4AttDef(PID,"Parent ID","Bookkeeping","","G4int"); 139 127 140 G4String PN("PN"); 128 G4String PN("PN"); 141 (*store)[PN] = G4AttDef(PN, "Particle Name << 129 (*store)[PN] = G4AttDef(PN,"Particle Name","Physics","","G4String"); 142 130 143 G4String Ch("Ch"); 131 G4String Ch("Ch"); 144 (*store)[Ch] = G4AttDef(Ch, "Charge", "Phy << 132 (*store)[Ch] = G4AttDef(Ch,"Charge","Physics","","G4double"); 145 133 146 G4String PDG("PDG"); 134 G4String PDG("PDG"); 147 (*store)[PDG] = G4AttDef(PDG, "PDG Encodin << 135 (*store)[PDG] = G4AttDef(PDG,"PDG Encoding","Physics","","G4int"); 148 << 149 G4String IKE("IKE"); << 150 (*store)[IKE] = G4AttDef(IKE, "Initial kin << 151 136 152 G4String IMom("IMom"); 137 G4String IMom("IMom"); 153 (*store)[IMom] = G4AttDef(IMom, "Initial m << 138 (*store)[IMom] = G4AttDef(IMom, "Momentum of track at start of trajectory", 154 << 139 "Physics","","G4ThreeVector"); 155 G4String IMag("IMag"); << 156 (*store)[IMag] = << 157 G4AttDef(IMag, "Initial momentum magnitu << 158 140 159 G4String NTP("NTP"); 141 G4String NTP("NTP"); 160 (*store)[NTP] = G4AttDef(NTP, "No. of poin << 142 (*store)[NTP] = G4AttDef(NTP,"No. of points","Physics","","G4int"); >> 143 161 } 144 } 162 return store; 145 return store; 163 } 146 } 164 147 165 std::vector<G4AttValue>* G4Trajectory::CreateA << 148 G4std::vector<G4AttValue>* G4Trajectory::CreateAttValues() const 166 { 149 { 167 auto values = new std::vector<G4AttValue>; << 150 char c[100]; 168 << 151 G4std::ostrstream s(c,100); 169 values->push_back(G4AttValue("ID", G4UIcomma << 170 << 171 values->push_back(G4AttValue("PID", G4UIcomm << 172 152 173 values->push_back(G4AttValue("PN", ParticleN << 153 G4std::vector<G4AttValue>* values = new G4std::vector<G4AttValue>; 174 154 175 values->push_back(G4AttValue("Ch", G4UIcomma << 155 s.seekp(G4std::ios::beg); >> 156 s << fTrackID << G4std::ends; >> 157 values->push_back(G4AttValue("ID",c,"")); 176 158 177 values->push_back(G4AttValue("PDG", G4UIcomm << 159 s.seekp(G4std::ios::beg); >> 160 s << fParentID << G4std::ends; >> 161 values->push_back(G4AttValue("PID",c,"")); 178 162 179 values->push_back(G4AttValue("IKE", G4BestUn << 163 values->push_back(G4AttValue("PN",ParticleName,"")); 180 164 181 values->push_back(G4AttValue("IMom", G4BestU << 165 s.seekp(G4std::ios::beg); >> 166 s << PDGCharge << G4std::ends; >> 167 values->push_back(G4AttValue("Ch",c,"")); 182 168 183 values->push_back(G4AttValue("IMag", G4BestU << 169 s.seekp(G4std::ios::beg); >> 170 s << PDGEncoding << G4std::ends; >> 171 values->push_back(G4AttValue("PDG",c,"")); 184 172 185 values->push_back(G4AttValue("NTP", G4UIcomm << 173 s.seekp(G4std::ios::beg); >> 174 s << G4BestUnit(initialMomentum,"Energy") << G4std::ends; >> 175 values->push_back(G4AttValue("IMom",c,"")); 186 176 187 #ifdef G4ATTDEBUG << 177 s.seekp(G4std::ios::beg); 188 G4cout << G4AttCheck(values, GetAttDefs()); << 178 s << GetPointEntries() << G4std::ends; 189 #endif << 179 values->push_back(G4AttValue("NTP",c,"")); 190 180 191 return values; 181 return values; 192 } 182 } 193 183 194 void G4Trajectory::AppendStep(const G4Step* aS 184 void G4Trajectory::AppendStep(const G4Step* aStep) 195 { 185 { 196 positionRecord->push_back(new G4TrajectoryPo << 186 positionRecord->push_back( new G4TrajectoryPoint(aStep->GetPostStepPoint()-> >> 187 GetPosition() )); 197 } 188 } 198 << 189 199 G4ParticleDefinition* G4Trajectory::GetParticl 190 G4ParticleDefinition* G4Trajectory::GetParticleDefinition() 200 { 191 { 201 return (G4ParticleTable::GetParticleTable()- << 192 return (G4ParticleTable::GetParticleTable()->FindParticle(ParticleName)); 202 } 193 } 203 194 204 void G4Trajectory::MergeTrajectory(G4VTrajecto 195 void G4Trajectory::MergeTrajectory(G4VTrajectory* secondTrajectory) 205 { 196 { 206 if (secondTrajectory == nullptr) return; << 197 if(!secondTrajectory) return; 207 198 208 auto seco = (G4Trajectory*)secondTrajectory; << 199 G4Trajectory* seco = (G4Trajectory*)secondTrajectory; 209 G4int ent = seco->GetPointEntries(); 200 G4int ent = seco->GetPointEntries(); 210 for (G4int i = 1; i < ent; ++i) // initial << 201 for(G4int i=1;i<ent;i++) // initial point of the second trajectory should not be merged 211 { << 202 { 212 positionRecord->push_back((*(seco->positio 203 positionRecord->push_back((*(seco->positionRecord))[i]); >> 204 // positionRecord->push_back(seco->positionRecord->removeAt(1)); 213 } 205 } 214 delete (*seco->positionRecord)[0]; 206 delete (*seco->positionRecord)[0]; 215 seco->positionRecord->clear(); 207 seco->positionRecord->clear(); 216 } 208 } >> 209 >> 210 217 211