/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4Core/Notification/interface/GenParticleInfo.h
17 строк
384 B
Vladimir
fode format
24 мар 2023, 19:56
24 мар 2023, 19:56
2ad4ac7
Код
Авторство
О чём код?
#ifndef SimG4Core_GenParticleInfo_H #define SimG4Core_GenParticleInfo_H #include "G4VUserPrimaryParticleInformation.hh" class GenParticleInfo : public G4VUserPrimaryParticleInformation { public: explicit GenParticleInfo(int id) : id_(id) {} ~GenParticleInfo() override = default; int id() const { return id_; } void Print() const override {} private: int id_; }; #endif