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.16 2005/05/03 17:48:51 allison Exp $ 29 // Questions and comments to this code shoul << 25 // GEANT4 tag $Name: geant4-08-00 $ 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 40 41 // #define G4ATTDEBUG << 41 //#define G4ATTDEBUG 42 #ifdef G4ATTDEBUG 42 #ifdef G4ATTDEBUG 43 # include "G4AttCheck.hh" << 43 #include "G4AttCheck.hh" 44 #endif 44 #endif 45 45 46 G4Allocator<G4TrajectoryPoint>*& aTrajectoryPo << 46 G4Allocator<G4TrajectoryPoint> aTrajectoryPointAllocator; >> 47 >> 48 G4TrajectoryPoint::G4TrajectoryPoint() 47 { 49 { 48 G4ThreadLocalStatic G4Allocator<G4Trajectory << 50 fPosition = G4ThreeVector(0.,0.,0.); 49 return _instance; << 50 } 51 } 51 52 52 G4Allocator<G4TrajectoryPoint>*& masterTraject << 53 G4TrajectoryPoint::G4TrajectoryPoint(G4ThreeVector pos) 53 { 54 { 54 static G4Allocator<G4TrajectoryPoint>* maste << 55 fPosition = pos; 55 return master_instance; << 56 } 56 } 57 57 58 G4TrajectoryPoint::G4TrajectoryPoint(G4ThreeVe << 58 G4TrajectoryPoint::G4TrajectoryPoint(const G4TrajectoryPoint &right) 59 << 59 : G4VTrajectoryPoint(),fPosition(right.fPosition) 60 G4TrajectoryPoint::G4TrajectoryPoint(const G4T << 60 { >> 61 } 61 62 62 G4TrajectoryPoint::~G4TrajectoryPoint() = defa << 63 G4TrajectoryPoint::~G4TrajectoryPoint() >> 64 { >> 65 } 63 66 64 const std::map<G4String, G4AttDef>* G4Trajecto << 67 const std::map<G4String,G4AttDef>* G4TrajectoryPoint::GetAttDefs() const 65 { 68 { 66 G4bool isNew; 69 G4bool isNew; 67 std::map<G4String, G4AttDef>* store = G4AttD << 70 std::map<G4String,G4AttDef>* store >> 71 = G4AttDefStore::GetInstance("G4TrajectoryPoint",isNew); 68 if (isNew) { 72 if (isNew) { 69 G4String Pos("Pos"); 73 G4String Pos("Pos"); 70 (*store)[Pos] = G4AttDef(Pos, "Position", << 74 (*store)[Pos] = >> 75 G4AttDef(Pos, "Position", "Physics","G4BestUnit","G4ThreeVector"); 71 } 76 } 72 return store; 77 return store; 73 } 78 } 74 79 75 std::vector<G4AttValue>* G4TrajectoryPoint::Cr 80 std::vector<G4AttValue>* G4TrajectoryPoint::CreateAttValues() const 76 { 81 { 77 auto values = new std::vector<G4AttValue>; << 82 std::vector<G4AttValue>* values = new std::vector<G4AttValue>; 78 83 79 values->push_back(G4AttValue("Pos", G4BestUn << 84 values->push_back(G4AttValue("Pos",G4BestUnit(fPosition,"Length"),"")); 80 85 81 #ifdef G4ATTDEBUG 86 #ifdef G4ATTDEBUG 82 G4cout << G4AttCheck(values, GetAttDefs()); << 87 G4cout << G4AttCheck(values,GetAttDefs()); 83 #endif 88 #endif 84 89 85 return values; 90 return values; 86 } 91 } 87 92