File indexing completed on 2024-07-16 02:42:43
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include "DataFormats/L1TGlobal/interface/AXOL1TLScore.h"
0013
0014 void AXOL1TLScore::reset() {
0015 axoscore_ = 0.0;
0016 m_bxInEvent = 0;
0017 }
0018
0019 AXOL1TLScore::AXOL1TLScore() { reset(); }
0020
0021 AXOL1TLScore::AXOL1TLScore(int bxInEvent) : m_bxInEvent(bxInEvent) { axoscore_ = 0.0; }
0022
0023 AXOL1TLScore::AXOL1TLScore(int bxInEvent, float score) : m_bxInEvent(bxInEvent), axoscore_(score) {}
0024
0025
0026 AXOL1TLScore::~AXOL1TLScore() {
0027
0028 }