/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/LaserAlignmentSimulation/interface/LaserSteppingAction.h
30 строк
772 B
Cms Build
Clang-Format
04 май 2019, 10:54
04 май 2019, 10:54
d42c8c8
Код
Авторство
О чём код?
#ifndef LaserAlignmentSimulation_LaserSteppingAction_H #define LaserAlignmentSimulation_LaserSteppingAction_H /** \class LaserSteppingAction * Class for the Stepping action * * $Date: 2007/03/20 12:00:59 $ * $Revision: 1.2 $ * \author Maarten Thomas */ #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "G4SteppingManager.hh" class LaserSteppingAction : public G4UserSteppingAction { public: /// constructor LaserSteppingAction(edm::ParameterSet const &theConf); /// destructor ~LaserSteppingAction() override; /// stepping action: set energydeposit when a photon is absorbed in a Si /// module void UserSteppingAction(const G4Step *myStep) override; private: int theDebugLevel; double theEnergyLossScalingFactor; }; #endif