/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #ifndef MUONTAG_H 00002 #define MUONTAG_H 00003 00004 #include "SelCycler/ITagBase.h" 00005 00006 class MuonTag : public ITagBase 00007 { 00008 public: 00009 MuonTag(const std::string& name); 00010 virtual ~MuonTag(){} 00011 virtual bool tag(PhyEvent* event); 00012 00013 private: 00014 double m_adMuonThr; 00015 double m_showerMuonThr; 00016 int m_iwsNpmtThr; 00017 int m_owsNpmtThr; 00018 bool m_tagRPCMuon; 00019 bool m_tagADMuon; 00020 }; 00021 00022 #endif //MUONTAG_H