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: G3MedTable.cc,v 1.14 2003/01/27 10:45:48 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-05-02-patch-01 $ 27 // 26 // 28 // by I.Hrivnacova, 27 Sep 99 27 // by I.Hrivnacova, 27 Sep 99 29 28 30 #include "G3MedTable.hh" 29 #include "G3MedTable.hh" 31 30 32 G3MedTable::G3MedTable() 31 G3MedTable::G3MedTable() 33 { 32 { 34 fMedVector = new G3MediumVector(); 33 fMedVector = new G3MediumVector(); 35 } 34 } 36 35 37 G3MedTable::~G3MedTable() 36 G3MedTable::~G3MedTable() 38 { 37 { 39 Clear(); 38 Clear(); 40 delete fMedVector; 39 delete fMedVector; 41 } 40 } 42 41 43 G3MedTableEntry* G3MedTable::get(G4int id) con 42 G3MedTableEntry* G3MedTable::get(G4int id) const 44 { 43 { 45 for (size_t i=0; i< fMedVector->size(); i++) 44 for (size_t i=0; i< fMedVector->size(); i++) { 46 G3MedTableEntry* mte = (*fMedVector)[i]; 45 G3MedTableEntry* mte = (*fMedVector)[i]; 47 if (id == mte->GetID()) return mte; 46 if (id == mte->GetID()) return mte; 48 } 47 } 49 return 0; 48 return 0; 50 } 49 } 51 50 52 void G3MedTable::put(G4int id, G4Material* mat 51 void G3MedTable::put(G4int id, G4Material* material, G4MagneticField* field, 53 G4UserLimits* limits, G4int isvol) 52 G4UserLimits* limits, G4int isvol) 54 { 53 { 55 G3MedTableEntry* mte 54 G3MedTableEntry* mte 56 = new G3MedTableEntry(id, material, field, 55 = new G3MedTableEntry(id, material, field, limits, isvol); 57 fMedVector->push_back(mte); 56 fMedVector->push_back(mte); 58 } 57 } 59 58 60 G3MedTableEntry* G3MedTable::GetMTE(G4int i) c 59 G3MedTableEntry* G3MedTable::GetMTE(G4int i) const 61 { 60 { 62 if (i<0 || i>= G4int(fMedVector->size())) 61 if (i<0 || i>= G4int(fMedVector->size())) 63 return 0; 62 return 0; 64 63 65 return (*fMedVector)[i]; 64 return (*fMedVector)[i]; 66 } 65 } 67 66 68 G4int G3MedTable::GetSize() const 67 G4int G3MedTable::GetSize() const 69 { 68 { 70 return (G4int)fMedVector->size(); << 69 return fMedVector->size(); 71 } 70 } 72 71 73 void G3MedTable::Clear() 72 void G3MedTable::Clear() 74 { 73 { 75 G3MedTableEntry* a; 74 G3MedTableEntry* a; 76 while (fMedVector->size()>0) { 75 while (fMedVector->size()>0) { 77 a = fMedVector->back(); 76 a = fMedVector->back(); 78 fMedVector->pop_back(); 77 fMedVector->pop_back(); 79 for (G3MediumVector::iterator i=fMedVector 78 for (G3MediumVector::iterator i=fMedVector->begin(); 80 i!=fMedVecto << 79 i!=fMedVector->end(); i++){ 81 if (*i==a) { 80 if (*i==a) { 82 i = fMedVector->erase(i); << 81 fMedVector->erase(i); 83 } << 82 i--; 84 else { << 85 ++i; << 86 } 83 } 87 } 84 } 88 if ( a ) delete a; 85 if ( a ) delete a; 89 } 86 } 90 } 87 } 91 88