File indexing completed on 2024-09-07 04:37:04
0001 #ifndef TTUGLOBALSIGNAL_H
0002 #define TTUGLOBALSIGNAL_H 1
0003
0004
0005 #include "L1Trigger/RPCTechnicalTrigger/interface/TTUInput.h"
0006 #include "L1Trigger/RPCTechnicalTrigger/interface/RPCInputSignal.h"
0007
0008 #include <map>
0009
0010
0011
0012
0013
0014
0015
0016 class TTUGlobalSignal : public RPCInputSignal {
0017 public:
0018
0019 TTUGlobalSignal() {}
0020
0021 TTUGlobalSignal(std::map<int, TTUInput*>*);
0022
0023 ~TTUGlobalSignal() override;
0024
0025 void clear() override {}
0026
0027 std::map<int, TTUInput*>* m_wheelmap;
0028
0029 protected:
0030 private:
0031 };
0032 #endif