CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
RPCPacManager< TPacType > Class Template Reference

#include <RPCPacManager.h>

Public Member Functions

TPacType * getPac (int m_tower, int logSector, int logSegment) const
 
TPacType * getPac (const RPCConst::l1RpcConeCrdnts &coneCrdnts) const
 
void init (std::string patFilesDirectory, L1RpcPACsCntEnum _PACsCnt)
 
void init (const L1RPCConfig *rpcconf)
 
 ~RPCPacManager ()
 

Private Member Functions

void destroy ()
 

Private Attributes

L1RpcPACsCntEnum m_PACsCnt
 
std::vector< std::vector< std::vector< TPacType * > > > m_PacTab
 m_PacTab[m_tower][logSector][m_LogSegment] More...
 
int m_SectorsCnt
 Count of used differnt sectors. More...
 
int m_SegmentCnt
 Count of used differnt segments. More...
 

Detailed Description

template<class TPacType>
class RPCPacManager< TPacType >

The singleton object of thise class stores all PACs of L1RPC trigger. The tempalte type TPacTypeshould be derived from RPCPacBase, and containe the constructor: RPCPacData(std::string patFilesDir, int m_tower, int logSector, int logSegment). 3 configuration are suported: ONE_PAC_PER_TOWER - the same m_PAC (set of patterns etc.) for every LogCone in a m_tower _12_PACS_PER_TOWER - the same m_PAC in the same segment in every sector, (i.e. 12 PACs in sector (one for LogicCone (segment)), all sectors are treat as one) _144_PACS_PER_TOWER - one m_PAC for every LogicCone of given m_tower

Author
Karol Bunkowski (Warsaw)

Definition at line 41 of file RPCPacManager.h.

Constructor & Destructor Documentation

template<class TPacType>
RPCPacManager< TPacType >::~RPCPacManager ( )
inline

Definition at line 43 of file RPCPacManager.h.

43  {
44  for (unsigned int m_tower = 0; m_tower < m_PacTab.size(); m_tower++)
45  for (unsigned int logSector = 0; logSector < m_PacTab[m_tower].size(); logSector++) {
46  for (unsigned int logSegment = 0; logSegment < m_PacTab[m_tower][logSector].size(); logSegment++) {
47  TPacType* pac = m_PacTab[m_tower][logSector][logSegment];
48  delete pac;
49  }
50  }
51  }
std::vector< std::vector< std::vector< TPacType * > > > m_PacTab
m_PacTab[m_tower][logSector][m_LogSegment]

Member Function Documentation

template<class TPacType>
void RPCPacManager< TPacType >::destroy ( )
inlineprivate

Definition at line 206 of file RPCPacManager.h.

Referenced by RPCPacManager< RPCPacData >::init().

206  {
207  for (size_t tower = 0; tower < m_PacTab.size() ; ++tower) {
208  for (size_t logSector = 0; logSector < m_PacTab.at(tower).size(); logSector++) {
209  for (size_t logSegment = 0; logSegment < m_PacTab.at(tower).at(logSector).size() ; logSegment++) {
210  TPacType* pac = m_PacTab.at(tower).at(logSector).at(logSegment);
211  delete pac;
212  }
213  }
214  }
215  m_PacTab.clear();
216  }
std::vector< std::vector< std::vector< TPacType * > > > m_PacTab
m_PacTab[m_tower][logSector][m_LogSegment]
template<class TPacType>
TPacType* RPCPacManager< TPacType >::getPac ( int  m_tower,
int  logSector,
int  logSegment 
) const
inline

Returns the pointer to m_PAC for given LogCone defined by m_tower, logSector, logSegment. Here you do not have to care, what configuration is curent used.

Parameters
m_tower-16 : 16,
logSector0 : 11,
logSegment0 : 11.

Definition at line 172 of file RPCPacManager.h.

Referenced by RPCBasicTrigConfig::getPac(), and RPCPacManager< RPCPacData >::getPac().

172  {
173  if (m_PacTab.size() <= (unsigned int) abs(m_tower))
174  throw RPCException("RPCPacManager::getPac: given towerNum to big");
175  // edm::LogError("RPCTrigger") << "RPCPacManager::getPac: given towerNum to big" << std::endl;
176 
177  //int curLogSector = logSector;
178  //int curlogSegment = logSegment;
179 
181  logSector = 0;
182  logSegment = 0;
183  }
184  else if(m_PACsCnt == _12_PACS_PER_TOWER) {
185  logSector = 0;
186  }
187 
188  //XXXX//m_PacTab[abs(m_tower)][logSector][logSegment]->setCurrentPosition(m_tower, curLogSector, curlogSegment);
189  return m_PacTab[std::abs(m_tower)][logSector][logSegment];
190  };
L1RpcPACsCntEnum m_PACsCnt
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::vector< std::vector< std::vector< TPacType * > > > m_PacTab
m_PacTab[m_tower][logSector][m_LogSegment]
template<class TPacType>
TPacType* RPCPacManager< TPacType >::getPac ( const RPCConst::l1RpcConeCrdnts coneCrdnts) const
inline

Definition at line 193 of file RPCPacManager.h.

193  {
194  return getPac(coneCrdnts.m_Tower, coneCrdnts.m_LogSector, coneCrdnts.m_LogSegment);
195  }
TPacType * getPac(int m_tower, int logSector, int logSegment) const
template<class TPacType>
void RPCPacManager< TPacType >::init ( std::string  patFilesDirectory,
L1RpcPACsCntEnum  _PACsCnt 
)
inline

Gets data for PACs.

Parameters
patFilesDirectoryThe directory where files defining PACs are stored. The files should be named acording to special convencion.
_PACsCntThe configuration version. Should be caled once, before using PACs

Definition at line 60 of file RPCPacManager.h.

Referenced by RPCTrigger::produce().

60  {
61  destroy();
62  m_PACsCnt = _PACsCnt;
64  m_SectorsCnt = 1;
65  m_SegmentCnt = 1;
66  }
67  else if(m_PACsCnt == _12_PACS_PER_TOWER) {
68  m_SectorsCnt = 1;
69  m_SegmentCnt = 12;
70  }
71  else if(m_PACsCnt == _144_PACS_PER_TOWER) {
72  m_SectorsCnt = 12;
73  m_SegmentCnt = 12;
74  }
75  else if(m_PACsCnt == TB_TESTS) {
76  m_SectorsCnt = 1;
77  m_SegmentCnt = 4;
78  }
79 
80  for (int m_tower = 0; m_tower < RPCConst::m_TOWER_COUNT; m_tower++) {
81  m_PacTab.push_back(std::vector<std::vector<TPacType*> >());
82  for (int logSector = 0; logSector < m_SectorsCnt; logSector++) {
83  m_PacTab[m_tower].push_back(std::vector<TPacType*>());
84  for (int logSegment = 0; logSegment < m_SegmentCnt; logSegment++) {
85  TPacType* pac = new TPacType(patFilesDirectory, m_tower, logSector, logSegment);
86  m_PacTab[m_tower][logSector].push_back(pac);
87  }
88  }
89  }
90  };
int m_SegmentCnt
Count of used differnt segments.
L1RpcPACsCntEnum m_PACsCnt
static const int m_TOWER_COUNT
Only half of the detector.
Definition: RPCConst.h:43
std::vector< std::vector< std::vector< TPacType * > > > m_PacTab
m_PacTab[m_tower][logSector][m_LogSegment]
int m_SectorsCnt
Count of used differnt sectors.
template<class TPacType>
void RPCPacManager< TPacType >::init ( const L1RPCConfig rpcconf)
inline

Definition at line 93 of file RPCPacManager.h.

93  {
94  destroy();
95  switch (rpcconf->getPPT()){
96  case 1:
98  break;
99  case 12:
101  break;
102  case 144:
104  break;
105 
106  }
107 
109  m_SectorsCnt = 1;
110  m_SegmentCnt = 1;
111  }
112  else if(m_PACsCnt == _12_PACS_PER_TOWER) {
113  m_SectorsCnt = 1;
114  m_SegmentCnt = 12;
115  }
116  else if(m_PACsCnt == _144_PACS_PER_TOWER) {
117  m_SectorsCnt = 12;
118  m_SegmentCnt = 12;
119  }
120  else if(m_PACsCnt == TB_TESTS) {
121  m_SectorsCnt = 1;
122  m_SegmentCnt = 4;
123  }
124 
125  /*
126  std::vector<std::vector<std::vector<RPCPattern::RPCPatVec> > > patvec;
127  std::vector<std::vector<std::vector<RPCPattern::TQualityVec> > > qualvec;
128  for (int tower = 0; tower < RPCConst::m_TOWER_COUNT; ++tower) {
129  patvec.push_back(std::vector< std::vector< RPCPattern::RPCPatVec > >());
130  qualvec.push_back(std::vector< std::vector< RPCPattern::TQualityVec > >());
131  for (int logSector = 0; logSector < m_SectorsCnt; ++logSector) {
132  patvec[tower].push_back(std::vector< RPCPattern::RPCPatVec >());
133  qualvec[tower].push_back(std::vector< RPCPattern::TQualityVec >());
134  for (int logSegment = 0; logSegment < m_SegmentCnt; ++logSegment) {
135  patvec[tower][logSector].push_back(RPCPattern::RPCPatVec());
136  qualvec[tower][logSector].push_back(RPCPattern::TQualityVec());
137  }
138  }
139  }
140 
141  for (unsigned int ipat=0; ipat<rpcconf->m_pats.size(); ipat++)
142  patvec[rpcconf->m_pats[ipat].getTower()][rpcconf->m_pats[ipat].getLogSector()][rpcconf->m_pats[ipat].getLogSegment()].push_back(rpcconf->m_pats[ipat]);
143  for (unsigned int iqual=0; iqual<rpcconf->m_quals.size(); iqual++)
144  qualvec[rpcconf->m_quals[iqual].m_tower][rpcconf->m_quals[iqual].m_logsector][rpcconf->m_quals[iqual].m_logsegment].push_back(rpcconf->m_quals[iqual]);
145  */
146 
147 
148  for (int tower = 0; tower < RPCConst::m_TOWER_COUNT; tower++) {
149  m_PacTab.push_back(std::vector<std::vector<TPacType*> >());
150  for (int logSector = 0; logSector < m_SectorsCnt; logSector++) {
151  m_PacTab[tower].push_back(std::vector<TPacType*>());
152  for (int logSegment = 0; logSegment < m_SegmentCnt; logSegment++) {
153  /*L1RPCConfig* rpcconf1=new L1RPCConfig();
154  rpcconf1->setPPT(rpcconf->getPPT());
155  for (unsigned int ipat=0; ipat<patvec[tower][logSector][logSegment].size(); ipat++)
156  rpcconf1->m_pats.push_back(patvec[tower][logSector][logSegment][ipat]);
157  for (unsigned int iqual=0; iqual<qualvec[tower][logSector][logSegment].size(); iqual++)
158  rpcconf1->m_quals.push_back(qualvec[tower][logSector][logSegment][iqual]);
159  //TPacType* pac = new TPacType(rpcconf1->m_pats,rpcconf1->m_quals);*/
160  TPacType* pac = new TPacType(rpcconf, tower, logSector, logSegment);
161  m_PacTab[tower][logSector].push_back(pac);
162  }
163  }
164  }
165  };
int m_SegmentCnt
Count of used differnt segments.
int getPPT() const
Definition: L1RPCConfig.h:37
L1RpcPACsCntEnum m_PACsCnt
static const int m_TOWER_COUNT
Only half of the detector.
Definition: RPCConst.h:43
std::vector< std::vector< std::vector< TPacType * > > > m_PacTab
m_PacTab[m_tower][logSector][m_LogSegment]
int m_SectorsCnt
Count of used differnt sectors.

Member Data Documentation

template<class TPacType>
L1RpcPACsCntEnum RPCPacManager< TPacType >::m_PACsCnt
private
template<class TPacType>
std::vector<std::vector<std::vector<TPacType*> > > RPCPacManager< TPacType >::m_PacTab
private

m_PacTab[m_tower][logSector][m_LogSegment]

Definition at line 198 of file RPCPacManager.h.

Referenced by RPCPacManager< RPCPacData >::getPac(), RPCPacManager< RPCPacData >::init(), and RPCPacManager< RPCPacData >::~RPCPacManager().

template<class TPacType>
int RPCPacManager< TPacType >::m_SectorsCnt
private

Count of used differnt sectors.

Definition at line 200 of file RPCPacManager.h.

Referenced by RPCPacManager< RPCPacData >::init().

template<class TPacType>
int RPCPacManager< TPacType >::m_SegmentCnt
private

Count of used differnt segments.

Definition at line 202 of file RPCPacManager.h.

Referenced by RPCPacManager< RPCPacData >::init().