source: trunk/source/tracking/src/G4Trajectory.cc @ 1187

Last change on this file since 1187 was 1011, checked in by garnier, 15 years ago

update

File size: 7.2 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4Trajectory.cc,v 1.32 2006/10/16 13:39:35 allison Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
29//
30// ---------------------------------------------------------------
31//
32// G4Trajectory.cc
33//
34// Contact:
35//   Questions and comments to this code should be sent to
36//     Katsuya Amako  (e-mail: Katsuya.Amako@kek.jp)
37//     Makoto  Asai   (e-mail: asai@kekvax.kek.jp)
38//     Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
39//
40// ---------------------------------------------------------------
41
42#include "G4Trajectory.hh"
43#include "G4TrajectoryPoint.hh"
44#include "G4ParticleTable.hh"
45#include "G4AttDefStore.hh"
46#include "G4AttDef.hh"
47#include "G4AttValue.hh"
48#include "G4UIcommand.hh"
49#include "G4UnitsTable.hh"
50
51//#define G4ATTDEBUG
52#ifdef G4ATTDEBUG
53#include "G4AttCheck.hh"
54#endif
55
56G4Allocator<G4Trajectory> aTrajectoryAllocator;
57
58G4Trajectory::G4Trajectory()
59:  positionRecord(0), fTrackID(0), fParentID(0),
60   PDGEncoding( 0 ), PDGCharge(0.0), ParticleName(""),
61   initialMomentum( G4ThreeVector() )
62{;}
63
64G4Trajectory::G4Trajectory(const G4Track* aTrack)
65{
66   G4ParticleDefinition * fpParticleDefinition = aTrack->GetDefinition();
67   ParticleName = fpParticleDefinition->GetParticleName();
68   PDGCharge = fpParticleDefinition->GetPDGCharge();
69   PDGEncoding = fpParticleDefinition->GetPDGEncoding();
70   fTrackID = aTrack->GetTrackID();
71   fParentID = aTrack->GetParentID();
72   initialMomentum = aTrack->GetMomentum();
73   positionRecord = new TrajectoryPointContainer();
74   // Following is for the first trajectory point
75   positionRecord->push_back(new G4TrajectoryPoint(aTrack->GetPosition()));
76}
77
78G4Trajectory::G4Trajectory(G4Trajectory & right):G4VTrajectory()
79{
80  ParticleName = right.ParticleName;
81  PDGCharge = right.PDGCharge;
82  PDGEncoding = right.PDGEncoding;
83  fTrackID = right.fTrackID;
84  fParentID = right.fParentID;
85  initialMomentum = right.initialMomentum;
86  positionRecord = new TrajectoryPointContainer();
87
88  for(size_t i=0;i<right.positionRecord->size();i++)
89  {
90    G4TrajectoryPoint* rightPoint = (G4TrajectoryPoint*)((*(right.positionRecord))[i]);
91    positionRecord->push_back(new G4TrajectoryPoint(*rightPoint));
92  }
93}
94
95G4Trajectory::~G4Trajectory()
96{
97  if (positionRecord) {
98    //  positionRecord->clearAndDestroy();
99    size_t i;
100    for(i=0;i<positionRecord->size();i++){
101      delete  (*positionRecord)[i];
102    }
103    positionRecord->clear();
104    delete positionRecord;
105  }
106}
107
108void G4Trajectory::ShowTrajectory(std::ostream& os) const
109{
110  // Invoke the default implementation in G4VTrajectory...
111  G4VTrajectory::ShowTrajectory(os);
112  // ... or override with your own code here.
113}
114
115void G4Trajectory::DrawTrajectory(G4int i_mode) const
116{
117  // Invoke the default implementation in G4VTrajectory...
118  G4VTrajectory::DrawTrajectory(i_mode);
119  // ... or override with your own code here.
120}
121
122const std::map<G4String,G4AttDef>* G4Trajectory::GetAttDefs() const
123{
124  G4bool isNew;
125  std::map<G4String,G4AttDef>* store
126    = G4AttDefStore::GetInstance("G4Trajectory",isNew);
127  if (isNew) {
128
129    G4String ID("ID");
130    (*store)[ID] = G4AttDef(ID,"Track ID","Physics","","G4int");
131
132    G4String PID("PID");
133    (*store)[PID] = G4AttDef(PID,"Parent ID","Physics","","G4int");
134
135    G4String PN("PN");
136    (*store)[PN] = G4AttDef(PN,"Particle Name","Physics","","G4String");
137
138    G4String Ch("Ch");
139    (*store)[Ch] = G4AttDef(Ch,"Charge","Physics","e+","G4double");
140
141    G4String PDG("PDG");
142    (*store)[PDG] = G4AttDef(PDG,"PDG Encoding","Physics","","G4int");
143
144    G4String IMom("IMom");
145    (*store)[IMom] = G4AttDef(IMom, "Momentum at start of trajectory",
146                              "Physics","G4BestUnit","G4ThreeVector");
147
148    G4String IMag("IMag");
149    (*store)[IMag] = 
150      G4AttDef(IMag, "Magnitude of momentum at start of trajectory",
151               "Physics","G4BestUnit","G4double");
152
153    G4String NTP("NTP");
154    (*store)[NTP] = G4AttDef(NTP,"No. of points","Physics","","G4int");
155
156  }
157  return store;
158}
159
160std::vector<G4AttValue>* G4Trajectory::CreateAttValues() const
161{
162  std::vector<G4AttValue>* values = new std::vector<G4AttValue>;
163
164  values->push_back
165    (G4AttValue("ID",G4UIcommand::ConvertToString(fTrackID),""));
166
167  values->push_back
168    (G4AttValue("PID",G4UIcommand::ConvertToString(fParentID),""));
169
170  values->push_back(G4AttValue("PN",ParticleName,""));
171
172  values->push_back
173    (G4AttValue("Ch",G4UIcommand::ConvertToString(PDGCharge),""));
174
175  values->push_back
176    (G4AttValue("PDG",G4UIcommand::ConvertToString(PDGEncoding),""));
177
178  values->push_back
179    (G4AttValue("IMom",G4BestUnit(initialMomentum,"Energy"),""));
180
181  values->push_back
182    (G4AttValue("IMag",G4BestUnit(initialMomentum.mag(),"Energy"),""));
183
184  values->push_back
185    (G4AttValue("NTP",G4UIcommand::ConvertToString(GetPointEntries()),""));
186
187#ifdef G4ATTDEBUG
188  G4cout << G4AttCheck(values,GetAttDefs());
189#endif
190
191  return values;
192}
193
194void G4Trajectory::AppendStep(const G4Step* aStep)
195{
196   positionRecord->push_back( new G4TrajectoryPoint(aStep->GetPostStepPoint()->
197                                 GetPosition() ));
198}
199 
200G4ParticleDefinition* G4Trajectory::GetParticleDefinition()
201{
202   return (G4ParticleTable::GetParticleTable()->FindParticle(ParticleName));
203}
204
205void G4Trajectory::MergeTrajectory(G4VTrajectory* secondTrajectory)
206{
207  if(!secondTrajectory) return;
208
209  G4Trajectory* seco = (G4Trajectory*)secondTrajectory;
210  G4int ent = seco->GetPointEntries();
211  for(G4int i=1;i<ent;i++) // initial point of the second trajectory should not be merged
212  { 
213    positionRecord->push_back((*(seco->positionRecord))[i]);
214    //    positionRecord->push_back(seco->positionRecord->removeAt(1));
215  }
216  delete (*seco->positionRecord)[0];
217  seco->positionRecord->clear();
218}
219
220
Note: See TracBrowser for help on using the repository browser.