CMS 3D CMS Logo

L1MuBMEtaProcessor.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class: L1MuBMEtaProcessor
4 //
5 // Description: Eta Processor
6 //
7 // An Eta Processor consists of :
8 // a receiver unit,
9 // one Eta Track Finder (ETF) and
10 // one Eta Matching Unit (EMU)
11 //
12 //
13 // Author :
14 // N. Neumeister CERN EP
15 // J. Troconiz UAM Madrid
16 //Modifications:
17 // G.Karathanasis U.Athens
18 //
19 //--------------------------------------------------
20 
21 //-----------------------
22 // This Class's Header --
23 //-----------------------
24 
26 
27 //---------------
28 // C++ Headers --
29 //---------------
30 
31 #include <iostream>
32 #include <iomanip>
33 #include <bitset>
34 
35 //-------------------------------
36 // Collaborating Class Headers --
37 //-------------------------------
38 
49 
53 
54 using namespace std;
55 
56 // --------------------------------
57 // class L1MuBMEtaProcessor
58 //---------------------------------
59 
60 //----------------
61 // Constructors --
62 //----------------
63 
65  m_tf(tf), m_epid(id), m_foundPattern(0), m_tseta(15), m_DTDigiToken(iC.consumes<L1MuDTChambThContainer>(L1MuBMTFConfig::getBMThetaDigiInputTag()))
66  {
67 
68  m_tseta.reserve(15);
69 
70 }
71 
72 
73 //--------------
74 // Destructor --
75 //--------------
76 
78 
79 
80 //--------------
81 // Operations --
82 //--------------
83 
84 //
85 // run Eta Processor
86 //
87 void L1MuBMEtaProcessor::run(int bx, const edm::Event& e, const edm::EventSetup& c) {
88 
89  if ( L1MuBMTFConfig::getEtaTF() ) {
90  receiveData(bx,e,c);
92  }
93 
96 
97  assign();
98 
99 }
100 
101 
102 //
103 // reset Eta Processor
104 //
106 
107  vector<const L1MuBMTrackSegEta*>::iterator iter = m_tseta.begin();
108  while ( iter != m_tseta.end() ) {
109  if ( *iter ) {
110  delete *iter;
111  *iter = nullptr;
112  }
113  iter++;
114  }
115 
116  m_tseta.clear();
117 
118  for ( int i = 0; i < 12; i++ ) {
119  m_eta[i] = 99;
120  m_fine[i] = false;
121  m_pattern[i] = 0;
122  m_address[i] = 0;
123  m_TrackCand[i] = nullptr;
124  m_TracKCand[i] = nullptr;
125  }
126 
127  m_foundPattern.clear();
128 
129  m_mask = true;
130 
131 }
132 
133 
134 //
135 // print track candidates found in Eta Processor
136 //
138 
139  bool empty1 = true;
140  for ( int i = 0; i < 15; i++ ) {
141  empty1 &= ( m_tseta[i] == nullptr || m_tseta[i]->empty() );
142  }
143 
144  bool empty2 = true;
145  for ( int i = 0; i < 12; i++ ) {
146  empty2 &= ( m_address[i] == 0 );
147  }
148 
149  if ( !empty1 || !empty2 ) {
150  cout << "Eta processor " << m_epid << " : " << endl;
151 
152  // print local pattern
153  if ( !empty1 ) {
154  cout << "Local pattern : " << endl;
155  for ( int i = 0; i < 15; i++ ) {
156  if ( (i+5)%5 == 0 ) cout << "station " << m_tseta[i]->station() << " : ";
157  bitset<7> pos(m_tseta[i]->position());
158  bitset<7> qua(m_tseta[i]->quality());
159  for ( int j = 6; j >= 0; j-- ) {
160  cout << pos[j]+qua[j];
161  }
162  cout << " ";
163  if ( (i+1)%5 == 0 ) cout << endl;
164  }
165  cout << "Found patterns :" << endl;
166  vector<int>::const_iterator iter;
167  for ( iter = m_foundPattern.begin(); iter != m_foundPattern.end(); iter++ ) {
169  int qualitycode = p.quality();
170  cout << "ID = " << setw(4) << p.id() << " "
171  << "eta = " << setw(3) << p.eta() << " "
172  << "quality = " << setw(2) << qualitycode << " ("
173  << quality(qualitycode,1) << " "
174  << quality(qualitycode,2) << " "
175  << quality(qualitycode,3) << ")";
176  for ( int i = 0; i < 12; i++ ) {
177  if ( m_pattern[i] == p.id() ) cout << " <--";
178  }
179  cout << endl;
180  }
181  }
182 
183  cout << "Received addresses : " << endl;
184  for ( int i = 0; i < 12; i++ ) cout << setw(3) << m_address[i] << " ";
185  cout << endl;
186 
187  if ( !empty1 ) {
188  cout << "Matched patterns : " << endl;
189  for ( int i = 0; i < 12; i++ ) {
190  if ( m_fine[i] ) {
192  int fineeta = p.eta();
193  int coarseeta = theQualPatternLUT.getCoarseEta(i/2+1,m_address[i]);
194  cout << "Index = " << setw(2) << i << ", "
195  << "address = " << setw(2) << m_address[i] << " --> "
196  << "pattern = " << setw(4) << m_pattern[i] << " "
197  << "eta (coarse) = " << setw(3) << coarseeta << " "
198  << "eta (fine) = " << setw(3) << fineeta << " "
199  << "quality = " << setw(2) << p.quality() << endl;
200  }
201  }
202  }
203 
204  cout << "Eta values and fine bits : " << endl;
205  for ( int i = 0; i < 12; i++ ) cout << setw(3) << m_eta[i] << " ";
206  cout << endl;
207  for ( int i = 0; i < 12; i++ ) cout << setw(3) << m_fine[i] << " ";
208  cout << endl;
209  }
210 
211 }
212 
213 
214 //
215 // receive data ( 15*3 BBMX eta trigger primitives )
216 //
218 
219  //c.get< L1MuDTTFMasksRcd >().get( msks );
220  const L1TMuonBarrelParamsRcd& bmtfParamsRcd = c.get<L1TMuonBarrelParamsRcd>();
221  bmtfParamsRcd.get(bmtfParamsHandle);
222  const L1TMuonBarrelParams& bmtfParams = *bmtfParamsHandle.product();
223  msks = bmtfParams.l1mudttfmasks;
224  theEtaPatternLUT.m_lut = bmtfParams.lutparams_.eta_lut_; //l1mudttfetaplut; // ETF look-up table
225  theQualPatternLUT.m_lut = bmtfParams.lutparams_.qp_lut_; //l1mudttfqualplut; // EMU look-up tables
226 
228 // e.getByLabel(L1MuBMTFConfig::getBMThetaDigiInputTag(),dttrig);
229  e.getByToken(m_DTDigiToken,dttrig);
230 
231  // const int bx_offset = dttrig->correctBX();
232  int bx_offset=0;
233  bx = bx + bx_offset;
234 
235  //
236  // get 5*3 eta track segments
237  //
238  int sector = m_epid;
239  for ( int stat = 1; stat <= 3; stat++ ) {
240  for ( int wheel = -2; wheel <= 2; wheel++ ) {
241  L1MuDTChambThDigi const* tseta = dttrig->chThetaSegm(wheel,stat,sector,bx);
242  bitset<7> pos;
243  bitset<7> qual;
244 
245  int lwheel = wheel+1;
246  if ( wheel < 0 ) lwheel = wheel-1;
247 
248  bool masked = false;
249  if ( stat == 1 ) masked = msks.get_etsoc_chdis_st1(lwheel, sector);
250  if ( stat == 2 ) masked = msks.get_etsoc_chdis_st2(lwheel, sector);
251  if ( stat == 3 ) masked = msks.get_etsoc_chdis_st3(lwheel, sector);
252 
253  if ( !masked ) m_mask = false;
254 
255  if ( tseta && !masked ) {
256 
257  if ( wheel == -2 || wheel == -1 ||
258  ( wheel == 0 && (sector == 0 || sector == 3 || sector == 4 || sector == 7 || sector == 8 || sector == 11) ) ) {
259  for ( int i = 0; i < 7; i++ ) {
260  if ( tseta->position(i) ) pos.set(6-i);
261  if ( tseta->quality(i) ) qual.set(6-i);
262  }
263  } else {
264  for ( int i = 0; i < 7; i++ ) {
265  if ( tseta->position(i) ) pos.set(i);
266  if ( tseta->quality(i) ) qual.set(i);
267  }
268  }
269  }
270 
271  const L1MuBMTrackSegEta* tmpts = new L1MuBMTrackSegEta(wheel,sector,stat,pos.to_ulong(),qual.to_ulong(),bx-bx_offset);
272  m_tseta.push_back(tmpts);
273  }
274  }
275 
276 }
277 
278 
279 //
280 // receive track addresses from 6 Sector Processors
281 //
283 
284  // get track address code of all track segments
285  // 6*2 times 5 bits; valid range [1-22]
286 
287  int sector = m_epid;
288 
289  int i = 0;
290  for ( int wheel = -3; wheel <= 3; wheel++ ) {
291  if ( wheel == 0 ) continue;
292  L1MuBMSecProcId tmpspid(wheel,sector);
293  for ( int number = 0; number < 2; number++ ) {
294  const L1MuBMTrack* cand = m_tf.sp(tmpspid)->track(number);
295  const L1MuBMTrack* canD = m_tf.sp(tmpspid)->tracK(number);
296  if ( cand ) {
297  m_address[i] = cand->address().trackAddressCode();
298  if ( !cand->empty() ) {
299  m_TrackCand[i] = const_cast<L1MuBMTrack*>(cand);
300  m_TracKCand[i] = const_cast<L1MuBMTrack*>(canD);
301  }
302  i++;
303  }
304  }
305  }
306 
307 }
308 
309 
310 //
311 // run Eta Track Finder (ETF)
312 //
314 
315  //c.get< L1MuDTEtaPatternLutRcd >().get( theEtaPatternLUT );
316  const L1TMuonBarrelParamsRcd& bmtfParamsRcd = c.get<L1TMuonBarrelParamsRcd>();
317  bmtfParamsRcd.get(bmtfParamsHandle);
318  const L1TMuonBarrelParams& bmtfParams = *bmtfParamsHandle.product();
319  theEtaPatternLUT.m_lut = bmtfParams.lutparams_.eta_lut_; //l1mudttfetaplut; // ETF look-up table
320 
321  // check if there are any data
322  bool empty = true;
323  for ( int i = 0; i < 15; i++ ) {
324  empty &= m_tseta[i]->empty();
325  }
326  if ( empty ) return;
327 
328  // Pattern comparator:
329  // loop over all patterns and compare with local chamber pattern
330  // result : list of valid pattern IDs ( m_foundPattern )
332  while ( it != theEtaPatternLUT.end() ) {
333 
334  const L1MuDTEtaPattern pattern = (*it).second;
335  int qualitycode = pattern.quality();
336 
337  bool good = true;
338 
339  for ( int station = 0; station < 3; station++) {
340  int q = quality(qualitycode,station+1);
341  int wheel = pattern.wheel(station+1);
342  int bin = pattern.position(station+1);
343  if ( bin == 0 ) continue;
344  bitset<7> pos = m_tseta[wheel+2 + station*5]->position();
345  bitset<7> qual = m_tseta[wheel+2 + station*5]->quality();
346  // compare position
347  good &= pos.test(bin-1);
348  // compare quality
349  if ( q == 2 ) good &= qual.test(bin-1);
350  }
351 
352  if ( good ) m_foundPattern.push_back(pattern.id());
353 
354  it++;
355 
356  }
357 
358 }
359 
360 
361 //
362 // run Eta Matching Unit (EMU)
363 //
365 
366  //c.get< L1MuDTQualPatternLutRcd >().get( theQualPatternLUT );
367  const L1TMuonBarrelParamsRcd& bmtfParamsRcd = c.get<L1TMuonBarrelParamsRcd>();
368  bmtfParamsRcd.get(bmtfParamsHandle);
369  const L1TMuonBarrelParams& bmtfParams = *bmtfParamsHandle.product();
370  theQualPatternLUT.m_lut = bmtfParams.lutparams_.qp_lut_; //l1mudttfqualplut; // EMU look-up tables
371 
372  // loop over all addresses
373  for ( int i = 0; i < 12; i++ ) {
374 
375  int adr = m_address[i];
376  if ( adr == 0 ) continue;
377  int sp = i/2 + 1; //sector processor [1,6]
378 
379  // assign coarse eta value
380  if ( !m_mask ) m_eta[i] = theQualPatternLUT.getCoarseEta(sp,adr);
381 
382 
383  if ( m_foundPattern.empty() ) continue;
384 
385  // get list of qualified patterns ordered by quality
386  // and compare with found patterns
387  const vector<short>& qualifiedPatterns = theQualPatternLUT.getQualifiedPatterns(sp,adr);
388  vector<short>::const_iterator iter;
389  vector<int>::const_iterator f_iter;
390  for ( iter = qualifiedPatterns.begin(); iter != qualifiedPatterns.end(); iter++ ) {
391  f_iter = find(m_foundPattern.begin(),m_foundPattern.end(),(*iter));
392  // found
393  if ( f_iter != m_foundPattern.end() ) {
395  // assign fine eta value
396  m_fine[i] = true;
397  m_eta[i] = p.eta(); // improved eta
398 ;
399  m_pattern[i] = (*f_iter);
400  break;
401  }
402  }
403 
404  }
405 
406  // if both tracks from one sector processor deliver the same track address
407  // both tracks get only a coarse eta value!
408 
409  // loop over sector processors
410  for ( int i = 0; i < 6; i++ ) {
411  int idx1 = 2*i;
412  int idx2 = 2*i+1;
413  int adr1 = m_address[idx1];
414  int adr2 = m_address[idx2];
415  if ( adr1 == 0 || adr2 == 0 ) continue;
416  if ( adr1 == adr2 && !m_mask ) {
417  // both tracks get coarse (default) eta value
418  m_eta[idx1] = theQualPatternLUT.getCoarseEta(i+1,adr1);
419  m_pattern[idx1] = 0;
420  m_fine[idx1] = false;
421  m_eta[idx2] = theQualPatternLUT.getCoarseEta(i+1,adr2);
422 
423  m_pattern[idx2] = 0;
424  m_fine[idx2] = false;
425  }
426  }
427 
428 }
429 
430 
431 //
432 // assign values to track candidates
433 //
435 
436  for ( int i = 0; i < 12; i++ ) {
437  if ( m_TrackCand[i] ) {
438  if ( m_eta[i] != 99 ) {
439  m_TrackCand[i]->setEta(m_eta[i]);
440  m_TracKCand[i]->setEta(m_eta[i]);
441  }
442  else {
443  // if ( i/2 != 2 ) cerr << "L1MuBMEtaProcessor: assign invalid eta" << " " << m_address[i] << endl;
444  }
445  if ( m_fine[i] ) {
448  // find all contributing track segments
450  vector<const L1MuBMTrackSegEta*> TSeta;
451  const L1MuBMTrackSegEta* ts = nullptr;
452  for ( int stat = 0; stat < 3; stat++ ) {
453  int wh = p.wheel(stat+1);
454  int pos = p.position(stat+1);
455  if ( pos == 0 ) continue;
456  ts = m_tseta[wh+2 + stat*5];
457  TSeta.push_back(ts);
458  }
459  m_TrackCand[i]->setTSeta(TSeta);
460  m_TracKCand[i]->setTSeta(TSeta);
461  }
462  }
463  }
464 
465 }
466 
467 
468 //
469 // get quality: id [0,26], stat [1,3]
470 //
472 
473  // quality codes as defined in CMS Note 2001/027
474  // This QualityPatterns are used to have a defined Quality-Identifier for
475  // all possible found tracks.
476  // Therefore three integer numbers ( Station 1, 2, 3 from left to right )
477  // can have numbers like 0, 1 or 2
478  // 0 ... no hit is given
479  // 1 ... a LTRG is given
480  // 2 ... a HTRG is given
481 
482  const int qualcode[27][3] = { {0,0,0},{1,0,0},{0,1,0},{0,0,1},{2,0,0},
483  {0,2,0},{0,0,2},{1,1,0},{1,0,1},{0,1,1},
484  {2,1,0},{1,2,0},{2,0,1},{1,0,2},{0,2,1},
485  {0,1,2},{2,2,0},{2,0,2},{0,2,2},{1,1,1},
486  {2,1,1},{1,2,1},{1,1,2},{2,2,1},{2,1,2},
487  {1,2,2},{2,2,2} };
488 
489  return qualcode[id][stat-1];
490 
491 }
edm::ESHandle< L1TMuonBarrelParams > bmtfParamsHandle
const L1MuBMTrackFinder & m_tf
int trackAddressCode() const
get track address code (for eta track finder)
int quality() const
return quality
const std::vector< short > & getQualifiedPatterns(int sp, int adr) const
get list of qualified patterns for a given sector processor [1-6] and address [1-22] ...
int getCoarseEta(int sp, int adr) const
get coarse eta value for a given sector processor [1-6] and address [1-22]
bool get_etsoc_chdis_st3(int wh, int sc) const
virtual void run(int bx, const edm::Event &e, const edm::EventSetup &c)
run the Eta Processor
L1MuBMTrack * m_TrackCand[12]
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:508
void receiveData(int bx, const edm::Event &e, const edm::EventSetup &c)
receive data (eta trigger primitives)
L1MuBMTrack * m_TracKCand[12]
ETFLut_iter begin() const
return iterator which points to the first entry of the LUT
L1MuBMAddressArray address() const
get address-array for this muon candidate
Definition: L1MuBMTrack.h:102
L1MuDTEtaPattern getPattern(int id) const
get pattern with a given ID
int position(int station) const
return position in station [1,3]
virtual void reset()
reset the Eta Processor
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
int quality(const int i) const
L1MuBMTEtaPatternLut theEtaPatternLUT
int id() const
return id
int position(const int i) const
L1MuBMTrack * tracK(int id) const
return pointer to muon candidate, index [0,1]
int eta() const
return eta
void setTSeta(const std::vector< const L1MuBMTrackSegEta * > &tsList)
set eta track segments used to form the muon candidate
Definition: L1MuBMTrack.cc:186
void runEtaMatchingUnit(const edm::EventSetup &c)
run Eta Matching Unit (EMU)
L1MuDTTFMasks l1mudttfmasks
void get(HolderT &iHolder) const
const L1MuBMSectorProcessor * sp(const L1MuBMSecProcId &) const
get a pointer to a Sector Processor
void print() const
print muon candidates found by the Eta Processor
std::vector< int > m_foundPattern
bool get_etsoc_chdis_st2(int wh, int sc) const
L1MuBMTrack * track(int id) const
return pointer to muon candidate, index [0,1]
bin
set the eta bin as selection string.
L1MuBMEtaProcessor(const L1MuBMTrackFinder &, int id, edm::ConsumesCollector &&iC)
constructor
int id() const
return Eta Processor identifier (0-11)
void setFineEtaBit()
set fine eta bit
Definition: L1MuBMTrack.h:153
edm::EDGetTokenT< L1MuDTChambThContainer > m_DTDigiToken
void assign()
assign eta and etaFineBit
void runEtaTrackFinder(const edm::EventSetup &c)
run Eta Track Finder (ETF)
const T & get() const
Definition: EventSetup.h:55
L1MuDTChambThDigi const * chThetaSegm(int wheel, int stat, int sect, int bx) const
static int quality(int id, int stat)
get quality code; id [0,26], stat [1,3]
void receiveAddresses()
receive addresses (from 6 Sector Processors)
void setEta(int eta)
set eta-code of muon candidate
Definition: L1MuBMTrack.cc:118
static int position[264][3]
Definition: ReadPGInfo.cc:509
int wheel(int station) const
return wheel number in station [1,3]
std::vector< const L1MuBMTrackSegEta * > m_tseta
virtual ~L1MuBMEtaProcessor()
destructor
bool get_etsoc_chdis_st1(int wh, int sc) const
LUT::const_iterator ETFLut_iter
bool empty() const
is it an empty muon candidate?
Definition: L1MuBMTrack.h:96
static bool getEtaTF()
T const * product() const
Definition: ESHandle.h:86
L1MuBMTQualPatternLut theQualPatternLUT
ETFLut_iter end() const
return iterator which points to the one-past-last entry of the LUT