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 // G4SmoothTrajectory class implementation << 26 // >> 27 // $Id: G4SmoothTrajectory.cc 69003 2013-04-15 09:25:23Z gcosmo $ >> 28 // >> 29 // >> 30 // --------------------------------------------------------------- >> 31 // >> 32 // G4SmoothTrajectory.cc 27 // 33 // 28 // Contact: 34 // Contact: 29 // Questions and comments to this code shoul 35 // Questions and comments to this code should be sent to 30 // Katsuya Amako (e-mail: Katsuya.Amako@k 36 // Katsuya Amako (e-mail: Katsuya.Amako@kek.jp) 31 // Makoto Asai (e-mail: asai@slac.stanf << 37 // Makoto Asai (e-mail: asai@kekvax.kek.jp) 32 // Takashi Sasaki (e-mail: Takashi.Sasaki@ 38 // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp) 33 // ------------------------------------------- << 39 // >> 40 // --------------------------------------------------------------- 34 41 35 #include "G4SmoothTrajectory.hh" 42 #include "G4SmoothTrajectory.hh" 36 #include "G4ClonedSmoothTrajectory.hh" << 43 #include "G4SmoothTrajectoryPoint.hh" 37 << 44 #include "G4ParticleTable.hh" 38 #include "G4AttDef.hh" << 39 #include "G4AttDefStore.hh" 45 #include "G4AttDefStore.hh" >> 46 #include "G4AttDef.hh" 40 #include "G4AttValue.hh" 47 #include "G4AttValue.hh" 41 #include "G4ParticleTable.hh" << 42 #include "G4SmoothTrajectoryPoint.hh" << 43 #include "G4UIcommand.hh" 48 #include "G4UIcommand.hh" 44 #include "G4UnitsTable.hh" 49 #include "G4UnitsTable.hh" 45 #include "G4AutoLock.hh" << 46 << 47 namespace { << 48 G4Mutex CloneSmoothTrajectoryMutex = G4MUTEX_ << 49 } << 50 50 51 // #define G4ATTDEBUG << 51 //#define G4ATTDEBUG 52 #ifdef G4ATTDEBUG 52 #ifdef G4ATTDEBUG 53 # include "G4AttCheck.hh" << 53 #include "G4AttCheck.hh" 54 #endif 54 #endif 55 55 56 G4Allocator<G4SmoothTrajectory>*& aSmoothTraje << 56 G4ThreadLocal G4Allocator<G4SmoothTrajectory> *aSmoothTrajectoryAllocator = 0; 57 { << 57 58 G4ThreadLocalStatic G4Allocator<G4SmoothTraj << 58 G4SmoothTrajectory::G4SmoothTrajectory() 59 return _instance; << 59 : positionRecord(0), fTrackID(0), fParentID(0), 60 } << 60 PDGEncoding( 0 ), PDGCharge(0.0), ParticleName(""), >> 61 initialKineticEnergy( 0. ), initialMomentum( G4ThreeVector() ) >> 62 {;} 61 63 62 G4SmoothTrajectory::G4SmoothTrajectory(const G 64 G4SmoothTrajectory::G4SmoothTrajectory(const G4Track* aTrack) 63 { 65 { 64 G4ParticleDefinition* fpParticleDefinition = << 66 G4ParticleDefinition * fpParticleDefinition = aTrack->GetDefinition(); 65 ParticleName = fpParticleDefinition->GetPart << 67 ParticleName = fpParticleDefinition->GetParticleName(); 66 PDGCharge = fpParticleDefinition->GetPDGChar << 68 PDGCharge = fpParticleDefinition->GetPDGCharge(); 67 PDGEncoding = fpParticleDefinition->GetPDGEn << 69 PDGEncoding = fpParticleDefinition->GetPDGEncoding(); 68 fTrackID = aTrack->GetTrackID(); << 70 fTrackID = aTrack->GetTrackID(); 69 fParentID = aTrack->GetParentID(); << 71 fParentID = aTrack->GetParentID(); 70 initialKineticEnergy = aTrack->GetKineticEne << 72 initialKineticEnergy = aTrack->GetKineticEnergy(); 71 initialMomentum = aTrack->GetMomentum(); << 73 initialMomentum = aTrack->GetMomentum(); 72 positionRecord = new G4TrajectoryPointContai << 74 positionRecord = new TrajectoryPointContainer(); 73 << 75 // Following is for the first trajectory point 74 // Following is for the first trajectory poi << 76 positionRecord->push_back(new G4SmoothTrajectoryPoint(aTrack->GetPosition())); 75 // << 77 76 positionRecord->push_back(new G4SmoothTrajec << 78 // The first point has no auxiliary points, so set the auxiliary 77 << 79 // points vector to NULL 78 // The first point has no auxiliary points, << 80 positionRecord->push_back(new G4SmoothTrajectoryPoint(aTrack->GetPosition(), 0)); 79 // points vector to NULL << 80 // << 81 positionRecord->push_back(new G4SmoothTrajec << 82 } 81 } 83 82 84 G4SmoothTrajectory::G4SmoothTrajectory(G4Smoot << 83 G4SmoothTrajectory::G4SmoothTrajectory(G4SmoothTrajectory & right):G4VTrajectory() 85 { 84 { 86 ParticleName = right.ParticleName; 85 ParticleName = right.ParticleName; 87 PDGCharge = right.PDGCharge; 86 PDGCharge = right.PDGCharge; 88 PDGEncoding = right.PDGEncoding; 87 PDGEncoding = right.PDGEncoding; 89 fTrackID = right.fTrackID; 88 fTrackID = right.fTrackID; 90 fParentID = right.fParentID; 89 fParentID = right.fParentID; 91 initialKineticEnergy = right.initialKineticE 90 initialKineticEnergy = right.initialKineticEnergy; 92 initialMomentum = right.initialMomentum; 91 initialMomentum = right.initialMomentum; 93 positionRecord = new G4TrajectoryPointContai << 92 positionRecord = new TrajectoryPointContainer(); 94 93 95 for (auto& i : *right.positionRecord) { << 94 for(size_t i=0;i<right.positionRecord->size();i++) 96 auto rightPoint = (G4SmoothTrajectoryPoint << 95 { >> 96 G4SmoothTrajectoryPoint* rightPoint = (G4SmoothTrajectoryPoint*)((*(right.positionRecord))[i]); 97 positionRecord->push_back(new G4SmoothTraj 97 positionRecord->push_back(new G4SmoothTrajectoryPoint(*rightPoint)); 98 } 98 } 99 } 99 } 100 100 101 G4VTrajectory* G4SmoothTrajectory::CloneForMas << 102 { << 103 G4AutoLock lock(&CloneSmoothTrajectoryMutex) << 104 auto* cloned = new G4ClonedSmoothTrajectory( << 105 return cloned; << 106 } << 107 << 108 G4SmoothTrajectory::~G4SmoothTrajectory() 101 G4SmoothTrajectory::~G4SmoothTrajectory() 109 { 102 { 110 if (positionRecord != nullptr) { << 103 if (positionRecord) 111 for (auto& i : *positionRecord) { << 104 { 112 delete i; << 105 size_t i; >> 106 for(i=0;i<positionRecord->size();i++) >> 107 { >> 108 delete (*positionRecord)[i]; 113 } 109 } 114 positionRecord->clear(); 110 positionRecord->clear(); 115 delete positionRecord; 111 delete positionRecord; 116 } 112 } 117 } 113 } 118 114 119 void G4SmoothTrajectory::ShowTrajectory(std::o 115 void G4SmoothTrajectory::ShowTrajectory(std::ostream& os) const 120 { 116 { 121 // Invoke the default implementation in G4VT 117 // Invoke the default implementation in G4VTrajectory... 122 // << 123 G4VTrajectory::ShowTrajectory(os); 118 G4VTrajectory::ShowTrajectory(os); 124 << 125 // ... or override with your own code here. 119 // ... or override with your own code here. 126 } 120 } 127 121 128 void G4SmoothTrajectory::DrawTrajectory() cons 122 void G4SmoothTrajectory::DrawTrajectory() const 129 { 123 { 130 // Invoke the default implementation in G4VT 124 // Invoke the default implementation in G4VTrajectory... 131 // << 132 G4VTrajectory::DrawTrajectory(); 125 G4VTrajectory::DrawTrajectory(); 133 << 134 // ... or override with your own code here. 126 // ... or override with your own code here. 135 } 127 } 136 128 137 const std::map<G4String, G4AttDef>* G4SmoothTr << 129 const std::map<G4String,G4AttDef>* G4SmoothTrajectory::GetAttDefs() const 138 { 130 { 139 G4bool isNew; 131 G4bool isNew; 140 std::map<G4String, G4AttDef>* store = G4AttD << 132 std::map<G4String,G4AttDef>* store >> 133 = G4AttDefStore::GetInstance("G4SmoothTrajectory",isNew); 141 if (isNew) { 134 if (isNew) { >> 135 142 G4String ID("ID"); 136 G4String ID("ID"); 143 (*store)[ID] = G4AttDef(ID, "Track ID", "P << 137 (*store)[ID] = G4AttDef(ID,"Track ID","Physics","","G4int"); 144 138 145 G4String PID("PID"); 139 G4String PID("PID"); 146 (*store)[PID] = G4AttDef(PID, "Parent ID", << 140 (*store)[PID] = G4AttDef(PID,"Parent ID","Physics","","G4int"); 147 141 148 G4String PN("PN"); 142 G4String PN("PN"); 149 (*store)[PN] = G4AttDef(PN, "Particle Name << 143 (*store)[PN] = G4AttDef(PN,"Particle Name","Physics","","G4String"); 150 144 151 G4String Ch("Ch"); 145 G4String Ch("Ch"); 152 (*store)[Ch] = G4AttDef(Ch, "Charge", "Phy << 146 (*store)[Ch] = G4AttDef(Ch,"Charge","Physics","e+","G4double"); 153 147 154 G4String PDG("PDG"); 148 G4String PDG("PDG"); 155 (*store)[PDG] = G4AttDef(PDG, "PDG Encodin << 149 (*store)[PDG] = G4AttDef(PDG,"PDG Encoding","Physics","","G4int"); 156 150 157 G4String IKE("IKE"); 151 G4String IKE("IKE"); 158 (*store)[IKE] = G4AttDef(IKE, "Initial kin << 152 (*store)[IKE] = >> 153 G4AttDef(IKE, "Initial kinetic energy", >> 154 "Physics","G4BestUnit","G4double"); 159 155 160 G4String IMom("IMom"); 156 G4String IMom("IMom"); 161 (*store)[IMom] = G4AttDef(IMom, "Initial m << 157 (*store)[IMom] = G4AttDef(IMom, "Initial momentum", >> 158 "Physics","G4BestUnit","G4ThreeVector"); 162 159 163 G4String IMag("IMag"); 160 G4String IMag("IMag"); 164 (*store)[IMag] = << 161 (*store)[IMag] = G4AttDef 165 G4AttDef(IMag, "Initial momentum magnitu << 162 (IMag, "Initial momentum magnitude", >> 163 "Physics","G4BestUnit","G4double"); 166 164 167 G4String NTP("NTP"); 165 G4String NTP("NTP"); 168 (*store)[NTP] = G4AttDef(NTP, "No. of poin << 166 (*store)[NTP] = G4AttDef(NTP,"No. of points","Physics","","G4int"); >> 167 169 } 168 } 170 return store; 169 return store; 171 } 170 } 172 171 >> 172 173 std::vector<G4AttValue>* G4SmoothTrajectory::C 173 std::vector<G4AttValue>* G4SmoothTrajectory::CreateAttValues() const 174 { 174 { 175 auto values = new std::vector<G4AttValue>; << 175 std::vector<G4AttValue>* values = new std::vector<G4AttValue>; 176 176 177 values->push_back(G4AttValue("ID", G4UIcomma << 177 values->push_back >> 178 (G4AttValue("ID",G4UIcommand::ConvertToString(fTrackID),"")); 178 179 179 values->push_back(G4AttValue("PID", G4UIcomm << 180 values->push_back >> 181 (G4AttValue("PID",G4UIcommand::ConvertToString(fParentID),"")); 180 182 181 values->push_back(G4AttValue("PN", ParticleN << 183 values->push_back(G4AttValue("PN",ParticleName,"")); 182 184 183 values->push_back(G4AttValue("Ch", G4UIcomma << 185 values->push_back >> 186 (G4AttValue("Ch",G4UIcommand::ConvertToString(PDGCharge),"")); 184 187 185 values->push_back(G4AttValue("PDG", G4UIcomm << 188 values->push_back >> 189 (G4AttValue("PDG",G4UIcommand::ConvertToString(PDGEncoding),"")); 186 190 187 values->push_back(G4AttValue("IKE", G4BestUn << 191 values->push_back >> 192 (G4AttValue("IKE",G4BestUnit(initialKineticEnergy,"Energy"),"")); 188 193 189 values->push_back(G4AttValue("IMom", G4BestU << 194 values->push_back >> 195 (G4AttValue("IMom",G4BestUnit(initialMomentum,"Energy"),"")); 190 196 191 values->push_back(G4AttValue("IMag", G4BestU << 197 values->push_back >> 198 (G4AttValue("IMag",G4BestUnit(initialMomentum.mag(),"Energy"),"")); 192 199 193 values->push_back(G4AttValue("NTP", G4UIcomm << 200 values->push_back >> 201 (G4AttValue("NTP",G4UIcommand::ConvertToString(GetPointEntries()),"")); 194 202 195 #ifdef G4ATTDEBUG 203 #ifdef G4ATTDEBUG 196 G4cout << G4AttCheck(values, GetAttDefs()); << 204 G4cout << G4AttCheck(values,GetAttDefs()); 197 #endif 205 #endif 198 206 199 return values; 207 return values; 200 } 208 } 201 209 202 void G4SmoothTrajectory::AppendStep(const G4St 210 void G4SmoothTrajectory::AppendStep(const G4Step* aStep) 203 { 211 { 204 positionRecord->push_back(new G4SmoothTrajec << 212 positionRecord->push_back( 205 aStep->GetPostStepPoint()->GetPosition(), << 213 new G4SmoothTrajectoryPoint(aStep->GetPostStepPoint()->GetPosition(), >> 214 aStep->GetPointerToVectorOfAuxiliaryPoints())); 206 } 215 } 207 << 216 208 G4ParticleDefinition* G4SmoothTrajectory::GetP 217 G4ParticleDefinition* G4SmoothTrajectory::GetParticleDefinition() 209 { 218 { 210 return (G4ParticleTable::GetParticleTable()- << 219 return (G4ParticleTable::GetParticleTable()->FindParticle(ParticleName)); 211 } 220 } 212 221 213 void G4SmoothTrajectory::MergeTrajectory(G4VTr 222 void G4SmoothTrajectory::MergeTrajectory(G4VTrajectory* secondTrajectory) 214 { 223 { 215 if (secondTrajectory == nullptr) return; << 224 if(!secondTrajectory) return; 216 225 217 auto seco = (G4SmoothTrajectory*)secondTraje << 226 G4SmoothTrajectory* seco = (G4SmoothTrajectory*)secondTrajectory; 218 G4int ent = seco->GetPointEntries(); 227 G4int ent = seco->GetPointEntries(); 219 << 228 for(G4int i=1;i<ent;i++) // initial point of the second trajectory should not be merged 220 // initial point of the second trajectory sh << 229 { 221 // << 222 for (G4int i = 1; i < ent; ++i) { << 223 positionRecord->push_back((*(seco->positio 230 positionRecord->push_back((*(seco->positionRecord))[i]); 224 } 231 } 225 delete (*seco->positionRecord)[0]; 232 delete (*seco->positionRecord)[0]; 226 seco->positionRecord->clear(); 233 seco->positionRecord->clear(); 227 } 234 } 228 235