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 // G4LogicalSkinSurface << 26 // >> 27 // $Id: G4LogicalSkinSurface.hh 81646 2014-06-04 09:28:37Z gcosmo $ >> 28 // >> 29 // class G4LogicalSkinSurface 27 // 30 // 28 // Class description: 31 // Class description: 29 // 32 // 30 // A Logical Surface class for the surface sur 33 // A Logical Surface class for the surface surrounding a single logical 31 // volume. 34 // volume. 32 35 33 // Author: John Apostolakis, CERN - 16-06-1997 << 36 // History: 34 // ------------------------------------------- << 37 // ------- 35 #ifndef G4LogicalSkinSurface_hh << 38 // Created: 1997-06-16 36 #define G4LogicalSkinSurface_hh 1 << 39 // Author: John Apostolakis (John.Apostolakis@cern.ch) >> 40 // >> 41 // ---------------------------------------------------------------------- >> 42 #ifndef G4LogicalSkinSurface_h >> 43 #define G4LogicalSkinSurface_h 1 37 44 38 #include <map> << 45 #include <vector> 39 46 40 #include "G4LogicalSurface.hh" 47 #include "G4LogicalSurface.hh" 41 48 42 class G4LogicalVolume; 49 class G4LogicalVolume; 43 class G4LogicalSkinSurface; 50 class G4LogicalSkinSurface; 44 51 45 using G4LogicalSkinSurfaceTable << 52 typedef std::vector<G4LogicalSkinSurface*> G4LogicalSkinSurfaceTable; 46 = std::map<const G4LogicalVolume*, G4Log << 47 53 48 class G4LogicalSkinSurface : public G4LogicalS 54 class G4LogicalSkinSurface : public G4LogicalSurface 49 { 55 { 50 public: << 56 >> 57 public: // with description 51 58 52 G4LogicalSkinSurface( const G4String& name 59 G4LogicalSkinSurface( const G4String& name, 53 G4LogicalVolum 60 G4LogicalVolume* vol, 54 G4SurfacePrope 61 G4SurfaceProperty* surfaceProperty ); 55 ~G4LogicalSkinSurface() override; << 62 ~G4LogicalSkinSurface(); 56 // Constructor and destructor. 63 // Constructor and destructor. 57 64 58 G4LogicalSkinSurface(const G4LogicalSkinSu << 59 G4LogicalSkinSurface& operator=(const G4Lo << 60 // Assignment and copying not allowed. << 61 << 62 G4bool operator==(const G4LogicalSkinSurfa << 63 G4bool operator!=(const G4LogicalSkinSurfa << 64 // Operators. << 65 << 66 static G4LogicalSkinSurface* GetSurface(co 65 static G4LogicalSkinSurface* GetSurface(const G4LogicalVolume* vol); 67 inline const G4LogicalVolume* GetLogicalVo 66 inline const G4LogicalVolume* GetLogicalVolume() const; 68 inline void SetLogicalVolume(G4LogicalVol 67 inline void SetLogicalVolume(G4LogicalVolume* vol); 69 // Accessors. 68 // Accessors. 70 69 71 static void CleanSurfaceTable(); 70 static void CleanSurfaceTable(); 72 static const G4LogicalSkinSurfaceTable* Ge 71 static const G4LogicalSkinSurfaceTable* GetSurfaceTable(); 73 static std::size_t GetNumberOfSkinSurfaces << 72 static size_t GetNumberOfSkinSurfaces(); 74 static void DumpInfo(); // const 73 static void DumpInfo(); // const 75 // To handle with the table of surfaces. 74 // To handle with the table of surfaces. 76 75 >> 76 G4int operator==(const G4LogicalSkinSurface &right) const; >> 77 G4int operator!=(const G4LogicalSkinSurface &right) const; >> 78 // Operators. >> 79 >> 80 private: >> 81 >> 82 G4LogicalSkinSurface(const G4LogicalSkinSurface &right); >> 83 G4LogicalSkinSurface& operator=(const G4LogicalSkinSurface &right); >> 84 // Assignment and copying must be denied. >> 85 77 private: 86 private: 78 87 79 G4LogicalVolume* LogVolume; 88 G4LogicalVolume* LogVolume; 80 // Logical Volume pointer on side 1. 89 // Logical Volume pointer on side 1. 81 90 82 static G4LogicalSkinSurfaceTable *theSkinS 91 static G4LogicalSkinSurfaceTable *theSkinSurfaceTable; 83 // The static Table of SkinSurfaces. 92 // The static Table of SkinSurfaces. >> 93 84 }; 94 }; 85 95 86 // ******************************************* 96 // ******************************************************************** 87 // Inline methods 97 // Inline methods 88 // ******************************************* 98 // ******************************************************************** 89 99 90 #include "G4LogicalSkinSurface.icc" 100 #include "G4LogicalSkinSurface.icc" 91 101 92 #endif << 102 #endif /* G4LogicalSkinSurface_h */ 93 103 94 104