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