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 // >> 23 // >> 24 // $Id: G4LogicalBorderSurface.cc,v 1.13 2004/05/19 08:14:42 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-06-02 $ >> 26 // >> 27 // -------------------------------------------------------------------- 26 // G4LogicalBorderSurface Implementation 28 // G4LogicalBorderSurface Implementation >> 29 // -------------------------------------------------------------------- 27 // 30 // 28 // A Logical Surface class for surfaces define 31 // A Logical Surface class for surfaces defined by the boundary 29 // of two physical volumes. 32 // of two physical volumes. 30 // 33 // 31 // Author: John Apostolakis, CERN - 26-06-1997 << 34 // Created: 1997-06-26 32 // ------------------------------------------- << 35 // Author: John Apostolakis (John.Apostolakis@cern.ch) >> 36 // >> 37 // ---------------------------------------------------------------------- 33 38 34 #include "G4LogicalBorderSurface.hh" 39 #include "G4LogicalBorderSurface.hh" 35 #include "G4VPhysicalVolume.hh" 40 #include "G4VPhysicalVolume.hh" 36 41 37 G4LogicalBorderSurfaceTable* << 42 G4LogicalBorderSurfaceTable G4LogicalBorderSurface::theBorderSurfaceTable; 38 G4LogicalBorderSurface::theBorderSurfaceTable << 39 43 40 // ------------------------------------------- << 41 // Constructor << 42 // 44 // 43 G4LogicalBorderSurface:: << 45 // Constructor & destructor 44 G4LogicalBorderSurface(const G4String& name, << 46 // 45 G4VPhysicalVolume << 47 46 G4VPhysicalVolume << 48 G4LogicalBorderSurface::G4LogicalBorderSurface(const G4String& name, 47 G4SurfaceProperty << 49 G4VPhysicalVolume* vol1, >> 50 G4VPhysicalVolume* vol2, >> 51 G4SurfaceProperty* surfaceProperty) 48 : G4LogicalSurface(name, surfaceProperty), 52 : G4LogicalSurface(name, surfaceProperty), 49 Volume1(vol1), Volume2(vol2), << 53 Volume1(vol1), Volume2(vol2) 50 Index(theBorderSurfaceTable != nullptr ? t << 51 { 54 { 52 if (theBorderSurfaceTable == nullptr) << 53 { << 54 theBorderSurfaceTable = new G4LogicalBorde << 55 } << 56 << 57 // Store in the table of Surfaces 55 // Store in the table of Surfaces 58 // 56 // 59 theBorderSurfaceTable->insert(std::make_pair << 57 theBorderSurfaceTable.push_back(this); >> 58 } >> 59 >> 60 G4LogicalBorderSurface:: >> 61 G4LogicalBorderSurface(const G4LogicalBorderSurface& right) >> 62 : G4LogicalSurface(right.GetName(), right.GetSurfaceProperty()) >> 63 { >> 64 SetTransitionRadiationSurface(right.GetTransitionRadiationSurface()); >> 65 Volume1 = right.Volume1; >> 66 Volume2 = right.Volume2; >> 67 theBorderSurfaceTable = right.theBorderSurfaceTable; >> 68 } >> 69 >> 70 G4LogicalBorderSurface::~G4LogicalBorderSurface() >> 71 { 60 } 72 } 61 73 62 // ------------------------------------------- << 63 // Default destructor << 64 // 74 // 65 G4LogicalBorderSurface::~G4LogicalBorderSurfac << 75 // Operators >> 76 // 66 77 67 // ------------------------------------------- << 78 const G4LogicalBorderSurface& 68 G4bool << 79 G4LogicalBorderSurface::operator=(const G4LogicalBorderSurface &right) >> 80 { >> 81 if (&right == this) return *this; >> 82 if (&right) >> 83 { >> 84 SetSurfaceProperty(right.GetSurfaceProperty()); >> 85 SetName(right.GetName()); >> 86 SetTransitionRadiationSurface(right.GetTransitionRadiationSurface()); >> 87 Volume1 = right.Volume1; >> 88 Volume2 = right.Volume2; >> 89 theBorderSurfaceTable = right.theBorderSurfaceTable; >> 90 } >> 91 return *this; >> 92 } >> 93 >> 94 G4int 69 G4LogicalBorderSurface::operator==(const G4Log 95 G4LogicalBorderSurface::operator==(const G4LogicalBorderSurface &right) const 70 { 96 { 71 return (this == (G4LogicalBorderSurface *) & 97 return (this == (G4LogicalBorderSurface *) &right); 72 } 98 } 73 99 74 // ------------------------------------------- << 100 G4int 75 G4bool << 76 G4LogicalBorderSurface::operator!=(const G4Log 101 G4LogicalBorderSurface::operator!=(const G4LogicalBorderSurface &right) const 77 { 102 { 78 return (this != (G4LogicalBorderSurface *) & 103 return (this != (G4LogicalBorderSurface *) &right); 79 } 104 } 80 105 81 // ------------------------------------------- << 106 // 82 const G4LogicalBorderSurfaceTable* G4LogicalBo << 107 // Methods >> 108 // >> 109 >> 110 const std::vector<G4LogicalBorderSurface*> * >> 111 G4LogicalBorderSurface::GetSurfaceTable() 83 { 112 { 84 if (theBorderSurfaceTable == nullptr) << 113 return &theBorderSurfaceTable; 85 { << 86 theBorderSurfaceTable = new G4LogicalBorde << 87 } << 88 return theBorderSurfaceTable; << 89 } 114 } 90 115 91 // ------------------------------------------- << 116 size_t G4LogicalBorderSurface::GetNumberOfBorderSurfaces() 92 std::size_t G4LogicalBorderSurface::GetNumberO << 93 { 117 { 94 if (theBorderSurfaceTable != nullptr) << 118 return theBorderSurfaceTable.size(); 95 { << 96 return theBorderSurfaceTable->size(); << 97 } << 98 return 0; << 99 } 119 } 100 120 101 // ------------------------------------------- << 102 G4LogicalBorderSurface* 121 G4LogicalBorderSurface* 103 G4LogicalBorderSurface::GetSurface(const G4VPh 122 G4LogicalBorderSurface::GetSurface(const G4VPhysicalVolume* vol1, 104 const G4VPh 123 const G4VPhysicalVolume* vol2) 105 { 124 { 106 if (theBorderSurfaceTable != nullptr) << 125 for (size_t i=0; i<theBorderSurfaceTable.size(); i++) 107 { 126 { 108 auto pos = theBorderSurfaceTable->find(std << 127 if( (theBorderSurfaceTable[i]->GetVolume1() == vol1) && 109 if(pos != theBorderSurfaceTable->cend()) r << 128 (theBorderSurfaceTable[i]->GetVolume2() == vol2) ) >> 129 return theBorderSurfaceTable[i]; 110 } 130 } 111 return nullptr; << 131 return NULL; 112 } 132 } 113 133 114 // ------------------------------------------- << 115 // Dump info for known surfaces 134 // Dump info for known surfaces 116 // 135 // 117 void G4LogicalBorderSurface::DumpInfo() 136 void G4LogicalBorderSurface::DumpInfo() 118 { 137 { 119 G4cout << "***** Surface Table : Nb of Surfa 138 G4cout << "***** Surface Table : Nb of Surfaces = " 120 << GetNumberOfBorderSurfaces() << " * 139 << GetNumberOfBorderSurfaces() << " *****" << G4endl; 121 140 122 if (theBorderSurfaceTable != nullptr) << 141 for (size_t i=0; i<theBorderSurfaceTable.size(); i++) 123 { 142 { 124 for(const auto & pos : *theBorderSurfaceTa << 143 G4cout << theBorderSurfaceTable[i]->GetName() << " : " << G4endl 125 { << 144 << " Surface type = " << theBorderSurfaceTable[i]->GetName() 126 G4LogicalBorderSurface* pSurf = pos.seco << 145 << G4endl; 127 G4cout << pSurf->GetName() << " : " << G << 128 << " Border of volumes " << 129 << pSurf->GetVolume1()->GetName() << 130 << pSurf->GetVolume2()->GetName() << 131 } << 132 } 146 } 133 G4cout << G4endl; 147 G4cout << G4endl; 134 } 148 } 135 149 136 // ------------------------------------------- << 137 void G4LogicalBorderSurface::CleanSurfaceTable 150 void G4LogicalBorderSurface::CleanSurfaceTable() 138 { 151 { 139 if (theBorderSurfaceTable != nullptr) << 152 std::vector<G4LogicalBorderSurface*>::iterator pos; >> 153 for(pos=theBorderSurfaceTable.begin(); >> 154 pos!=theBorderSurfaceTable.end(); pos++) 140 { 155 { 141 for(const auto & pos : *theBorderSurfaceTa << 156 if (*pos) delete *pos; 142 { << 143 delete pos.second; << 144 } << 145 theBorderSurfaceTable->clear(); << 146 } 157 } 147 return; << 158 theBorderSurfaceTable.clear(); 148 } 159 } 149 160