/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4Core/Notification/interface/MCTruthUtil.h
21 строка
543 B
Vladimir
preparation of G4 user actions for adept GPU project
23 апр 2026, 16:01
23 апр 2026, 16:01
b194afa
Код
Авторство
О чём код?
#ifndef SimG4Core_MCTruthUtil_H #define SimG4Core_MCTruthUtil_H class G4Track; /* * Creation and filling initial MC truth information for * primary and secondary G4Track objects, addition to G4Track * an extra CMS container TrackInformation. * Currently is used in StackingAction. */ class MCTruthUtil { public: static void primary(G4Track* aPrimary); static void secondary(G4Track* aSecondary, const G4Track* mother, int); static void updateSecondary(G4Track* aSecondary); static bool isInBTL(const G4Track*); }; #endif