#ifndef __TTPCTRIGGERDECODER__ #define __TTPCTRIGGERDECODER__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include "Channel.hxx" //#include "mygblink.h" #include #define NDCC 18 class ITpcTriggerDecoder{ private: bool debug; int size; int trigevt; int trigH; int trigL; int latency; int latencyOld; int latencyMax; int sizeMax; public: ITpcTriggerDecoder(){;} virtual ~ITpcTriggerDecoder() {;} bool Decode(const UInt_t *bbuffPtr,int buffSize); //bool Decode(const ULong64_t* buffPtr,int buffSize); bool Process(COMET::ICOMETEvent& event); void setDebug(bool val){ debug = val;} int GetTriggerMask(void) { return (trigH>>16)&0xFFFF;} int GetTriggerEvt(void){ return trigevt;} int GetTriggerLow(void) { return trigL;} int GetTriggerHigh(void) { return trigH;} int GetSize(void) { return size;} int GetLatency(void) { return latency;} int GetLatencyMax(void) { return latencyMax;} int GetSizeMax(void) { return sizeMax;} }; #endif