Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:27

0001 #ifndef LaserAlignmentSimulation_MaterialProperties_h
0002 #define LaserAlignmentSimulation_MaterialProperties_h
0003 
0004 /** \class MaterialProperties
0005  *  Class to define custom material properties
0006  *
0007  *  $Date: 2007/03/20 12:01:00 $
0008  *  $Revision: 1.2 $
0009  *  \author Maarten Thomas
0010  */
0011 
0012 #include "G4MaterialPropertiesTable.hh"
0013 #include "G4SDManager.hh"
0014 
0015 class MaterialProperties {
0016 public:
0017   /// constructor
0018   MaterialProperties(int DebugLevel, double SiAbsLengthScale);
0019   /// destructor
0020   ~MaterialProperties();
0021 
0022 private:
0023   /// define optical properties of materials in the detector
0024   void setMaterialProperties();
0025 
0026 private:
0027   const G4MaterialTable *theMaterialTable;
0028 
0029 private:
0030   int theMPDebugLevel;
0031   double theSiAbsLengthScalingFactor;
0032   G4MaterialPropertiesTable *theMPT;
0033   G4Material *theTECWafer;
0034   G4Material *theTOBWafer;
0035   G4Material *theTIBWafer;
0036 };
0037 #endif