CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCTrigger.cc
Go to the documentation of this file.
2 
3 // Configuration via eventsetup:
6 
9 
12 
15 
16 
17 
18 //#define ML_DEBUG
19 
20 
21 
23 
24 
26  m_trigConfig(0),m_pacTrigger(0)
27 {
28  produces<std::vector<L1MuRegionalCand> >("RPCb");
29  produces<std::vector<L1MuRegionalCand> >("RPCf");
30 
31  produces<std::vector<RPCDigiL1Link> >("RPCb");
32  produces<std::vector<RPCDigiL1Link> >("RPCf");
33 
34  m_firstRun = true;
35  m_cacheID = 0;
36 
37 
38  m_triggerDebug = iConfig.getUntrackedParameter<int>("RPCTriggerDebug",0);
39 
40  // 0 - no debug
41  // 1 - dump to xml
42  if ( m_triggerDebug != 1){
43  m_triggerDebug = 0;
44  }
45 
46 
47  m_label = iConfig.getParameter<std::string>("label");
48 }
49 
50 
51 
52 
54  if (m_pacTrigger != 0) delete m_pacTrigger;
55  if (m_trigConfig != 0) delete m_trigConfig;
56 }
57 
58 
59 
60 void
62 {
63 
64  //static int ev=1;
65  //std::cout << "----------------------------------- " << ev++ << std::endl;
66  if ( m_triggerDebug == 1) MuonsGrabber::Instance().startNewEvent(iEvent.id().event(), iEvent.bunchCrossing());
67 
68  if (m_firstRun){
69 
70  m_cacheID = iSetup.get<L1RPCConfigRcd>().cacheIdentifier();
71  m_firstRun = false;
73  iSetup.get<L1RPCConfigRcd>().get(conf);
74  const L1RPCConfig *rpcconf = conf.product();
75 
76 
77  m_pacManager.init(rpcconf);
82 
83 
84  }
85 
86  if (m_cacheID != iSetup.get<L1RPCConfigRcd>().cacheIdentifier()) {
87 
88  //std::cout << " New pats: " << iSetup.get<L1RPCConfigRcd>().cacheIdentifier() << std::endl ;
89  m_cacheID = iSetup.get<L1RPCConfigRcd>().cacheIdentifier();
90 
92  iSetup.get<L1RPCConfigRcd>().get(conf);
93  const L1RPCConfig *rpcconf = conf.product();
94 
95  m_pacManager.init(rpcconf);
96  delete m_trigConfig;
99 
100  delete m_pacTrigger;
102 
104 
105 
106  }
107 
108 
109 
111 // iEvent.getByType(rpcDigis);
112  //iEvent.getByLabel("muonRPCDigis",rpcDigis);
113  iEvent.getByLabel(m_label, rpcDigis);
114 
115  std::auto_ptr<std::vector<L1MuRegionalCand> > candBarell(new std::vector<L1MuRegionalCand>);
116  std::auto_ptr<std::vector<L1MuRegionalCand> > candForward(new std::vector<L1MuRegionalCand>);
117  if (!rpcDigis.isValid())
118  {
119  LogDebug("RPCTrigger")
120  << "\nWarning: RPCDigiCollection with input tag " << m_label
121  << "\nrequested in configuration, but not found in the event. Emulator will produce empty collection \n ";
122 
123  iEvent.put(candBarell, "RPCb");
124  iEvent.put(candForward, "RPCf");
125 
126  return;
127  }
128 
129 
130  if (rpcDigis->begin() == rpcDigis->end() )
131  {
132  LogDebug("RPCTrigger")
133  << "\nWarning: RPCDigiCollection with input tag " << m_label
134  << "\n seems to be empty for this event. Emulator will run on empty collection ";
135 
136  }
137 
138 
139 
140  std::auto_ptr<std::vector<RPCDigiL1Link> > brlLinks(new std::vector<RPCDigiL1Link>);
141  std::auto_ptr<std::vector<RPCDigiL1Link> > fwdLinks(new std::vector<RPCDigiL1Link>);
142 
143  for (int iBx = -1; iBx < 2; ++ iBx) {
144 
145  L1RpcLogConesVec ActiveCones;
146 
148  iSetup.get<L1RPCConeBuilderRcd>().get(coneBuilder);
149 
150  edm::ESHandle<L1RPCConeDefinition> l1RPCConeDefinition;
151  iSetup.get<L1RPCConeDefinitionRcd>().get(l1RPCConeDefinition);
152 
154  iSetup.get<L1RPCHwConfigRcd>().get(hwConfig);
155 
157  iSetup.get<L1RPCBxOrConfigRcd>().get(bxOrConfig);
158 
159 
160 
161  ActiveCones = m_theLinksystemFromES.getConesFromES(rpcDigis, coneBuilder, l1RPCConeDefinition, bxOrConfig, hwConfig, iBx);
162 
164  iSetup.get<L1RPCHsbConfigRcd>().get(hsbConfig);
165 
166  L1RpcTBMuonsVec2 finalMuons = m_pacTrigger->runEvent(ActiveCones, hsbConfig);
167 
168  //int maxFiredPlanes = 0;
169 
170  /*
171  for (unsigned int i=0;i<ActiveCones.size();i++){
172  int fpCnt = ActiveCones[i].getFiredPlanesCnt();
173  if (fpCnt > maxFiredPlanes)
174  maxFiredPlanes = fpCnt;
175  }
176 
177  // Fill out the products
178  // finalMuons[0]=barell, finalMuons[1]=endcap
179  LogDebug("RPCTrigger") << "---Filling candindates in new event--- "
180  << maxFiredPlanes << std::endl;
181 <<<<<<< RPCTrigger.cc
182  */
183 
184 // std::vector<L1MuRegionalCand> RPCb = giveFinallCandindates(finalMuons[0],1, iBx);
185 // std::vector<L1MuRegionalCand> RPCf = giveFinallCandindates(finalMuons[1],3, iBx);
186  std::vector<RPCDigiL1Link> dlBrl;
187  std::vector<RPCDigiL1Link> dlFwd;
188  std::vector<L1MuRegionalCand> RPCb = giveFinallCandindates(finalMuons[0],1, iBx, rpcDigis, dlBrl);
189  std::vector<L1MuRegionalCand> RPCf = giveFinallCandindates(finalMuons[1],3, iBx, rpcDigis, dlFwd);
190 
191 
192  brlLinks->insert(brlLinks->end(), dlBrl.begin(), dlBrl.end() );
193  fwdLinks->insert(fwdLinks->end(), dlFwd.begin(), dlFwd.end() );
194 
195  candBarell->insert(candBarell->end(), RPCb.begin(), RPCb.end());
196  candForward->insert(candForward->end(), RPCf.begin(), RPCf.end());
197 
199  }
200 
201  iEvent.put(fwdLinks, "RPCf");
202  iEvent.put(brlLinks, "RPCb");
203  iEvent.put(candBarell, "RPCb");
204  iEvent.put(candForward, "RPCf");
205 
206 }
208 
215 std::vector<L1MuRegionalCand> RPCTrigger::giveFinallCandindates(L1RpcTBMuonsVec finalMuons, int type, int bx,
217  edm::Handle<RPCDigiCollection> rpcDigis, std::vector<RPCDigiL1Link> & retRPCDigiLink)
218 {
219 
220  std::vector<L1MuRegionalCand> RPCCand;
221 
222  for(unsigned int iMu = 0; iMu < finalMuons.size(); iMu++)
223  {
224 
225  if (finalMuons[iMu].getPtCode()==0){
226  continue;
227  }
228 
229  RPCDigiL1Link newDigiLink;
230 
231  //std::cout << "######################################## " << std::endl;
232  //std::cout << finalMuons[iMu].getPhiAddr() << " " << finalMuons[iMu].getEtaAddr() << std::endl;
233  RPCMuon::TDigiLinkVec digiIVec = finalMuons[iMu].getDigiIdxVec();
234  // Here the iteration has to be the same as in
235  short int digiIndex = 0;
237  for (detUnitIt=rpcDigis->begin();
238  detUnitIt!=rpcDigis->end();
239  ++detUnitIt)
240  {
241 
242  const RPCDetId& id = (*detUnitIt).first;
243  uint32_t rawId = id.rawId();
244  const RPCDigiCollection::Range& range = (*detUnitIt).second;
245 
246 
247  for (RPCDigiCollection::const_iterator digiIt = range.first;
248  digiIt!=range.second;
249  ++digiIt)
250  {
251  ++digiIndex;
252 
253  RPCMuon::TDigiLinkVec::iterator it = digiIVec.begin();
254  for(;it!=digiIVec.end();++it) {
255  if (digiIndex==it->m_digiIdx) {
256  newDigiLink.setLink(it->m_layer+1, rawId, digiIt->strip(), digiIt->bx() );
257  //std::cout << type << " " << iMu << " layer: " << it->m_layer << " index " << it->m_digiIdx << std::endl;
258  //std::cout << " " << id << " " << " |bx " << digiIt->bx() << " strip " << digiIt->strip() << std::endl;
259  }
260  }
261  }
262  }
263  retRPCDigiLink.push_back(newDigiLink);
264 
265 
266  L1MuRegionalCand l1Cand;
267 
268  l1Cand.setBx(bx);
269 
270 
271  l1Cand.setQualityPacked(finalMuons[iMu].getQuality());
272  l1Cand.setPtPacked(finalMuons[iMu].getPtCode());
273 
274  l1Cand.setType(type);
275 
276  int charge=finalMuons[iMu].getSign();
277 
278  if (charge == 0) // negative
279  l1Cand.setChargePacked(1);
280  else
281  l1Cand.setChargePacked(0);
282 
283  //RPCConst::l1RpcConeCrdnts cone = finalMuons[iMu].getConeCrdnts();
284 
285  /*
286  int pac = cone.m_LogSector*12+cone.m_LogSegment;
287  const float pi = 3.14159265;
288  const float offset = 5*(2*pi/360); // redefinition! Defined also in RPCRingFromRolls::phiMapCompare
289  float phi = 2*pi*pac/144-offset;
290  if (phi<0)
291  phi+=2*pi;
292 
293  l1Cand.setPhiValue(phi);
294  */
295 
296  //Note: pac numbering begins at 5 deg and goes from 1 to 144.
297  // we want phi values from 0 to 2.5 deg to be phiPacked=0
298  // max phiPacked value is 143 (see CMS IN 2004-022)
299  //int phiPacked = (finalMuons[iMu].getPhiAddr()+2)%144;
300  int phiPacked = finalMuons[iMu].getPhiAddr();
301  l1Cand.setPhiPacked(phiPacked);
302 /*
303  float eta = RPCConst::etaFromTowerNum(cone.m_Tower);
304  l1Cand.setEtaValue(eta);
305 */
306  //Note: etaAddr is packed in special way: see CMS IN 2004-022
307  signed short etaAddr = finalMuons[iMu].getEtaAddr(); //
308 // signed short etaAddr = finalMuons[iMu].getEtaAddr()-16; // -16..16
309 // bool etaNegative = false;
310 // if (etaAddr < 0){
311 // etaNegative = true;
312 // etaAddr = ~(-etaAddr)+1; // convert to negative :)
313 // }
314 
315 // etaAddr &= 63; // 6 bits only
316 
317  l1Cand.setEtaPacked(etaAddr);
318  l1Cand.setChargeValid(true);
319 
320  /*
321  std::cout<< std::endl << "RBMuon::" << finalMuons[iMu].getEtaAddr() << " "
322  << finalMuons[iMu].getPhiAddr() << std::endl ;
323  std::cout<< "cand " << l1Cand.eta_packed() << " "
324  << l1Cand.phi_packed() << std::endl ;
325  */
326 
327  RPCCand.push_back(l1Cand);
328 
329  LogDebug("RPCTrigger") << "Found muonf of pt "
330  << finalMuons[iMu].getPtCode()
331  << " bx " << l1Cand.bx()
332  << " L1Charge " << l1Cand.charge_packed()
333  << " ql " << l1Cand.quality()
334  << " fp " << finalMuons[iMu].getFiredPlanes()
335  << " b/f " << l1Cand.type_idx()
336  << " phi " << l1Cand.phi_packed()
337  << " eta " << l1Cand.eta_packed()
338  //<< " eta l1 " << l1Cand.etaValue() // will drop out soon
339  << " killed " << finalMuons[iMu].wasKilled();
340 
341 
342  }
343 
344  return RPCCand;
345 }
346 
#define LogDebug(id)
RPCBasicTrigConfig * m_trigConfig
Definition: RPCTrigger.h:63
type
Definition: HCALResponse.h:22
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:44
unsigned long long cacheIdentifier() const
T getUntrackedParameter(std::string const &, T const &) const
bool m_firstRun
Definition: RPCTrigger.h:67
unsigned charge_packed() const
return charge packed as in hardware (0=pos, 1=neg)
L1RpcLogConesVec getConesFromES(edm::Handle< RPCDigiCollection > rpcDigis, edm::ESHandle< L1RPCConeBuilder > coneBuilder, edm::ESHandle< L1RPCConeDefinition > coneDef, edm::ESHandle< L1RPCBxOrConfig > bxOrDef, edm::ESHandle< L1RPCHwConfig > hwConfig, int bx)
int bunchCrossing() const
Definition: EventBase.h:62
virtual void produce(edm::Event &, const edm::EventSetup &)
Definition: RPCTrigger.cc:61
std::string m_label
Definition: RPCTrigger.h:74
double charge(const std::vector< uint8_t > &Ampls)
std::vector< L1MuRegionalCand > giveFinallCandindates(L1RpcTBMuonsVec finalMuons, int type, int bx, edm::Handle< RPCDigiCollection > rpcDigis, std::vector< RPCDigiL1Link > &retRPCDigiLink)
Returns vector of L1MuRegionalCand (input of L1GMT)
Definition: RPCTrigger.cc:216
uint32_t rawId() const
get the raw id
Definition: DetId.h:45
static MuonsGrabber & Instance()
Definition: MuonsGrabber.cc:59
void setRPCBasicTrigConfig(RPCBasicTrigConfig *c)
Definition: MuonsGrabber.h:61
void setBx(int bx)
Set Bunch Crossing.
int iEvent
Definition: GenABIO.cc:243
std::vector< RPCTBMuon > L1RpcTBMuonsVec
Definition: RPCTBMuon.h:206
void startNewEvent(int event, int bx)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
RPCPacManager< RPCPacData > m_pacManager
Definition: RPCTrigger.h:61
std::vector< L1RpcTBMuonsVec > L1RpcTBMuonsVec2
Definition: RPCTBMuon.h:207
unsigned eta_packed() const
return eta packed as in hardware
void setType(unsigned type)
Set Type: 0 DT, 1 bRPC, 2 CSC, 3 fRPC.
bool isValid() const
Definition: HandleBase.h:76
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:355
tuple conf
Definition: dbtoconf.py:185
RPCConeBuilderFromES m_theLinksystemFromES
Definition: RPCTrigger.h:59
void setChargePacked(unsigned ch)
Set Charge (0=pos, 1=neg)
std::vector< TDigiLink > TDigiLinkVec
Definition: RPCMuon.h:77
void setPtPacked(unsigned pt)
Set Pt: 0..31.
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
std::vector< DigiType >::const_iterator const_iterator
unsigned int quality() const
return quality
RPCTrigger(const edm::ParameterSet &)
Definition: RPCTrigger.cc:25
void setPhiPacked(unsigned phi)
Set Phi: 0..143.
void init(std::string patFilesDirectory, L1RpcPACsCntEnum _PACsCnt)
Definition: RPCPacManager.h:59
void setDebugLevel(int debgLevel)
int bx() const
return bunch crossing identifier
edm::EventID id() const
Definition: EventBase.h:56
void setQualityPacked(unsigned qual)
Set Quality: 0..7.
void setEtaPacked(unsigned eta)
Set Eta: 6-bit code.
int m_triggerDebug
Definition: RPCTrigger.h:68
std::pair< const_iterator, const_iterator > Range
void setChargeValid(bool valid)
Set Charge Valid.
RPCPacTrigger * m_pacTrigger
Definition: RPCTrigger.h:65
L1RpcTBMuonsVec2 runEvent(const L1RpcLogConesVec &logConesVec, edm::ESHandle< L1RPCHsbConfig > hsbConf)
void writeDataForRelativeBX(int bx)
unsigned type_idx() const
return type: 0 DT, 1 bRPC, 2 CSC, 3 fRPC
std::vector< RPCLogCone > L1RpcLogConesVec
Definition: RPCLogCone.h:126
unsigned phi_packed() const
return phi packed as in hardware
unsigned long long m_cacheID
Definition: RPCTrigger.h:69