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: G4SurfaceProperty.hh,v 1.2 2003/12/01 15:13:41 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-07-00-cand-01 $ >> 26 // >> 27 // 26 ////////////////////////////////////////////// 28 //////////////////////////////////////////////////////////////////////// 27 // G4SurfaceProperty Definition 29 // G4SurfaceProperty Definition 28 ////////////////////////////////////////////// 30 //////////////////////////////////////////////////////////////////////// 29 // 31 // 30 // Class Description: 32 // Class Description: 31 // 33 // 32 // A base class describing a surface property. 34 // A base class describing a surface property. 33 // Derived classes are G4Opticalsurface, G4Fir << 35 // Derived classes are G4Opticalsurface, G4Firovsurface, etc. 34 // Contains the enumeration G4SurfaceType. 36 // Contains the enumeration G4SurfaceType. 35 37 36 // File: G4SurfaceProperty.hh 38 // File: G4SurfaceProperty.hh 37 // Description: A base class for for descripin 39 // Description: A base class for for descriping surface property such 38 // as G4OpticalSurface, G4FirsovS 40 // as G4OpticalSurface, G4FirsovSurface, G4X-raySurface 39 // Version: 1.0 41 // Version: 1.0 40 // Created: 13-10-2003 42 // Created: 13-10-2003 41 // Author: Fan Lei 43 // Author: Fan Lei 42 // Updated: Mariele Stockhoff 2017-02-24 a << 44 // 43 ////////////////////////////////////////////// 45 //////////////////////////////////////////////////////////////////////// 44 46 45 #ifndef G4SurfaceProperty_h 47 #ifndef G4SurfaceProperty_h 46 #define G4SurfaceProperty_h 1 48 #define G4SurfaceProperty_h 1 47 49 48 #include "G4String.hh" << 50 ///////////// 49 #include "G4Types.hh" << 51 // Includes 50 << 52 ///////////// 51 #include <vector> << 52 53 53 class G4SurfaceProperty; << 54 #include "G4Types.hh" 54 << 55 #include "G4String.hh" 55 using G4SurfacePropertyTable = std::vector<G4S << 56 56 57 // clang-format off << 58 enum G4SurfaceType 57 enum G4SurfaceType 59 { 58 { 60 dielectric_metal, // dielectric-metal << 59 dielectric_metal, // dielectric-metal interface 61 dielectric_dielectric, // dielectric-dielec << 60 dielectric_dielectric, // dielectric-dielectric interface 62 dielectric_LUT, // dielectric-Look-U << 61 firsov, // for Firsov Process 63 dielectric_LUTDAVIS, // dielectric-Look-U << 62 x_ray // for x-ray mirror process 64 dielectric_dichroic, // dichroic filter i << 65 firsov, // for Firsov Proces << 66 x_ray, // for x-ray mirror << 67 coated // coated_dielectric- << 68 }; 63 }; 69 // clang-format on << 64 >> 65 ///////////////////// >> 66 // Class Definition >> 67 ///////////////////// 70 68 71 class G4SurfaceProperty 69 class G4SurfaceProperty 72 { 70 { 73 public: << 74 // Constructor of a X-ray optical surface ob << 75 G4SurfaceProperty(); << 76 G4SurfaceProperty(const G4String& name, G4Su << 77 virtual ~G4SurfaceProperty() = default; << 78 << 79 // Returns the surface name. << 80 const G4String& GetName() const { return the << 81 // Sets the surface name. << 82 void SetName(const G4String& name) { theName << 83 << 84 // Returns the surface type. << 85 const G4SurfaceType& GetType() const { retur << 86 // Sets the surface type. << 87 virtual void SetType(const G4SurfaceType& ty << 88 << 89 // To handle the table of surface properties << 90 static void CleanSurfacePropertyTable(); << 91 static const G4SurfacePropertyTable* GetSurf << 92 static size_t GetNumberOfSurfaceProperties() << 93 static void DumpTableInfo(); << 94 71 95 protected: << 72 public: // Without description 96 G4String theName; // Surface name << 73 >> 74 ////////////// >> 75 // Operators >> 76 ////////////// >> 77 >> 78 // G4SurfaceProperty(const G4SurfaceProperty &right); >> 79 // const G4SurfaceProperty & operator=(const G4SurfaceProperty &right); >> 80 >> 81 // G4int operator==(const G4SurfaceProperty &right) const; >> 82 // G4int operator!=(const G4SurfaceProperty &right) const; 97 83 98 G4SurfaceType theType; // Surface type << 84 public: // With description >> 85 >> 86 //////////////////////////////// >> 87 // Constructors and Destructor >> 88 //////////////////////////////// >> 89 >> 90 G4SurfaceProperty(const G4String& name, >> 91 G4SurfaceType type = x_ray) >> 92 : theName(name), theType(type) >> 93 { >> 94 } >> 95 // Constructor of a X-ray optical surface object. >> 96 >> 97 public: // Without description >> 98 >> 99 ~G4SurfaceProperty(){}; >> 100 >> 101 //////////// >> 102 // Methods >> 103 //////////// >> 104 >> 105 // public methods >> 106 >> 107 public: // With description >> 108 >> 109 G4String GetName() const { return theName; }; >> 110 // Returns the surface name. >> 111 void SetName(const G4String& name){theName = name;}; >> 112 // Sets the surface name. >> 113 >> 114 G4SurfaceType GetType() const {return theType;}; >> 115 // Returns the surface type. >> 116 void SetType(const G4SurfaceType type){theType = type;}; >> 117 // Sets the surface type. >> 118 >> 119 protected: >> 120 >> 121 // ------------------ >> 122 // Basic data members ( To define surface property) >> 123 // ------------------ >> 124 >> 125 G4String theName; // Surface name >> 126 >> 127 G4SurfaceType theType; // Surface type 99 128 100 static G4SurfacePropertyTable theSurfaceProp << 101 }; 129 }; >> 130 >> 131 //////////////////// >> 132 // Inline methods >> 133 //////////////////// 102 134 103 #endif /* G4SurfaceProperty_h */ 135 #endif /* G4SurfaceProperty_h */ 104 136