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 // G4TrajectoryPoint class implementation << 27 // 23 // 28 // Contact: << 24 // $Id: G4TrajectoryPoint.cc,v 1.14 2004/06/11 14:30:20 gcosmo Exp $ 29 // Questions and comments to this code shoul << 25 // GEANT4 tag $Name: geant4-06-02 $ 30 // Katsuya Amako (e-mail: Katsuya.Amako@k << 26 // 31 // Takashi Sasaki (e-mail: Takashi.Sasaki@ << 27 // 32 // ------------------------------------------- << 28 // --------------------------------------------------------------- >> 29 // >> 30 // G4TrajectoryPoint.cc >> 31 // >> 32 // --------------------------------------------------------------- 33 33 34 #include "G4TrajectoryPoint.hh" 34 #include "G4TrajectoryPoint.hh" 35 35 36 #include "G4AttDef.hh" << 37 #include "G4AttDefStore.hh" 36 #include "G4AttDefStore.hh" >> 37 #include "G4AttDef.hh" 38 #include "G4AttValue.hh" 38 #include "G4AttValue.hh" 39 #include "G4UnitsTable.hh" 39 #include "G4UnitsTable.hh" >> 40 #include <strstream> 40 41 41 // #define G4ATTDEBUG << 42 G4Allocator<G4TrajectoryPoint> aTrajectoryPointAllocator; 42 #ifdef G4ATTDEBUG << 43 # include "G4AttCheck.hh" << 44 #endif << 45 43 46 G4Allocator<G4TrajectoryPoint>*& aTrajectoryPo << 44 G4TrajectoryPoint::G4TrajectoryPoint() 47 { 45 { 48 G4ThreadLocalStatic G4Allocator<G4Trajectory << 46 fPosition = G4ThreeVector(0.,0.,0.); 49 return _instance; << 50 } 47 } 51 48 52 G4Allocator<G4TrajectoryPoint>*& masterTraject << 49 G4TrajectoryPoint::G4TrajectoryPoint(G4ThreeVector pos) 53 { 50 { 54 static G4Allocator<G4TrajectoryPoint>* maste << 51 fPosition = pos; 55 return master_instance; << 56 } 52 } 57 53 58 G4TrajectoryPoint::G4TrajectoryPoint(G4ThreeVe << 54 G4TrajectoryPoint::G4TrajectoryPoint(const G4TrajectoryPoint &right) 59 << 55 : G4VTrajectoryPoint(),fPosition(right.fPosition) 60 G4TrajectoryPoint::G4TrajectoryPoint(const G4T << 56 { >> 57 } 61 58 62 G4TrajectoryPoint::~G4TrajectoryPoint() = defa << 59 G4TrajectoryPoint::~G4TrajectoryPoint() >> 60 { >> 61 } 63 62 64 const std::map<G4String, G4AttDef>* G4Trajecto << 63 const std::map<G4String,G4AttDef>* G4TrajectoryPoint::GetAttDefs() const 65 { 64 { 66 G4bool isNew; 65 G4bool isNew; 67 std::map<G4String, G4AttDef>* store = G4AttD << 66 std::map<G4String,G4AttDef>* store >> 67 = G4AttDefStore::GetInstance("G4TrajectoryPoint",isNew); 68 if (isNew) { 68 if (isNew) { 69 G4String Pos("Pos"); 69 G4String Pos("Pos"); 70 (*store)[Pos] = G4AttDef(Pos, "Position", << 70 (*store)[Pos] = G4AttDef(Pos, "Position", "Physics","","G4ThreeVector"); 71 } 71 } 72 return store; 72 return store; 73 } 73 } 74 74 75 std::vector<G4AttValue>* G4TrajectoryPoint::Cr 75 std::vector<G4AttValue>* G4TrajectoryPoint::CreateAttValues() const 76 { 76 { 77 auto values = new std::vector<G4AttValue>; << 77 char c[100]; >> 78 std::ostrstream s(c,100); 78 79 79 values->push_back(G4AttValue("Pos", G4BestUn << 80 std::vector<G4AttValue>* values = new std::vector<G4AttValue>; 80 81 81 #ifdef G4ATTDEBUG << 82 s.seekp(std::ios::beg); 82 G4cout << G4AttCheck(values, GetAttDefs()); << 83 s << G4BestUnit(fPosition,"Length") << std::ends; 83 #endif << 84 values->push_back(G4AttValue("Pos",c,"")); 84 85 85 return values; 86 return values; 86 } 87 } 87 88