Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

L1T.cxx

Go to the documentation of this file.
00001 
00002 //                                                                       
00003 // The L1T class contains the information about the Level 1 Trigger count
00004 // for an event.  
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   // Default constructor
00024 }
00025 //_________________________________________________________________________
00026 L1T::~L1T(){
00027   // Destructor
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 }

Generated at Wed Nov 21 12:22:45 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000