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 // G4LogicalSkinSurface << 23 // >> 24 // $Id: G4LogicalSkinSurface.hh,v 1.6.2.1 2001/06/28 19:09:38 gunter Exp $ >> 25 // GEANT4 tag $Name: $ >> 26 // >> 27 //////////////////////////////////////////////////////////////////////// >> 28 // class G4LogicalSkinSurface >> 29 //////////////////////////////////////////////////////////////////////// 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 >> 40 // mail: John.Apostolakis@cern.ch >> 41 // Modified: 1997-06-16 John Apostolakis >> 42 // >> 43 //////////////////////////////////////////////////////////////////////// >> 44 >> 45 #ifndef G4LogicalSkinSurface_h >> 46 #define G4LogicalSkinSurface_h 1 37 47 38 #include <map> << 48 ///////////// >> 49 // Includes >> 50 ///////////// 39 51 40 #include "G4LogicalSurface.hh" 52 #include "G4LogicalSurface.hh" >> 53 #include "G4LogicalVolume.hh" 41 54 42 class G4LogicalVolume; << 55 #include "g4std/vector" 43 class G4LogicalSkinSurface; << 44 56 45 using G4LogicalSkinSurfaceTable << 57 ///////////////////// 46 = std::map<const G4LogicalVolume*, G4Log << 58 // Class Definition >> 59 ///////////////////// 47 60 48 class G4LogicalSkinSurface : public G4LogicalS 61 class G4LogicalSkinSurface : public G4LogicalSurface 49 { 62 { >> 63 >> 64 public: >> 65 >> 66 //////////////////////////////// >> 67 // Constructors and Destructor >> 68 //////////////////////////////// >> 69 >> 70 // Is the name meaningful for the logical skin surface ? >> 71 >> 72 G4LogicalSkinSurface(const G4String& name, G4LogicalVolume* vol, >> 73 G4OpticalSurface* opticalSurface); >> 74 >> 75 ~G4LogicalSkinSurface(); >> 76 >> 77 //////////// >> 78 // Methods >> 79 //////////// 50 public: 80 public: >> 81 >> 82 static G4LogicalSkinSurface* GetSurface(const G4LogicalVolume* vol); 51 83 52 G4LogicalSkinSurface( const G4String& name << 84 inline const G4LogicalVolume* GetLogicalVolume() const; 53 G4LogicalVolum << 85 inline void SetLogicalVolume(G4LogicalVolume* vol); 54 G4SurfacePrope << 55 ~G4LogicalSkinSurface() override; << 56 // Constructor and destructor. << 57 << 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 << 67 inline const G4LogicalVolume* GetLogicalVo << 68 inline void SetLogicalVolume(G4LogicalVol << 69 // Accessors. << 70 << 71 static void CleanSurfaceTable(); << 72 static const G4LogicalSkinSurfaceTable* Ge << 73 static std::size_t GetNumberOfSkinSurfaces << 74 static void DumpInfo(); // const << 75 // To handle with the table of surfaces. << 76 86 77 private: << 87 static size_t GetNumberOfSkinSurfaces(); >> 88 static void DumpInfo(); // const >> 89 // Methods dealing with the table of surfaces. 78 90 79 G4LogicalVolume* LogVolume; << 91 ////////////// 80 // Logical Volume pointer on side 1. << 92 // Operators >> 93 ////////////// >> 94 >> 95 G4int operator==(const G4LogicalSkinSurface &right) const; >> 96 G4int operator!=(const G4LogicalSkinSurface &right) const; >> 97 >> 98 private: >> 99 >> 100 G4LogicalSkinSurface(const G4LogicalSkinSurface &right); >> 101 const G4LogicalSkinSurface & operator=(const G4LogicalSkinSurface &right); >> 102 // Assignment and copying must be denied. >> 103 >> 104 // ------------------ >> 105 // Basic data members ( To define a 'logical' surface) >> 106 // ------------------ >> 107 >> 108 private: >> 109 G4LogicalVolume* LogVolume; >> 110 // Logical Volume pointer on side 1 >> 111 >> 112 static G4std::vector<G4LogicalSkinSurface*> theSurfaceTable; >> 113 // The static Table of Surfaces 81 114 82 static G4LogicalSkinSurfaceTable *theSkinS << 83 // The static Table of SkinSurfaces. << 84 }; 115 }; 85 116 86 // ******************************************* << 117 typedef G4std::vector<G4LogicalSkinSurface*> G4LogicalSkinSurfaceTable; >> 118 >> 119 //////////////////// 87 // Inline methods 120 // Inline methods 88 // ******************************************* << 121 //////////////////// 89 122 90 #include "G4LogicalSkinSurface.icc" 123 #include "G4LogicalSkinSurface.icc" 91 124 92 #endif << 125 #endif /* G4LogicalSkinSurface_h */ 93 << 94 126