CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCPacBase.cc
Go to the documentation of this file.
1 /*******************************************************************************
2 * *
3 * Karol Bunkowski *
4 * Warsaw University 2002 *
5 * *
6 *******************************************************************************/
13 RPCPacBase::RPCPacBase(int m_tower, int logSector, int logSegment) {
14  m_ConeCrdnts.m_Tower = m_tower;
15  m_ConeCrdnts.m_LogSector = logSector;
16  m_ConeCrdnts.m_LogSegment = logSegment;
17 
19 }
20 
27  m_ConeCrdnts(coneCrdnts),
28  m_CurrConeCrdnts(coneCrdnts) {}
29 
35 void RPCPacBase::setCurrentPosition(int m_tower, int logSector, int logSegment) {
36  m_CurrConeCrdnts.m_Tower = m_tower;
37  m_CurrConeCrdnts.m_LogSector = logSector;
38  m_CurrConeCrdnts.m_LogSegment = logSegment;
39 }
40 
47  m_CurrConeCrdnts = coneCrdnts;
48 }
The coordinates of Logic Cone: m_Tower, m_LogSector, m_LogSegment.
Definition: RPCConst.h:119
void setCurrentPosition(int m_tower, int logSector, int logSegment)
Definition: RPCPacBase.cc:35
RPCConst::l1RpcConeCrdnts m_CurrConeCrdnts
Definition: RPCPacBase.h:33
RPCConst::l1RpcConeCrdnts m_ConeCrdnts
Coordinates of LogCone.The coordinates, with which m_PAC is created - the same as in pac file name...
Definition: RPCPacBase.h:29
RPCPacBase(int m_tower, int logSector, int logSegment)
Definition: RPCPacBase.cc:13