Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/**
* \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
}