source: trunk/source/tracking/src/G4SmoothTrajectoryPoint.cc@ 1300

Last change on this file since 1300 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 4.0 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: G4SmoothTrajectoryPoint.cc,v 1.15 2006/06/29 21:16:01 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30//
31// ---------------------------------------------------------------
32//
33// G4SmoothTrajectoryPoint.cc
34//
35// ---------------------------------------------------------------
36
37#include "G4SmoothTrajectoryPoint.hh"
38
39#include "G4AttDefStore.hh"
40#include "G4AttDef.hh"
41#include "G4AttValue.hh"
42#include "G4UnitsTable.hh"
43
44//#define G4ATTDEBUG
45#ifdef G4ATTDEBUG
46#include "G4AttCheck.hh"
47#endif
48
49G4Allocator<G4SmoothTrajectoryPoint> aSmoothTrajectoryPointAllocator;
50
51G4SmoothTrajectoryPoint::G4SmoothTrajectoryPoint()
52: fAuxiliaryPointVector(0)
53{
54 fPosition = G4ThreeVector(0.,0.,0.);
55}
56
57G4SmoothTrajectoryPoint::G4SmoothTrajectoryPoint(G4ThreeVector pos)
58: fAuxiliaryPointVector(0)
59{
60 fPosition = pos;
61}
62
63G4SmoothTrajectoryPoint::G4SmoothTrajectoryPoint(G4ThreeVector pos,
64 std::vector<G4ThreeVector>* auxiliaryPoints)
65: fPosition(pos),
66 fAuxiliaryPointVector(auxiliaryPoints)
67{}
68
69G4SmoothTrajectoryPoint::G4SmoothTrajectoryPoint(const G4SmoothTrajectoryPoint &right)
70: G4VTrajectoryPoint(),
71 fPosition(right.fPosition),fAuxiliaryPointVector(right.fAuxiliaryPointVector)
72{
73}
74
75G4SmoothTrajectoryPoint::~G4SmoothTrajectoryPoint()
76{
77 if(fAuxiliaryPointVector) {
78 delete fAuxiliaryPointVector;
79 }
80}
81
82
83const std::map<G4String,G4AttDef>*
84G4SmoothTrajectoryPoint::GetAttDefs() const
85{
86 G4bool isNew;
87 std::map<G4String,G4AttDef>* store
88 = G4AttDefStore::GetInstance("G4SmoothTrajectoryPoint",isNew);
89 if (isNew) {
90 G4String Pos("Pos");
91 (*store)[Pos] = G4AttDef(Pos, "Step Position",
92 "Physics","G4BestUnit","G4ThreeVector");
93 G4String Aux("Aux");
94 (*store)[Aux] = G4AttDef(Aux, "Auxiliary Point Position",
95 "Physics","G4BestUnit","G4ThreeVector");
96 }
97 return store;
98}
99
100std::vector<G4AttValue>* G4SmoothTrajectoryPoint::CreateAttValues() const
101{
102 std::vector<G4AttValue>* values = new std::vector<G4AttValue>;
103
104 if (fAuxiliaryPointVector) {
105 std::vector<G4ThreeVector>::iterator iAux;
106 for (iAux = fAuxiliaryPointVector->begin();
107 iAux != fAuxiliaryPointVector->end(); ++iAux) {
108 values->push_back(G4AttValue("Aux",G4BestUnit(*iAux,"Length"),""));
109 }
110 }
111
112 values->push_back(G4AttValue("Pos",G4BestUnit(fPosition,"Length"),""));
113
114#ifdef G4ATTDEBUG
115 G4cout << G4AttCheck(values,GetAttDefs());
116#endif
117
118 return values;
119}
Note: See TracBrowser for help on using the repository browser.