/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalMuon/GEMRecHit/interface/GEMCluster.h
27 строк
559 B
David
move away from boost::uint and boost::int
24 сен 2019, 12:09
24 сен 2019, 12:09
f67c449
Код
Авторство
О чём код?
#include <cstdint> #ifndef RecoLocalMuon_GEMRecHit_GEMCluster_h #define RecoLocalMuon_GEMRecHit_GEMCluster_h class GEMCluster { public: GEMCluster(); GEMCluster(int fs, int ls, int bx); ~GEMCluster(); int firstStrip() const; int lastStrip() const; int clusterSize() const; int bx() const; void merge(const GEMCluster& cl); bool operator<(const GEMCluster& cl) const; bool operator==(const GEMCluster& cl) const; bool isAdjacent(const GEMCluster& cl) const; private: uint16_t fstrip; uint16_t lstrip; int16_t bunchx; }; #endif