/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/L1TGlobal/src/AXOL1TLScore.cc
28 строк
524 B
Melissa Quinnan
removed previous checksums, removed class intitialization with ibxInEvent
22 июн 2024, 00:14
22 июн 2024, 00:14
9ee1dd8
Код
Авторство
О чём код?
/** * \class AXOL1TLScore * * * * \author: Melissa Quinnan -- UC San Diego * * */ // this class header #include "DataFormats/L1TGlobal/interface/AXOL1TLScore.h" void AXOL1TLScore::reset() { axoscore_ = 0.0; m_bxInEvent = 0; } AXOL1TLScore::AXOL1TLScore() { reset(); } AXOL1TLScore::AXOL1TLScore(int bxInEvent) : m_bxInEvent(bxInEvent) { axoscore_ = 0.0; } AXOL1TLScore::AXOL1TLScore(int bxInEvent, float score) : m_bxInEvent(bxInEvent), axoscore_(score) {} //destructor AXOL1TLScore::~AXOL1TLScore() { //empty }