CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RBCTestLogic.cc
Go to the documentation of this file.
1 // Include files
2 
3 
4 
5 // local
7 
8 //-----------------------------------------------------------------------------
9 // Implementation file for class : RBCTestLogic
10 //
11 // 2008-10-13 : Andres Osorio
12 //-----------------------------------------------------------------------------
13 
14 //=============================================================================
15 // Standard constructor, initializes variables
16 //=============================================================================
18 
19 }
20 //=============================================================================
21 // Destructor
22 //=============================================================================
24 
25 //=============================================================================
26 void RBCTestLogic::process( const RBCInput & _input, std::bitset<2> & _decision)
27 {
28  std::cout << "RBCTestLogic> Implementing just a plain OR" << '\n';
29 
30  std::bitset<15> _data[2];
31 
32  _data[0] = _input.input_sec[0];
33  _data[1] = _input.input_sec[1];
34 
35  bool _ds = true;
36  for(int i=0; i < 15; ++i) _ds = _ds | _data[0][i];
37  _decision.set(0,_ds);
38 
39  _ds = true;
40  for(int i=0; i < 15; ++i) _ds = _ds | _data[1][i];
41  _decision.set(1,_ds);
42 
43 
44  //...Layer information:
45  for(int k=0; k < 6; ++k) {
46  m_testlayer[0].set(k,1);
47  m_testlayer[1].set(k,0);
48  }
49 
50 
51  //....
52 
53 }
54 
56 {
57 
58 
59 
60 
61 
62 }
int i
Definition: DBlmapReader.cc:9
void setBoardSpecs(const RBCBoardSpecs::RBCBoardConfig &)
Definition: RBCTestLogic.cc:55
virtual ~RBCTestLogic()
Destructor.
Definition: RBCTestLogic.cc:23
std::bitset< 6 > m_testlayer[2]
Definition: RBCTestLogic.h:33
std::bitset< 15 > * input_sec
Definition: RBCInput.h:64
void process(const RBCInput &, std::bitset< 2 > &)
Definition: RBCTestLogic.cc:26
tuple cout
Definition: gather_cfg.py:121
RBCTestLogic()
Standard constructor.
Definition: RBCTestLogic.cc:17