// -*- C++/l -*- // // Description: // // Author: Nicholas Hastings // Created: Tuesday 23 October 10:10:07 JST 2012 // #ifndef TFGDTRIGGERCHECK_HXX #define TFGDTRIGGERCHECK_HXX #include "ICOMETEvent.hxx" class TTree; class IFGDTriggerCheck { public: IFGDTriggerCheck(); ~IFGDTriggerCheck(); int Process( COMET::ICOMETEvent& event ); void Initialize(void); TTree* GetTree(void) { return ftTriggerPattern; } private: /// The Number of FGD mini crates static const unsigned int fNCrate = 48; /// The number of FEBs per mini crate static const unsigned int fNFeb = 4; /// The number of groups per FEB static const unsigned int fNGroup = 8; /// Number of FGD channels: 48 * 4 * 8 (mincrate*feb*group) static const unsigned int fNIndex = 1536; TTree* ftTriggerPattern; Bool_t fFgdCosmic; Long64_t fLow; Long64_t fMid; Long64_t fHigh; UInt_t fNChan; Int_t* fGroup; Double_t* fRate; UInt_t fNMC; Int_t* fCrate; Double_t* fRateCMB; Int_t fTime; }; #endif // TFGDTRIGGERCHECK_HXX // Local Variables: // c-basic-offset: 8 // c-file-offsets: ((access-label . -2)(inclass . 4)(innamespace . 2)) // End: