CMS 3D CMS Logo

RBCId.cc
Go to the documentation of this file.
1 // Include files
2 
3 // local
5 
6 //-----------------------------------------------------------------------------
7 // Implementation file for class : RBCId
8 //
9 // 2008-10-12 : Andres Osorio
10 //-----------------------------------------------------------------------------
11 
12 //=============================================================================
13 // Standard constructor, initializes variables
14 //=============================================================================
16  m_wheel = -9;
17  m_sector[0] = 100;
18  m_sector[1] = 101;
19 }
20 
21 RBCId::RBCId( int _w, int * _s )
22 {
23  m_wheel = _w;
24  m_sector[0] = _s[0];
25  m_sector[1] = _s[1];
26 }
27 
28 //=============================================================================
29 void RBCId::printinfo() const
30 {
31 
32  std::cout << " ---->whe " << m_wheel << '\n';
33  std::cout << " ---->sec " << m_sector[0] << '\t' << m_sector[1] << '\n';
34 
35 }
constexpr long double _s(1.e+9)
int m_wheel
Definition: RBCId.h:46
int m_sector[2]
Definition: RBCId.h:47
RBCId()
Standard constructor.
Definition: RBCId.cc:15
void printinfo() const
Definition: RBCId.cc:29