/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4Core/Physics/src/CMSG4TrackInterface.cc
15 строк
446 B
Vladimir
moved file from Application to Physics
17 мар 2025, 22:49
17 мар 2025, 22:49
3a904b3
Код
Авторство
О чём код?
#include "SimG4Core/Physics/interface/CMSG4TrackInterface.h" G4ThreadLocal CMSG4TrackInterface* CMSG4TrackInterface::interface_ = nullptr; CMSG4TrackInterface* CMSG4TrackInterface::instance() { if (nullptr == interface_) { static G4ThreadLocalSingleton<CMSG4TrackInterface> inst; interface_ = inst.Instance(); } return interface_; } CMSG4TrackInterface::CMSG4TrackInterface() {}; CMSG4TrackInterface::~CMSG4TrackInterface() {};