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