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 // G4LogicalBorderSurface << 26 // >> 27 // $Id: G4LogicalBorderSurface.hh,v 1.14 2006/06/29 18:57:09 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-02 $ >> 29 // >> 30 // class G4LogicalBorderSurface 27 // 31 // 28 // Class description: 32 // Class description: 29 // 33 // 30 // A Logical Surface class for surfaces define 34 // A Logical Surface class for surfaces defined by the boundary 31 // of two physical volumes. 35 // of two physical volumes. 32 36 33 // Author: John Apostolakis, CERN - 17-06-1997 << 37 // History: >> 38 // ------- >> 39 // Created: 1997-06-17 >> 40 // Author: John Apostolakis (John.Apostolakis@cern.ch) >> 41 // 34 // ------------------------------------------- 42 // -------------------------------------------------------------------- 35 #ifndef G4LogicalBorderSurface_hh << 43 #ifndef G4LogicalBorderSurface_h 36 #define G4LogicalBorderSurface_hh 1 << 44 #define G4LogicalBorderSurface_h 1 37 << 38 #include <map> << 39 45 40 #include "G4LogicalSurface.hh" << 46 #include "G4LogicalSurface.hh" 41 #include "G4VPhysicalVolume.hh" 47 #include "G4VPhysicalVolume.hh" 42 48 43 class G4VPhysicalVolume; << 49 #include <vector> 44 class G4LogicalBorderSurface; << 45 50 46 using G4LogicalBorderSurfaceTable << 51 class G4Event; 47 = std::map<std::pair<const G4VPhysicalVo << 52 class G4VPhysicalVolume; 48 const G4VPhysicalVo << 49 53 50 class G4LogicalBorderSurface : public G4Logica 54 class G4LogicalBorderSurface : public G4LogicalSurface 51 { 55 { 52 public: << 56 >> 57 public: // with description 53 58 54 G4LogicalBorderSurface( const G4String& na 59 G4LogicalBorderSurface( const G4String& name, 55 G4VPhysicalV 60 G4VPhysicalVolume* vol1, 56 G4VPhysicalV 61 G4VPhysicalVolume* vol2, 57 G4SurfacePro 62 G4SurfaceProperty* surfaceProperty ); 58 ~G4LogicalBorderSurface() override; << 63 ~G4LogicalBorderSurface(); 59 // Constructor and destructor 64 // Constructor and destructor 60 65 61 G4LogicalBorderSurface(const G4LogicalBord << 62 G4LogicalBorderSurface& operator=(const G4 << 63 // Copy constructor and assignment opera << 64 << 65 G4bool operator==( const G4LogicalBorderSu << 66 G4bool operator!=( const G4LogicalBorderSu << 67 // Operators << 68 << 69 static G4LogicalBorderSurface* GetSurface( 66 static G4LogicalBorderSurface* GetSurface( const G4VPhysicalVolume* vol1, 70 67 const G4VPhysicalVolume* vol2 ); 71 inline void SetPhysicalVolumes( G4VPhysica 68 inline void SetPhysicalVolumes( G4VPhysicalVolume* vol1, 72 G4VPhysica 69 G4VPhysicalVolume* vol2 ); 73 inline const G4VPhysicalVolume* GetVolume1 70 inline const G4VPhysicalVolume* GetVolume1() const; 74 inline const G4VPhysicalVolume* GetVolume2 71 inline const G4VPhysicalVolume* GetVolume2() const; 75 inline std::size_t GetIndex() const; << 72 // Generic accessors. 76 // Generic accessors << 77 73 78 inline void SetVolume1( G4VPhysicalVolume* 74 inline void SetVolume1( G4VPhysicalVolume* vol1 ); 79 inline void SetVolume2( G4VPhysicalVolume* 75 inline void SetVolume2( G4VPhysicalVolume* vol2 ); 80 // To use with care! 76 // To use with care! 81 77 82 static void CleanSurfaceTable(); 78 static void CleanSurfaceTable(); 83 static const G4LogicalBorderSurfaceTable* << 79 static const std::vector<G4LogicalBorderSurface*> * GetSurfaceTable(); 84 static std::size_t GetNumberOfBorderSurfac << 80 static size_t GetNumberOfBorderSurfaces(); 85 static void DumpInfo(); 81 static void DumpInfo(); 86 // To handle the table of surfaces << 82 // To handle the table of surfaces. >> 83 >> 84 G4int operator==( const G4LogicalBorderSurface &right ) const; >> 85 G4int operator!=( const G4LogicalBorderSurface &right ) const; >> 86 // Operators. >> 87 >> 88 private: >> 89 >> 90 G4LogicalBorderSurface(const G4LogicalBorderSurface &right); >> 91 const G4LogicalBorderSurface& operator=(const G4LogicalBorderSurface &right); 87 92 88 private: 93 private: 89 94 90 G4VPhysicalVolume* Volume1; // Physical V 95 G4VPhysicalVolume* Volume1; // Physical Volume pointer on side 1 91 G4VPhysicalVolume* Volume2; // Physical V 96 G4VPhysicalVolume* Volume2; // Physical Volume pointer on side 2 92 97 93 std::size_t Index; // Creation o << 98 static std::vector<G4LogicalBorderSurface*> theBorderSurfaceTable; 94 << 99 // The static Table of Surfaces. 95 static G4LogicalBorderSurfaceTable *theBor << 96 // The static Table of BorderSurfaces << 97 }; 100 }; 98 101 >> 102 typedef std::vector<G4LogicalBorderSurface*> G4LogicalBorderSurfaceTable; >> 103 99 // ******************************************* 104 // ******************************************************************** 100 // Inline methods 105 // Inline methods 101 // ******************************************* 106 // ******************************************************************** 102 107 103 #include "G4LogicalBorderSurface.icc" 108 #include "G4LogicalBorderSurface.icc" 104 109 105 #endif << 110 #endif /* G4LogicalBorderSurface_h */ >> 111 106 112