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