CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1MuDTEUX.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class: L1MuDTEUX
4 //
5 // Description: Extrapolator
6 //
7 //
8 //
9 // Author :
10 // N. Neumeister CERN EP
11 //
12 //--------------------------------------------------
13 
14 //-----------------------
15 // This Class's Header --
16 //-----------------------
17 
19 
20 //---------------
21 // C++ Headers --
22 //---------------
23 
24 #include <iostream>
25 
26 //-------------------------------
27 // Collaborating Class Headers --
28 //-------------------------------
29 
39 
40 using namespace std;
41 
42 // --------------------------------
43 // class L1MuDTEUX
44 //---------------------------------
45 
46 //----------------
47 // Constructors --
48 //----------------
49 
50 L1MuDTEUX::L1MuDTEUX(const L1MuDTSectorProcessor& sp, const L1MuDTSEU& seu, int id) :
51  m_sp(sp), m_seu(seu), m_id(id),
52  m_result(false), m_quality(0), m_address(15),
53  m_start(0), m_target(0),
54  theExtFilter(L1MuDTTFConfig::getExtTSFilter()),
55  nbit_phi(L1MuDTTFConfig::getNbitsExtPhi()),
56  nbit_phib(L1MuDTTFConfig::getNbitsExtPhib())
57 {
58 }
59 
60 
61 //--------------
62 // Destructor --
63 //--------------
64 
66 
67 
68 //--------------
69 // Operations --
70 //--------------
71 
72 //
73 // Equal operator
74 //
75 bool L1MuDTEUX::operator==(const L1MuDTEUX& eux) const {
76 
77  if ( m_id != eux.id() ) return false;
78  if ( m_result != eux.result() ) return false;
79  if ( m_quality != eux.quality() ) return false;
80  if ( m_address != eux.address() ) return false;
81  return true;
82 
83 }
84 
85 
86 //
87 // run EUX
88 //
90 
91  c.get< L1MuDTExtLutRcd >().get( theExtLUTs );
92  c.get< L1MuDTTFParametersRcd >().get( pars );
93 
94  if ( L1MuDTTFConfig::Debug(4) ) cout << "Run EUX " << m_id << endl;
95  if ( L1MuDTTFConfig::Debug(4) ) cout << "start : " << *m_start << endl;
96  if ( L1MuDTTFConfig::Debug(4) ) cout << "target : " << *m_target << endl;
97 
98  if ( m_start == 0 || m_target == 0 ) {
99  if ( L1MuDTTFConfig::Debug(4) ) cout << "Error: EUX has no data loaded" << endl;
100  return;
101  }
102 
103  // start sector
104  int sector_st = m_start->sector();
105 
106  // target sector
107  int sector_ta = m_target->sector();
108 
109  // get index of look-up table
110  int lut_idx = m_seu.ext();
111  if ( abs(m_target->wheel()) == 3 ) {
112 
113  switch ( m_seu.ext() ) {
114  case EX13 : { lut_idx = EX15; break; }
115  case EX23 : { lut_idx = EX25; break; }
116  default : { lut_idx = m_seu.ext(); break; }
117  }
118 
119  }
120 
121  if ( L1MuDTTFConfig::Debug(5) ) cout << "EUX : using look-up table : "
122  << static_cast<Extrapolation>(lut_idx)
123  << endl;
124 
125  // Extrapolation TS quality filter
126  int qcut = 0;
127  if ( m_seu.ext() == EX12 ) qcut = pars->get_soc_qcut_st1(m_sp.id().wheel(), m_sp.id().sector());
128  if ( m_seu.ext() == EX13 ) qcut = pars->get_soc_qcut_st1(m_sp.id().wheel(), m_sp.id().sector());
129  if ( m_seu.ext() == EX14 ) qcut = pars->get_soc_qcut_st1(m_sp.id().wheel(), m_sp.id().sector());
130  if ( m_seu.ext() == EX21 ) qcut = pars->get_soc_qcut_st2(m_sp.id().wheel(), m_sp.id().sector());
131  if ( m_seu.ext() == EX23 ) qcut = pars->get_soc_qcut_st2(m_sp.id().wheel(), m_sp.id().sector());
132  if ( m_seu.ext() == EX24 ) qcut = pars->get_soc_qcut_st2(m_sp.id().wheel(), m_sp.id().sector());
133  if ( m_seu.ext() == EX34 ) qcut = pars->get_soc_qcut_st4(m_sp.id().wheel(), m_sp.id().sector());
134 
135  if ( m_start->quality() < qcut ) return;
136 
137  // calculate bit shift
138  int sh_phi = 12 - nbit_phi;
139  int sh_phib = 10 - nbit_phib;
140 
141  int phi_target = m_target->phi() >> sh_phi;
142  int phi_start = m_start->phi() >> sh_phi;
143  int phib_start = (m_start->phib() >> sh_phib) << sh_phib;
144  if ( phib_start < 0 ) phib_start += (1 << sh_phib) -1;
145 
146  // compute difference in phi
147  int diff = phi_target - phi_start;
148 
149  // get low and high values from look-up table
150  // and add offset (30 degrees ) for extrapolation to adjacent sector
151  int offset = -2144 >> sh_phi;
152  offset *= sec_mod(sector_ta - sector_st);
153  int low = theExtLUTs->getLow(lut_idx,phib_start );
154  int high = theExtLUTs->getHigh(lut_idx,phib_start );
155  if ( low < 0 ) low += (1 << sh_phi) - 1;
156  if ( high < 0 ) high += (1 << sh_phi) - 1;
157  low = (low >> sh_phi) + offset;
158  high = (high >> sh_phi) + offset;
159 
160  int phi_offset = phi_target - offset;
161  if ( ( lut_idx == EX34 ) || ( lut_idx == EX21 ) )
162  phi_offset = phi_start + offset;
163  if ( phi_offset >= (1 << (nbit_phi-1)) -1 ) return;
164  if ( phi_offset < -(1 << (nbit_phi-1)) +1 ) return;
165 
166  // is phi-difference within the extrapolation window?
167  bool openlut = pars->get_soc_openlut_extr(m_sp.id().wheel(), m_sp.id().sector());
168  if (( diff >= low && diff <= high ) || L1MuDTTFConfig::getopenLUTs() || openlut ) {
169  m_result = true;
170  int qual_st = m_start->quality();
171  int qual_ta = m_target->quality();
172  if ( m_seu.ext() == EX34 || m_seu.ext() == EX21 ) {
173  m_quality = ( qual_st == 7 ) ? 0 : qual_st + 1;
174  }
175  else {
176  m_quality = ( qual_ta == 7 ) ? 0 : qual_ta + 1;
177  }
178  m_address = m_id;
179  }
180 
181  if ( L1MuDTTFConfig::Debug(5) ) cout << "diff : " << low << " "
182  << diff << " " << high << " : "
183  << m_result << " " << endl;
184 
185 }
186 
187 
188 //
189 // load data into EUX
190 //
191 void L1MuDTEUX::load(const L1MuDTTrackSegPhi* start_ts,
192  const L1MuDTTrackSegPhi* target_ts) {
193 
194  m_start = start_ts;
195  m_target = target_ts;
196 
197  // in case of EX34 and EX21 exchange start and target
198  if ( ( m_seu.ext() == EX34 ) || ( m_seu.ext() == EX21 ) ) {
199  m_start = target_ts;
200  m_target = start_ts;
201  }
202 
203 }
204 
205 
206 //
207 // reset this EUX
208 //
209 
211 
212  m_result = false;
213  m_quality = 0;
214  m_address = 15;
215 
216  m_start = 0;
217  m_target = 0;
218 
219 }
220 
221 
222 //
223 // return pointer to start and target track segment
224 //
225 pair<const L1MuDTTrackSegPhi* ,const L1MuDTTrackSegPhi*> L1MuDTEUX::ts() const {
226 
227  return pair<const L1MuDTTrackSegPhi*, const L1MuDTTrackSegPhi*>(m_start,m_target);
228 
229 }
230 
231 
232 //
233 // symmetric modulo function for sectors
234 // output values in the range -6 to +5
235 //
236 int L1MuDTEUX::sec_mod(int sector) const {
237 
238  int new_sector = sector%12;
239  if ( new_sector >= 6 )
240  new_sector = new_sector - 12;
241  if ( new_sector < -6 )
242  new_sector = new_sector + 12;
243 
244  return new_sector;
245 
246 }
Extrapolation ext() const
return extrapolation type
Definition: L1MuDTSEU.h:80
int quality() const
return quality code
bool m_result
Definition: L1MuDTEUX.h:110
edm::ESHandle< L1MuDTExtLut > theExtLUTs
Definition: L1MuDTEUX.h:117
virtual void reset()
reset Extrapolator
Definition: L1MuDTEUX.cc:210
int phi() const
return phi
const L1MuDTSEU & m_seu
Definition: L1MuDTEUX.h:107
void load(const L1MuDTTrackSegPhi *start_ts, const L1MuDTTrackSegPhi *target_ts)
load data into EUX
Definition: L1MuDTEUX.cc:191
int sec_mod(int) const
output sector numbers in the range -6 to +5
Definition: L1MuDTEUX.cc:236
int sector() const
return sector number
bool operator==(const L1MuDTEUX &) const
equal operator
Definition: L1MuDTEUX.cc:75
static bool getopenLUTs()
unsigned short const nbit_phib
Definition: L1MuDTEUX.h:120
virtual void run()
run processor logic
unsigned short const nbit_phi
Definition: L1MuDTEUX.h:119
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int phib() const
return phib
static bool Debug()
const L1MuDTSecProcId & id() const
return Sector Processor identifier
unsigned int offset(bool)
Extrapolation
virtual ~L1MuDTEUX()
destructor
Definition: L1MuDTEUX.cc:65
edm::ESHandle< L1MuDTTFParameters > pars
Definition: L1MuDTEUX.h:122
unsigned short int address() const
return extrapolation address (0-11) (address = 15 indicates negative ext. result) ...
Definition: L1MuDTEUX.h:97
L1MuDTEUX(const L1MuDTSectorProcessor &sp, const L1MuDTSEU &seu, int id)
constructor
Definition: L1MuDTEUX.cc:50
const T & get() const
Definition: EventSetup.h:55
const L1MuDTTrackSegPhi * m_target
Definition: L1MuDTEUX.h:115
unsigned short int m_quality
Definition: L1MuDTEUX.h:111
const L1MuDTSectorProcessor & m_sp
Definition: L1MuDTEUX.h:106
std::pair< const L1MuDTTrackSegPhi *, const L1MuDTTrackSegPhi * > ts() const
return pointer to start and target track segment
Definition: L1MuDTEUX.cc:225
int id() const
return Extrapolation identifier
Definition: L1MuDTEUX.h:88
int sector() const
return sector
int wheel() const
return wheel
int wheel() const
return wheel number
tuple cout
Definition: gather_cfg.py:121
volatile std::atomic< bool > shutdown_flag false
unsigned int quality() const
return extrapolation quality
Definition: L1MuDTEUX.h:94
int m_id
Definition: L1MuDTEUX.h:108
const L1MuDTTrackSegPhi * m_start
Definition: L1MuDTEUX.h:114
unsigned short int m_address
Definition: L1MuDTEUX.h:112
bool result() const
return extrapolation result
Definition: L1MuDTEUX.h:91