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 // 26 // >> 27 // $Id: G4TrajectoriesModel.cc 98852 2016-08-15 07:03:35Z gcosmo $ 27 // 28 // 28 // 29 // 29 // John Allison 26th August 1998. 30 // John Allison 26th August 1998. 30 // Model which knows how to draw GEANT4 trajec 31 // Model which knows how to draw GEANT4 trajectories. 31 32 32 #include "G4TrajectoriesModel.hh" 33 #include "G4TrajectoriesModel.hh" 33 34 34 #include "G4ModelingParameters.hh" 35 #include "G4ModelingParameters.hh" 35 #include "G4VGraphicsScene.hh" 36 #include "G4VGraphicsScene.hh" 36 #include "G4RunManager.hh" 37 #include "G4RunManager.hh" 37 #include "G4RunManagerFactory.hh" << 38 #ifdef G4MULTITHREADED >> 39 #include "G4MTRunManager.hh" >> 40 #endif 38 #include "G4Run.hh" 41 #include "G4Run.hh" 39 #include "G4Event.hh" 42 #include "G4Event.hh" 40 #include "G4AttDefStore.hh" 43 #include "G4AttDefStore.hh" 41 #include "G4AttValue.hh" 44 #include "G4AttValue.hh" 42 #include "G4AttDef.hh" 45 #include "G4AttDef.hh" 43 #include "G4AttCheck.hh" 46 #include "G4AttCheck.hh" 44 #include "G4UIcommand.hh" 47 #include "G4UIcommand.hh" 45 #include "G4VVisManager.hh" 48 #include "G4VVisManager.hh" 46 49 47 G4TrajectoriesModel::G4TrajectoriesModel () 50 G4TrajectoriesModel::G4TrajectoriesModel () 48 :fpCurrentTrajectory(0) 51 :fpCurrentTrajectory(0) 49 ,fRunID(-1) 52 ,fRunID(-1) 50 ,fEventID(-1) 53 ,fEventID(-1) 51 { 54 { 52 fType = "G4TrajectoriesModel"; 55 fType = "G4TrajectoriesModel"; 53 fGlobalTag = "G4TrajectoriesModel for any ty << 56 fGlobalTag = "G4TrajectoriesModel for all trajectories."; 54 fGlobalDescription = fGlobalTag; 57 fGlobalDescription = fGlobalTag; 55 } 58 } 56 59 57 G4TrajectoriesModel::~G4TrajectoriesModel () { 60 G4TrajectoriesModel::~G4TrajectoriesModel () {} 58 61 59 void G4TrajectoriesModelDebugG4AttValues(const 62 void G4TrajectoriesModelDebugG4AttValues(const G4VTrajectory*); 60 63 61 void G4TrajectoriesModel::DescribeYourselfTo ( 64 void G4TrajectoriesModel::DescribeYourselfTo (G4VGraphicsScene& sceneHandler) 62 { 65 { 63 G4RunManager* runManager = G4RunManagerFacto << 66 G4RunManager* runManager = G4RunManager::GetRunManager(); 64 const G4Run* currentRun = runManager->GetCu << 67 #ifdef G4MULTITHREADED 65 if(currentRun) << 68 if(G4Threading::IsMultithreadedApplication()) 66 { << 69 { runManager = G4MTRunManager::GetMasterRunManager(); } >> 70 #endif >> 71 const G4Run* currentRun = runManager->GetCurrentRun(); >> 72 if (currentRun) { 67 fRunID = currentRun->GetRunID(); 73 fRunID = currentRun->GetRunID(); 68 } << 74 } else { 69 else << 70 { << 71 fRunID = -1; 75 fRunID = -1; 72 return; 76 return; 73 } 77 } 74 78 75 const G4Event* event = fpMP->GetEvent(); 79 const G4Event* event = fpMP->GetEvent(); 76 if (event) { 80 if (event) { 77 fEventID = event->GetEventID(); 81 fEventID = event->GetEventID(); 78 } else { 82 } else { 79 fEventID = -1; 83 fEventID = -1; 80 return; 84 return; 81 } 85 } 82 86 83 G4TrajectoryContainer* TC = event -> GetTraj 87 G4TrajectoryContainer* TC = event -> GetTrajectoryContainer (); 84 if (!TC) return; 88 if (!TC) return; 85 89 86 G4VVisManager* pVVisManager = G4VVisManager: 90 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance(); 87 if (!pVVisManager) return; 91 if (!pVVisManager) return; 88 92 89 pVVisManager->BeginDraw(); 93 pVVisManager->BeginDraw(); 90 // The use of Begin/EndDraw (optional method 94 // The use of Begin/EndDraw (optional methods to improve drawing 91 // speed) assumes all trajectories are drawn 95 // speed) assumes all trajectories are drawn with the same 92 // transformation. If not, a fatal exceptio 96 // transformation. If not, a fatal exception with be raised in 93 // G4VisManager::DrawT. 97 // G4VisManager::DrawT. 94 for (std::size_t iT = 0; iT < TC->entries(); << 98 for (G4int iT = 0; iT < TC->entries(); iT++) { 95 fpCurrentTrajectory = (*TC) [iT]; 99 fpCurrentTrajectory = (*TC) [iT]; 96 // Debug trajectory: 100 // Debug trajectory: 97 // fpCurrentTrajectory->ShowTrajectory(); 101 // fpCurrentTrajectory->ShowTrajectory(); G4cout << G4endl; 98 // Debug G4AttValues: 102 // Debug G4AttValues: 99 // G4TrajectoriesModelDebugG4AttValues(fpC 103 // G4TrajectoriesModelDebugG4AttValues(fpCurrentTrajectory); 100 if (fpCurrentTrajectory) 104 if (fpCurrentTrajectory) 101 sceneHandler.AddCompound (*fpCurrentTraj 105 sceneHandler.AddCompound (*fpCurrentTrajectory); 102 } 106 } 103 pVVisManager->EndDraw(); 107 pVVisManager->EndDraw(); 104 } 108 } 105 109 106 const std::map<G4String,G4AttDef>* G4Trajector 110 const std::map<G4String,G4AttDef>* G4TrajectoriesModel::GetAttDefs() const 107 { 111 { 108 G4bool isNew; 112 G4bool isNew; 109 std::map<G4String,G4AttDef>* store 113 std::map<G4String,G4AttDef>* store 110 = G4AttDefStore::GetInstance("G4Trajectories 114 = G4AttDefStore::GetInstance("G4TrajectoriesModel", isNew); 111 if (isNew) { 115 if (isNew) { 112 (*store)["RunID"] = 116 (*store)["RunID"] = 113 G4AttDef("RunID","Run ID","Physics","","G4 117 G4AttDef("RunID","Run ID","Physics","","G4int"); 114 (*store)["EventID"] = 118 (*store)["EventID"] = 115 G4AttDef("EventID","Event ID","Physics","" 119 G4AttDef("EventID","Event ID","Physics","","G4int"); 116 } 120 } 117 return store; 121 return store; 118 } 122 } 119 123 120 std::vector<G4AttValue>* G4TrajectoriesModel:: 124 std::vector<G4AttValue>* G4TrajectoriesModel::CreateCurrentAttValues() const 121 { 125 { 122 std::vector<G4AttValue>* values = new std::v 126 std::vector<G4AttValue>* values = new std::vector<G4AttValue>; 123 values->push_back 127 values->push_back 124 (G4AttValue("RunID",G4UIcommand::ConvertToSt 128 (G4AttValue("RunID",G4UIcommand::ConvertToString(fRunID),"")); 125 values->push_back 129 values->push_back 126 (G4AttValue("EventID",G4UIcommand::ConvertTo 130 (G4AttValue("EventID",G4UIcommand::ConvertToString(fEventID),"")); 127 return values; 131 return values; 128 } 132 } 129 133 130 // Debug material... 134 // Debug material... 131 135 132 #include "G4VTrajectoryPoint.hh" 136 #include "G4VTrajectoryPoint.hh" 133 137 134 void G4TrajectoriesModelDebugG4AttValues(const 138 void G4TrajectoriesModelDebugG4AttValues(const G4VTrajectory* pTraj) 135 { 139 { 136 // Trajectory attributes 140 // Trajectory attributes 137 { // Scope bracket - allows re-use of names 141 { // Scope bracket - allows re-use of names without compiler warnings. 138 std::vector<G4AttValue>* attValues = pTraj 142 std::vector<G4AttValue>* attValues = pTraj->CreateAttValues(); 139 if (attValues) { 143 if (attValues) { 140 G4AttCheck attCheck(attValues, pTraj->Ge 144 G4AttCheck attCheck(attValues, pTraj->GetAttDefs()); 141 G4cout << "\nProvided G4Atts:\n" << attC 145 G4cout << "\nProvided G4Atts:\n" << attCheck; 142 if (attCheck.Check()) G4cout << "Error" 146 if (attCheck.Check()) G4cout << "Error" << G4endl; 143 else { 147 else { 144 std::vector<G4AttValue> standardValues; 148 std::vector<G4AttValue> standardValues; 145 std::map<G4String,G4AttDef> standardDefiniti 149 std::map<G4String,G4AttDef> standardDefinitions; 146 attCheck.Standard(&standardValues, &standard 150 attCheck.Standard(&standardValues, &standardDefinitions); 147 G4cout << "\nStandard G4Atts:\n" 151 G4cout << "\nStandard G4Atts:\n" 148 << G4AttCheck(&standardValues, &stand 152 << G4AttCheck(&standardValues, &standardDefinitions); 149 } 153 } 150 delete attValues; 154 delete attValues; 151 } 155 } 152 } 156 } 153 // Trajectory point attributes 157 // Trajectory point attributes 154 for (G4int i = 0; i < pTraj->GetPointEntries << 158 for (G4int i = 0; i < pTraj->GetPointEntries(); i++) { 155 G4VTrajectoryPoint* aPoint = pTraj->GetPoi 159 G4VTrajectoryPoint* aPoint = pTraj->GetPoint(i); 156 std::vector<G4AttValue>* attValues = aPoin 160 std::vector<G4AttValue>* attValues = aPoint->CreateAttValues(); 157 if (attValues) { 161 if (attValues) { 158 G4AttCheck attCheck(attValues, aPoint->G 162 G4AttCheck attCheck(attValues, aPoint->GetAttDefs()); 159 G4cout << "\nProvided G4Atts:\n" << attC 163 G4cout << "\nProvided G4Atts:\n" << attCheck; 160 if (attCheck.Check()) G4cout << "Error" 164 if (attCheck.Check()) G4cout << "Error" << G4endl; 161 else { 165 else { 162 std::vector<G4AttValue> standardValues; 166 std::vector<G4AttValue> standardValues; 163 std::map<G4String,G4AttDef> standardDefiniti 167 std::map<G4String,G4AttDef> standardDefinitions; 164 attCheck.Standard(&standardValues, &standard 168 attCheck.Standard(&standardValues, &standardDefinitions); 165 G4cout << "\nStandard G4Atts:\n" 169 G4cout << "\nStandard G4Atts:\n" 166 << G4AttCheck(&standardValues, &stand 170 << G4AttCheck(&standardValues, &standardDefinitions); 167 } 171 } 168 delete attValues; 172 delete attValues; 169 } 173 } 170 } 174 } 171 } 175 } 172 176