/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/LaserAlignmentSimulation/interface/LaserOpticalPhysicsList.h
47 строк
1 KB
Cms Build
Clang-Format
04 май 2019, 10:54
04 май 2019, 10:54
d42c8c8
Код
Авторство
О чём код?
#ifndef LaserAlignmentSimulation_LaserOpticalPhysicsList_H #define LaserAlignmentSimulation_LaserOpticalPhysicsList_H /** \class LaserOpticalPhysicsList * Define the Optical processes for the Simulation of the Laser Alignment * System * * $Date: 2007/06/11 14:44:28 $ * $Revision: 1.3 $ * \author Maarten Thomas */ // G4 includes #include "G4VPhysicsConstructor.hh" #include "G4OpWLS.hh" class G4Cerenkov; class G4Scintillation; class G4OpAbsorption; class G4OpRayleigh; class G4OpBoundaryProcess; class LaserOpticalPhysicsList : public G4VPhysicsConstructor { public: /// constructor LaserOpticalPhysicsList(const G4String &name = "optical"); /// destructor ~LaserOpticalPhysicsList() override; public: /// construct Optical Photons void ConstructParticle() override; /// construct Optical Processes void ConstructProcess() override; protected: G4bool wasActivated; G4Scintillation *theScintProcess; G4Cerenkov *theCerenkovProcess; G4OpAbsorption *theAbsorptionProcess; G4OpRayleigh *theRayleighScattering; G4OpBoundaryProcess *theBoundaryProcess; G4OpWLS *theWLSProcess; }; #endif