/* * WhitePSPulser.hh * * Created on: Aug 27, 2015 * Author: Hovanes Egiyan */ #ifndef WHITEPSPULSER_HH_ #define WHITEPSPULSER_HH_ #include "FCALLEDPulser.hh" class WhitePSPulser: public FCALLEDPulser { protected: static unsigned wppRangeMask; static unsigned wppChannelMask; static std::string wppPulserID; static std::vector wppChannelVector; WhitePSPulser() { return; } public: WhitePSPulser(const std::string id); virtual inline unsigned getRangeMask() { return wppRangeMask; } virtual inline unsigned getChannelMask() { return wppChannelMask; } virtual inline std::vector& getChannelVector() { return wppChannelVector; } }; #endif /* WHITEPSPULSER_HH_ */