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: G3VolTable.cc,v 1.22 2006/06/29 18:13:20 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-03-patch-01 $ 27 // 29 // 28 // modified by I.Hrivnacova, 13.10.99 30 // modified by I.Hrivnacova, 13.10.99 29 31 30 #include <iomanip> 32 #include <iomanip> 31 #include "globals.hh" 33 #include "globals.hh" 32 #include "G3VolTable.hh" 34 #include "G3VolTable.hh" 33 #include "G3Pos.hh" 35 #include "G3Pos.hh" 34 36 35 typedef std::map<G4String, G3VolTableEntry*, s 37 typedef std::map<G4String, G3VolTableEntry*, std::less<G4String> > 36 ::iterator VTDiterator; 38 ::iterator VTDiterator; 37 39 38 G3VolTable::G3VolTable() 40 G3VolTable::G3VolTable() 39 : G3toG4TopVTE(0), _FirstKey("UnDefined"), _ 41 : G3toG4TopVTE(0), _FirstKey("UnDefined"), _NG3Pos(0){ 40 } 42 } 41 43 42 G3VolTable::~G3VolTable(){ 44 G3VolTable::~G3VolTable(){ 43 if (VTD.size()>0){ 45 if (VTD.size()>0){ 44 // G4cout << "Deleting VTD" << G4endl; 46 // G4cout << "Deleting VTD" << G4endl; 45 for (VTDiterator i=VTD.begin(); i != VTD.e 47 for (VTDiterator i=VTD.begin(); i != VTD.end(); i++) { 46 delete (*i).second; 48 delete (*i).second; 47 } 49 } 48 VTD.clear(); 50 VTD.clear(); 49 } 51 } 50 } 52 } 51 53 52 G3VolTableEntry* 54 G3VolTableEntry* 53 G3VolTable::GetVTE(const G4String& Vname) { 55 G3VolTable::GetVTE(const G4String& Vname) { 54 VTDiterator i = VTD.find(Vname); 56 VTDiterator i = VTD.find(Vname); 55 if (i == VTD.end()) return 0; 57 if (i == VTD.end()) return 0; 56 else return (*i).second; 58 else return (*i).second; 57 } 59 } 58 60 59 void 61 void 60 G3VolTable::PrintAll(){ 62 G3VolTable::PrintAll(){ 61 if (VTD.size()){ 63 if (VTD.size()){ 62 G4int i=0; 64 G4int i=0; 63 G4cout << "Dump of VTD - " << VTD.size() < 65 G4cout << "Dump of VTD - " << VTD.size() << " entries:" << G4endl; 64 VTEStat(); 66 VTEStat(); 65 for (VTDiterator v=VTD.begin(); v != VTD.e 67 for (VTDiterator v=VTD.begin(); v != VTD.end(); v++){ 66 G3VolTableEntry* VTE = (*v).second; 68 G3VolTableEntry* VTE = (*v).second; 67 G4cout << "G3VolTable element " << std:: 69 G4cout << "G3VolTable element " << std::setw(3) << i++ << " name " 68 << VTE->GetName() << " has " << VTE->Ge 70 << VTE->GetName() << " has " << VTE->GetNoDaughters() 69 << " daughters" << G4endl; 71 << " daughters" << G4endl; 70 } 72 } 71 } 73 } 72 } 74 } 73 75 74 G3VolTableEntry* 76 G3VolTableEntry* 75 G3VolTable::PutVTE(G3VolTableEntry* aG3VolTabl 77 G3VolTable::PutVTE(G3VolTableEntry* aG3VolTableEntry){ 76 78 77 if (GetVTE(aG3VolTableEntry->GetName()) == 0 79 if (GetVTE(aG3VolTableEntry->GetName()) == 0 ){ 78 80 79 // create a hash key 81 // create a hash key 80 G4String HashID = aG3VolTableEntry->GetNam 82 G4String HashID = aG3VolTableEntry->GetName(); 81 83 82 if (_FirstKey == "UnDefined") _FirstKey = 84 if (_FirstKey == "UnDefined") _FirstKey = HashID; 83 85 84 // insert into dictionary 86 // insert into dictionary 85 VTD[HashID] = aG3VolTableEntry; 87 VTD[HashID] = aG3VolTableEntry; 86 } 88 } 87 return GetVTE(aG3VolTableEntry->GetName()); 89 return GetVTE(aG3VolTableEntry->GetName()); 88 } 90 } 89 91 90 void 92 void 91 G3VolTable::CountG3Pos(){ 93 G3VolTable::CountG3Pos(){ 92 _NG3Pos++; 94 _NG3Pos++; 93 } 95 } 94 96 95 void 97 void 96 G3VolTable::SetFirstVTE(){ 98 G3VolTable::SetFirstVTE(){ 97 G3toG4TopVTE = VTD[_FirstKey]; 99 G3toG4TopVTE = VTD[_FirstKey]; 98 100 99 if (G3toG4TopVTE->NPCopies() > 0) { 101 if (G3toG4TopVTE->NPCopies() > 0) { 100 _FirstKey = G3toG4TopVTE->GetMother()->Get 102 _FirstKey = G3toG4TopVTE->GetMother()->GetName(); 101 SetFirstVTE(); 103 SetFirstVTE(); 102 } 104 } 103 } 105 } 104 106 105 G3VolTableEntry* 107 G3VolTableEntry* 106 G3VolTable::GetFirstVTE() { 108 G3VolTable::GetFirstVTE() { 107 return G3toG4TopVTE; 109 return G3toG4TopVTE; 108 } 110 } 109 111 110 void 112 void 111 G3VolTable::VTEStat() { 113 G3VolTable::VTEStat() { 112 G4cout << "Instantiated " << VTD.size() << 114 G4cout << "Instantiated " << VTD.size() << 113 " volume table entries \n" 115 " volume table entries \n" 114 << " " << _NG3Pos << " 116 << " " << _NG3Pos << " positions." << G4endl; 115 } 117 } 116 118 117 void 119 void 118 G3VolTable::Clear() { 120 G3VolTable::Clear() { 119 if (VTD.size()>0){ 121 if (VTD.size()>0){ 120 for (VTDiterator i=VTD.begin(); i != VTD.e 122 for (VTDiterator i=VTD.begin(); i != VTD.end(); i++) { 121 delete (*i).second; 123 delete (*i).second; 122 } 124 } 123 VTD.clear(); 125 VTD.clear(); 124 } 126 } 125 G3toG4TopVTE = 0; 127 G3toG4TopVTE = 0; 126 _FirstKey = "UnDefined"; 128 _FirstKey = "UnDefined"; 127 _NG3Pos = 0; 129 _NG3Pos = 0; 128 } 130 } 129 131