Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-07-16 02:42:43

0001 /**
0002 * \class AXOL1TLScore
0003 *
0004 *
0005 *
0006 * \author: Melissa Quinnan -- UC San Diego
0007 *
0008 *
0009 */
0010 
0011 // this class header
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 //destructor
0026 AXOL1TLScore::~AXOL1TLScore() {
0027   //empty
0028 }