//////////////////////////////////////////////////////////////////// /// \class RAT::ECABits /// /// \brief Bit identification for the ECA processor /// /// \author Gabriel D. Orebi Gann Author and contact /// \author Javier Caravaca - Contact /// /// REVISION HISTORY:\n /// /// \details This class defines the bits in the various /// status words used in the ECAProc processor /// /// /// /// //////////////////////////////////////////////////////////////////// #ifndef __RAT_ECABits__ #define __RAT_ECABits__ #include "TH1F.h" #include "TH1I.h" #include "TFile.h" namespace RAT { class ECABits{ public: ECABits(); virtual ~ECABits(); void InitialiseStatusWords(int eca_type); std::vector fOverallMask; std::vector fCellMask; protected: }; } // namespace RAT #endif