CMS 3D CMS Logo

RBCTestLogic.h
Go to the documentation of this file.
1 #ifndef RBCTESTLOGIC_H
2 #define RBCTESTLOGIC_H 1
3 
4 // Include files
5 
8 
9 #include <iostream>
10 #include <ios>
11 
21 class RBCTestLogic : public RBCLogic {
22 public:
24  RBCTestLogic();
25 
26  ~RBCTestLogic() override;
27 
28  void process(const RBCInput&, std::bitset<2>&) override;
29 
30  void setBoardSpecs(const RBCBoardSpecs::RBCBoardConfig&) override;
31 
32  std::bitset<6>* getlayersignal(int _idx) override { return &m_testlayer[_idx]; };
33 
34 protected:
35 private:
36  std::bitset<6> m_testlayer[2];
37 };
38 #endif // RBCTESTLOGIC_H
~RBCTestLogic() override
Destructor.
Definition: RBCTestLogic.cc:19
void setBoardSpecs(const RBCBoardSpecs::RBCBoardConfig &) override
Definition: RBCTestLogic.cc:49
std::bitset< 6 > m_testlayer[2]
Definition: RBCTestLogic.h:32
void process(const RBCInput &, std::bitset< 2 > &) override
Definition: RBCTestLogic.cc:22
RBCTestLogic()
Standard constructor.
Definition: RBCTestLogic.cc:15
std::bitset< 6 > * getlayersignal(int _idx) override
Definition: RBCTestLogic.h:32