/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimMuon/Neutron/src/NeutronReader.h
19 строк
409 B
Shahzad Malik Muzaffar
[SIMULATION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:10
05 сен 2024, 17:10
321a48b
Код
Авторство
О чём код?
#ifndef NeutronReader_h #define NeutronReader_h /** * interface to methods which return a set of SimHits in a chamber \author Rick Wilkinson */ #include "SimDataFormats/TrackingHit/interface/PSimHitContainer.h" #include <vector> class NeutronReader { public: NeutronReader() {} virtual ~NeutronReader() {} virtual void readNextEvent(int chamberType, edm::PSimHitContainer& result) = 0; }; #endif