CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCTriggerBoard.cc
Go to the documentation of this file.
1 /*******************************************************************************
2 * *
3 * Karol Bunkowski *
4 * Warsaw University 2004 *
5 * *
6 *******************************************************************************/
10 
11 #include<sstream>
12 //---------------------------------------------------------------------------
14  int tbNum, int tcNum)
15 {
16 
17  m_TriggerConfig = triggerConfig;
18  m_TBNumber = tbNum;
19 
20  int towerMin=-16;
21  int towerMax=-16;
22 
23  // Calculate tower boundaries for this TB
24  for (int i=0;i <= tbNum; i++){ // Trigger Boards are numbered from 0 to 8
25  towerMin=towerMax;
26  towerMax+=m_TriggerConfig->getTowsCntOnTB(i);
27  }
28  towerMax--;
29 
30  for (int tower = towerMin; tower <= towerMax; tower++){
31  for (int logSegment = 0; logSegment < 12; logSegment++){ // One logSegment = one PAC
32  //m_pacs[cone.getTower()][cone.getLogSegment()]
34  coneCrds.m_Tower=tower;
35  coneCrds.m_LogSector=tcNum;
36  coneCrds.m_LogSegment=logSegment;
37 
38  const RPCPacData *pacData = m_TriggerConfig->getPac(coneCrds);
39 
40  // one trigger crate covers one logsector:
41  //RPCPac *pac = new RPCPac(pacData, tower, tcNum, logSegment);
42  boost::shared_ptr< RPCPac > pac (new RPCPac(pacData, tower, tcNum, logSegment) );
43 
44  m_pacs[tower].push_back(pac);
45 
46  }
47  }
48 
49 
50 }
51 //---------------------------------------------------------------------------
53 
54  //RPCTBMuon tbMuon(m_TriggerConfig->getPac(cone.getConeCrdnts())->run(cone) );
55  if(m_pacs.find(cone.getTower())==m_pacs.end()){
56  std::stringstream s;
57  s << "RPCTriggerBoard::runCone() wrong tower: " << cone.getTower() << " in TB=" << m_TBNumber;
58  throw RPCException(s.str());
59  }
60 
61  RPCTBMuon tbMuon(m_pacs[cone.getTower()][cone.getLogSegment()]->run(cone));
62  //Reference: RPCTBMuon(int ptCode, int quality, int sign, int patternNum, unsigned short firedPlanes);
63 
64  //RPCPacMuon pmuon = m_pacs[cone.getTower()][cone.getLogSegment()]->run(cone);
65  //RPCTBMuon tbMuon(pmuon.getPtCode(), pmuon.getQuality(), pmuon.getSign(), pmuon.getPatternNum(), pmuon.getFiredPlanes());
66 
67 
68  if(tbMuon.getCode() > 0) {
69  m_PacsMuonsVec.push_back(tbMuon);
70  if (m_TriggerConfig->getDebugLevel()!=0){
71 #ifndef _STAND_ALONE
72  // LogDebug("RPCHwDebug") << "GB 0 -1 "
73  // << tbMuon.printDebugInfo(m_TriggerConfig->getDebugLevel());
74  MuonsGrabber::Instance().addMuon(tbMuon, 0, -1, -1, -1);
75 #else
76  std::cout << "GB 0 -1 "
77  << tbMuon.printDebugInfo(m_TriggerConfig->getDebugLevel())
78  << std::endl;
79 #endif //_STAND_ALONE
80  }
81  return true;
82  }
83  else
84  return false;
85 
86 }
87 //---------------------------------------------------------------------------
88 L1RpcTBMuonsVec RPCTriggerBoard::runTBGB() { //4 muons or empty vector
89  if(m_PacsMuonsVec.size() == 0)
90  return L1RpcTBMuonsVec();
91 
93  for(unsigned int iMu = 0; iMu < m_PacsMuonsVec.size(); iMu++) {
94  int tbTower = m_TriggerConfig->getTowerNumOnTb(m_PacsMuonsVec[iMu].getConeCrdnts());
95 
96  if(gbMuons[tbTower].size() == 0)
97  gbMuons[tbTower].assign(RPCConst::m_SEGMENTS_IN_SECTOR_CNT, RPCTBMuon());
98 
99  gbMuons[tbTower][m_PacsMuonsVec[iMu].getLogSegment()] = m_PacsMuonsVec[iMu];
100  }
101 
102  m_PacsMuonsVec.clear();
103  return m_TBGhostBuster.run(gbMuons);
104 }
105 
int i
Definition: DBlmapReader.cc:9
bool runCone(const RPCLogCone &cone)
The coordinates of Logic Cone: m_Tower, m_LogSector, m_LogSegment.
Definition: RPCConst.h:119
L1RpcTBMuonsVec runTBGB()
int getLogSegment() const
Definition: RPCLogCone.cc:192
static MuonsGrabber & Instance()
Definition: MuonsGrabber.cc:59
int getTower() const
Definition: RPCLogCone.cc:188
static const unsigned int m_SEGMENTS_IN_SECTOR_CNT
m_Number of Logic Segments in one Logic Sector, defines also the number of Logic Cones for one Logic ...
Definition: RPCConst.h:159
virtual const RPCPacData * getPac(const RPCConst::l1RpcConeCrdnts &coneCrdnts) const =0
Returns pointer to m_PAC that should run given LogCone.
RPCTriggerBoard(RPCTriggerConfiguration *triggerConfig, int tbNum, int tcNum)
std::vector< RPCTBMuon > L1RpcTBMuonsVec
Definition: RPCTBMuon.h:206
RPCTBGhostBuster m_TBGhostBuster
std::vector< L1RpcTBMuonsVec > L1RpcTBMuonsVec2
Definition: RPCTBMuon.h:207
L1RpcTBMuonsVec run(L1RpcTBMuonsVec2 &pacMuonsVec2) const
Definition: RPCPac.h:14
static const unsigned int m_TOWERS_ON_TB_CNT
Max number of towers covered by one Trugger Board.
Definition: RPCConst.h:158
int m_TBNumber
0...8 , 0 = tbn4, m_tower -16..-13, 4 = tb0
RPCTriggerConfiguration * m_TriggerConfig
virtual int getTowsCntOnTB(int tbNum)=0
Returns the count of Towers, that are covered by given TB .
virtual int getTowerNumOnTb(const RPCConst::l1RpcConeCrdnts &coneCrdnts)=0
void addMuon(RPCTBMuon &mu, int lvl, int region, int hs, int index)
tuple cout
Definition: gather_cfg.py:121
tuple size
Write out results.
L1RpcTBMuonsVec m_PacsMuonsVec