/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/LaserAlignmentSimulation/interface/MaterialProperties.h
37 строк
855 B
Cms Build
Clang-Format
04 май 2019, 10:54
04 май 2019, 10:54
d42c8c8
Код
Авторство
О чём код?
#ifndef LaserAlignmentSimulation_MaterialProperties_h #define LaserAlignmentSimulation_MaterialProperties_h /** \class MaterialProperties * Class to define custom material properties * * $Date: 2007/03/20 12:01:00 $ * $Revision: 1.2 $ * \author Maarten Thomas */ #include "G4MaterialPropertiesTable.hh" #include "G4SDManager.hh" class MaterialProperties { public: /// constructor MaterialProperties(int DebugLevel, double SiAbsLengthScale); /// destructor ~MaterialProperties(); private: /// define optical properties of materials in the detector void setMaterialProperties(); private: const G4MaterialTable *theMaterialTable; private: int theMPDebugLevel; double theSiAbsLengthScalingFactor; G4MaterialPropertiesTable *theMPT; G4Material *theTECWafer; G4Material *theTOBWafer; G4Material *theTIBWafer; }; #endif