///////////////////////////////////////////////////////////////////////////
//                                                                       
// The L1T class contains the information about the Level 1 Trigger count
// for an event.  
//                                                                       
///////////////////////////////////////////////////////////////////////////

#include "L1T.h"

ClassImp(L1T)

///________________________________________________________________________
 L1T::L1T( Int_t trigCount, Int_t trigTimeValue, Int_t xCapture, Int_t yCapture,
		 UShort_t vetoCapture, UChar_t deadTimeReason, UShort_t deadTime) :
	m_trigCount(trigCount), m_trigTimeValue(trigTimeValue), 
	m_xCapture(xCapture), m_yCapture(yCapture), m_vetoCapture(vetoCapture),
	m_deadTimeReason(deadTimeReason), m_deadTime(deadTime) {
}
//_________________________________________________________________________
 L1T::L1T(){
  // Default constructor
}
//_________________________________________________________________________
 L1T::~L1T(){
  // Destructor
}


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.