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.8 2002/08/06 08:23:38 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-05-01-patch-01 $ >> 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" << 36 40 37 G4LogicalBorderSurfaceTable* << 41 G4LogicalBorderSurfaceTable G4LogicalBorderSurface::theBorderSurfaceTable; 38 G4LogicalBorderSurface::theBorderSurfaceTable << 39 42 40 // ------------------------------------------- << 41 // Constructor << 42 // 43 // 43 G4LogicalBorderSurface:: << 44 // Constructor & destructor 44 G4LogicalBorderSurface(const G4String& name, << 45 // 45 G4VPhysicalVolume << 46 G4VPhysicalVolume << 47 G4SurfaceProperty << 48 : G4LogicalSurface(name, surfaceProperty), << 49 Volume1(vol1), Volume2(vol2), << 50 Index(theBorderSurfaceTable != nullptr ? t << 51 { << 52 if (theBorderSurfaceTable == nullptr) << 53 { << 54 theBorderSurfaceTable = new G4LogicalBorde << 55 } << 56 46 >> 47 G4LogicalBorderSurface::G4LogicalBorderSurface(const G4String& name, >> 48 G4VPhysicalVolume* vol1, >> 49 G4VPhysicalVolume* vol2, >> 50 G4OpticalSurface* opticsSurface) >> 51 : G4LogicalSurface(name, opticsSurface), >> 52 Volume1(vol1), Volume2(vol2) >> 53 { 57 // Store in the table of Surfaces 54 // Store in the table of Surfaces 58 // 55 // 59 theBorderSurfaceTable->insert(std::make_pair << 56 theBorderSurfaceTable.push_back(this); 60 } 57 } 61 58 62 // ------------------------------------------- << 59 G4LogicalBorderSurface:: 63 // Default destructor << 60 G4LogicalBorderSurface(const G4LogicalBorderSurface& right) >> 61 : G4LogicalSurface(right.GetName(), right.GetOpticalSurface()) >> 62 { >> 63 SetTransitionRadiationSurface(right.GetTransitionRadiationSurface()); >> 64 Volume1 = right.Volume1; >> 65 Volume2 = right.Volume2; >> 66 theBorderSurfaceTable = right.theBorderSurfaceTable; >> 67 } >> 68 >> 69 G4LogicalBorderSurface::~G4LogicalBorderSurface() >> 70 { >> 71 } >> 72 >> 73 // >> 74 // Operators 64 // 75 // 65 G4LogicalBorderSurface::~G4LogicalBorderSurfac << 66 76 67 // ------------------------------------------- << 77 const G4LogicalBorderSurface& 68 G4bool << 78 G4LogicalBorderSurface::operator=(const G4LogicalBorderSurface &right) >> 79 { >> 80 if (&right == this) return *this; >> 81 if (&right) >> 82 { >> 83 SetOpticalSurface(right.GetOpticalSurface()); >> 84 SetName(right.GetName()); >> 85 SetTransitionRadiationSurface(right.GetTransitionRadiationSurface()); >> 86 Volume1 = right.Volume1; >> 87 Volume2 = right.Volume2; >> 88 theBorderSurfaceTable = right.theBorderSurfaceTable; >> 89 } >> 90 return *this; >> 91 } >> 92 >> 93 G4int 69 G4LogicalBorderSurface::operator==(const G4Log 94 G4LogicalBorderSurface::operator==(const G4LogicalBorderSurface &right) const 70 { 95 { 71 return (this == (G4LogicalBorderSurface *) & 96 return (this == (G4LogicalBorderSurface *) &right); 72 } 97 } 73 98 74 // ------------------------------------------- << 99 G4int 75 G4bool << 76 G4LogicalBorderSurface::operator!=(const G4Log 100 G4LogicalBorderSurface::operator!=(const G4LogicalBorderSurface &right) const 77 { 101 { 78 return (this != (G4LogicalBorderSurface *) & 102 return (this != (G4LogicalBorderSurface *) &right); 79 } 103 } 80 104 81 // ------------------------------------------- << 105 // 82 const G4LogicalBorderSurfaceTable* G4LogicalBo << 106 // Methods >> 107 // >> 108 >> 109 const G4std::vector<G4LogicalBorderSurface*> * >> 110 G4LogicalBorderSurface::GetSurfaceTable() 83 { 111 { 84 if (theBorderSurfaceTable == nullptr) << 112 return &theBorderSurfaceTable; 85 { << 86 theBorderSurfaceTable = new G4LogicalBorde << 87 } << 88 return theBorderSurfaceTable; << 89 } 113 } 90 114 91 // ------------------------------------------- << 115 size_t G4LogicalBorderSurface::GetNumberOfBorderSurfaces() 92 std::size_t G4LogicalBorderSurface::GetNumberO << 93 { 116 { 94 if (theBorderSurfaceTable != nullptr) << 117 return theBorderSurfaceTable.size(); 95 { << 96 return theBorderSurfaceTable->size(); << 97 } << 98 return 0; << 99 } 118 } 100 119 101 // ------------------------------------------- << 102 G4LogicalBorderSurface* 120 G4LogicalBorderSurface* 103 G4LogicalBorderSurface::GetSurface(const G4VPh 121 G4LogicalBorderSurface::GetSurface(const G4VPhysicalVolume* vol1, 104 const G4VPh 122 const G4VPhysicalVolume* vol2) 105 { 123 { 106 if (theBorderSurfaceTable != nullptr) << 124 for (size_t i=0; i<theBorderSurfaceTable.size(); i++) 107 { 125 { 108 auto pos = theBorderSurfaceTable->find(std << 126 if( (theBorderSurfaceTable[i]->GetVolume1() == vol1) && 109 if(pos != theBorderSurfaceTable->cend()) r << 127 (theBorderSurfaceTable[i]->GetVolume2() == vol2) ) >> 128 return theBorderSurfaceTable[i]; 110 } 129 } 111 return nullptr; << 130 return NULL; 112 } 131 } 113 132 114 // ------------------------------------------- << 115 // Dump info for known surfaces 133 // Dump info for known surfaces 116 // 134 // 117 void G4LogicalBorderSurface::DumpInfo() 135 void G4LogicalBorderSurface::DumpInfo() 118 { 136 { 119 G4cout << "***** Surface Table : Nb of Surfa 137 G4cout << "***** Surface Table : Nb of Surfaces = " 120 << GetNumberOfBorderSurfaces() << " * 138 << GetNumberOfBorderSurfaces() << " *****" << G4endl; 121 139 122 if (theBorderSurfaceTable != nullptr) << 140 for (size_t i=0; i<theBorderSurfaceTable.size(); i++) 123 { 141 { 124 for(const auto & pos : *theBorderSurfaceTa << 142 G4cout << theBorderSurfaceTable[i]->GetName() << " : " << G4endl 125 { << 143 << " Surface type = " << theBorderSurfaceTable[i]->GetName() 126 G4LogicalBorderSurface* pSurf = pos.seco << 144 << G4endl; 127 G4cout << pSurf->GetName() << " : " << G << 128 << " Border of volumes " << 129 << pSurf->GetVolume1()->GetName() << 130 << pSurf->GetVolume2()->GetName() << 131 } << 132 } 145 } 133 G4cout << G4endl; 146 G4cout << G4endl; 134 } << 135 << 136 // ------------------------------------------- << 137 void G4LogicalBorderSurface::CleanSurfaceTable << 138 { << 139 if (theBorderSurfaceTable != nullptr) << 140 { << 141 for(const auto & pos : *theBorderSurfaceTa << 142 { << 143 delete pos.second; << 144 } << 145 theBorderSurfaceTable->clear(); << 146 } << 147 return; << 148 } 147 } 149 148