Revision: | 1.1 |
Committed: | Wed Feb 8 07:19:26 2012 UTC (13 years, 2 months ago) by konec |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Artur_11_07_2013_B, Artur_11_07_2013_A, Artur_11_07_2013, Artur_28_06_2013, Mikolaj_cmssw533, Mikolaj_cmssw52x, HEAD |
Error occurred while calculating annotation data. | |
Log Message: | *** empty log message *** |
# | Content |
---|---|
1 | #ifndef UserCode_L1RpcTriggerAnalysis_LayerCoincManager_H |
2 | #define UserCode_L1RpcTriggerAnalysis_LayerCoincManager_H |
3 | |
4 | #include <vector> |
5 | #include <map> |
6 | #include <bitset> |
7 | |
8 | class LayerCoincManager { |
9 | public: |
10 | LayerCoincManager(); |
11 | bool matched( float eta, std::bitset<6> & items) const; |
12 | private: |
13 | std::vector< std::bitset<6> > theLayersB, theLayersT6, theLayersT7, theLayersT8, theLayersE; |
14 | |
15 | }; |
16 | #endif |