/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/HcalRecHit/src/HFRecHit.cc
11 строк
343 B
Matti Kortelainen
Move stored types in io_v1 namespace, reset class versions to 3
22 май 2026, 18:18
22 май 2026, 18:18
909f324
Код
Авторство
О чём код?
#include "DataFormats/HcalRecHit/interface/HFRecHit.h" namespace io_v1 { std::ostream& operator<<(std::ostream& s, const HFRecHit& hit) { s << hit.id() << ": " << hit.energy() << " GeV"; if (hit.time() > -998) { s << ", t= " << hit.time() << " to " << hit.timeFalling() << " ns"; } return s; } } // namespace io_v1