00001
00002
00003
00004
00005
00007
00008 #include "digiRootData/L1T.h"
00009
00010 ClassImp(L1T)
00011
00013 L1T::L1T( Int_t trigCount, Int_t trigTimeValue, Int_t xCapture, Int_t yCapture,
00014 UShort_t vetoCapture, UChar_t deadTimeCause, UShort_t deadTime) :
00015 m_trigCount(trigCount), m_trigTimeValue(trigTimeValue),
00016 m_xCapture(xCapture), m_yCapture(yCapture), m_vetoCapture(vetoCapture),
00017 m_deadTimeCause(deadTimeCause), m_deadTime(deadTime) {
00018 }
00019
00020 L1T::L1T() : m_trigCount(0), m_trigTimeValue(0), m_xCapture(0), m_yCapture(0),
00021 m_vetoCapture(0), m_deadTimeCause(0), m_deadTime(0)
00022 {
00023
00024 }
00025
00026 L1T::~L1T(){
00027
00028 }
00029
00030 void L1T::Clean() {
00031 m_trigCount = 0;
00032 m_trigTimeValue = 0;
00033 m_xCapture = 0;
00034 m_yCapture = 0;
00035 m_vetoCapture = 0;
00036 m_deadTimeCause = 0;
00037 m_deadTime = 0;
00038 }