CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Attributes
L1MuDTExtrapolationUnit Class Reference

#include <L1MuDTExtrapolationUnit.h>

Inheritance diagram for L1MuDTExtrapolationUnit:
L1AbstractProcessor

Public Types

typedef std::pair
< Extrapolation, unsigned int > 
SEUId
 
typedef std::map< SEUId,
L1MuDTSEU *, std::less< SEUId > > 
SEUmap
 

Public Member Functions

unsigned short int getAddress (Extrapolation ext, unsigned int startAdr, int id) const
 get extrapolation address from a given ERS More...
 
const std::bitset< 12 > & getEXTable (Extrapolation ext, unsigned int startAdr) const
 get Extrapolator table for a given SEU More...
 
const std::bitset< 12 > & getQSTable (Extrapolation ext, unsigned int startAdr) const
 get Quality Sorter table for a given SEU More...
 
unsigned short int getQuality (Extrapolation ext, unsigned int startAdr, int id) const
 get extrapolation quality from a given ERS More...
 
 L1MuDTExtrapolationUnit (const L1MuDTSectorProcessor &)
 constructor More...
 
int numberOfExt () const
 return number of successful extrapolations More...
 
void print (int level=0) const
 print all successful extrapolations More...
 
virtual void reset ()
 reset Extrapolation Unit More...
 
void reset (Extrapolation ext, unsigned int startAdr, unsigned int relAdr)
 reset a single extrapolation More...
 
virtual void run (const edm::EventSetup &c)
 run Extrapolation Unit More...
 
virtual ~L1MuDTExtrapolationUnit ()
 destructor More...
 
- Public Member Functions inherited from L1AbstractProcessor
virtual void run ()
 run processor logic More...
 
virtual ~L1AbstractProcessor ()
 destructor More...
 

Static Public Member Functions

static std::pair< int, int > which_ext (Extrapolation ext)
 return station of start and target track segment for a given extrapolation More...
 

Private Attributes

SEUmap m_SEUs
 
const L1MuDTSectorProcessorm_sp
 
edm::ESHandle< L1MuDTTFParameterspars
 

Detailed Description

Extrapolation Unit:

The Extrapolation Unit attempts to join track segment pairs of different stations. it contains 12 Single Extrapolation Units to perform all extrapolations in its own wheel and 6 Single Extrapolation Units to perform all extrapolations in the adjacent wheel (next wheel neighbour)

N. Neumeister CERN EP

Definition at line 52 of file L1MuDTExtrapolationUnit.h.

Member Typedef Documentation

typedef std::pair<Extrapolation, unsigned int> L1MuDTExtrapolationUnit::SEUId

Definition at line 56 of file L1MuDTExtrapolationUnit.h.

typedef std::map<SEUId, L1MuDTSEU*, std::less<SEUId> > L1MuDTExtrapolationUnit::SEUmap

Definition at line 57 of file L1MuDTExtrapolationUnit.h.

Constructor & Destructor Documentation

L1MuDTExtrapolationUnit::L1MuDTExtrapolationUnit ( const L1MuDTSectorProcessor sp)

constructor

Definition at line 54 of file L1MuDTExtrapolationUnit.cc.

References gather_cfg::cout, L1MuDTTFConfig::Debug(), EX12, EX13, EX14, EX21, EX23, EX24, EX34, m_SEUs, and MAX_EXT.

54  :
55  m_sp(sp), m_SEUs() {
56 
57  for ( int ext_idx = 0; ext_idx < MAX_EXT; ext_idx++ ) {
58 
59  Extrapolation ext = static_cast<Extrapolation>(ext_idx);
60 
61  if ( ext == EX12 || ext == EX13 || ext == EX14 ||
62  ext == EX21 || ext == EX23 || ext == EX24 || ext == EX34 ) {
63 
64  unsigned int maxaddr = 4;
65 
66  if ( ext == EX12 || ext == EX13 || ext == EX14 ) maxaddr = 2;
67 
68  for ( unsigned int startAddress = 0; startAddress < maxaddr; startAddress++ ) {
69  SEUId id = make_pair(ext, startAddress);
70  m_SEUs[id] = new L1MuDTSEU(sp,ext,startAddress);
71  if ( L1MuDTTFConfig::Debug(6) ) cout << " creating SEU " << ext << " " << startAddress << endl;
72  }
73  }
74  }
75 
76 }
std::pair< Extrapolation, unsigned int > SEUId
const L1MuDTSectorProcessor & m_sp
const int MAX_EXT
static bool Debug()
Extrapolation
tuple cout
Definition: gather_cfg.py:121
L1MuDTExtrapolationUnit::~L1MuDTExtrapolationUnit ( )
virtual

destructor

Definition at line 83 of file L1MuDTExtrapolationUnit.cc.

References getDQMSummary::iter, and m_SEUs.

83  {
84 
85  for ( SEUmap::iterator iter = m_SEUs.begin(); iter != m_SEUs.end(); iter++ ) {
86  delete (*iter).second;
87  (*iter).second = 0;
88  }
89  m_SEUs.clear();
90 
91 }

Member Function Documentation

unsigned short int L1MuDTExtrapolationUnit::getAddress ( Extrapolation  ext,
unsigned int  startAdr,
int  id 
) const

get extrapolation address from a given ERS

Definition at line 188 of file L1MuDTExtrapolationUnit.cc.

References getDQMSummary::iter, and m_SEUs.

188  {
189 
190  // get extrapolation address from ERS
191  // startAdr = 0, 1 : own wheel
192  // startAdr = 2, 3 : next wheel neighbour
193 
194  // assert( startAdr >= 0 && startAdr <= 3 );
195  // assert( id == 0 || id == 1 );
196 
197  unsigned short int address = 15;
198 
199  SEUId seuid = make_pair(ext, startAdr);
200  SEUmap::const_iterator iter = m_SEUs.find(seuid);
201  if ( iter != m_SEUs.end() ) address = ((*iter).second)->ers()->address(id);
202 
203  return address;
204 
205 }
std::pair< Extrapolation, unsigned int > SEUId
const bitset< 12 > & L1MuDTExtrapolationUnit::getEXTable ( Extrapolation  ext,
unsigned int  startAdr 
) const

get Extrapolator table for a given SEU

Definition at line 234 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

Referenced by run().

234  {
235 
236  // startAdr = 0, 1 : own wheel
237  // startAdr = 2, 3 : next wheel neighbour
238 
239  // assert( startAdr >= 0 && startAdr <= 3 );
240 
241  SEUId seuid = make_pair(ext, startAdr);
242  return m_SEUs[seuid]->exTable();
243 
244 }
std::pair< Extrapolation, unsigned int > SEUId
const bitset< 12 > & L1MuDTExtrapolationUnit::getQSTable ( Extrapolation  ext,
unsigned int  startAdr 
) const

get Quality Sorter table for a given SEU

Definition at line 250 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

Referenced by L1MuDTTrackAssembler::run().

250  {
251 
252  // startAdr = 0, 1 : own wheel
253  // startAdr = 2, 3 : next wheel neighbour
254 
255  // assert( startAdr >= 0 && startAdr <= 3 );
256 
257  SEUId seuid = make_pair(ext, startAdr);
258  return m_SEUs[seuid]->qsTable();
259 
260 }
std::pair< Extrapolation, unsigned int > SEUId
unsigned short int L1MuDTExtrapolationUnit::getQuality ( Extrapolation  ext,
unsigned int  startAdr,
int  id 
) const

get extrapolation quality from a given ERS

Definition at line 211 of file L1MuDTExtrapolationUnit.cc.

References getDQMSummary::iter, m_SEUs, and HLT_25ns14e33_v1_cff::quality.

211  {
212 
213  // get extrapolation quality from ERS
214  // startAdr = 0, 1 : own wheel
215  // startAdr = 2, 3 : next wheel neighbour
216 
217  // assert( startAdr >= 0 && startAdr <= 3 );
218  // assert( id == 0 || id == 1 );
219 
220  unsigned short int quality = 0;
221 
222  SEUId seuid = make_pair(ext, startAdr);
223  SEUmap::const_iterator iter = m_SEUs.find(seuid);
224  if ( iter != m_SEUs.end() ) quality = ((*iter).second)->ers()->quality(id);
225 
226  return quality;
227 
228 }
std::pair< Extrapolation, unsigned int > SEUId
int L1MuDTExtrapolationUnit::numberOfExt ( ) const

return number of successful extrapolations

Definition at line 266 of file L1MuDTExtrapolationUnit.cc.

References getDQMSummary::iter, m_SEUs, and contentValuesFiles::number.

Referenced by L1MuDTSectorProcessor::run().

266  {
267 
268  int number = 0;
269  SEUmap::const_iterator iter;
270  for ( iter = m_SEUs.begin(); iter != m_SEUs.end(); iter++ ) {
271  number += ((*iter).second)->numberOfExt();
272  }
273 
274  return number;
275 
276 }
int numberOfExt() const
return number of successful extrapolations
void L1MuDTExtrapolationUnit::print ( int  level = 0) const

print all successful extrapolations

Definition at line 282 of file L1MuDTExtrapolationUnit.cc.

References gather_cfg::cout, L1MuDTSectorProcessor::id(), m_SEUs, and m_sp.

Referenced by L1MuDTSectorProcessor::run().

282  {
283 
284  SEUmap::const_iterator iter_seu;
285 
286  if ( level == 0 ) {
287  for ( iter_seu = m_SEUs.begin(); iter_seu != m_SEUs.end(); iter_seu++ ) {
288  vector<L1MuDTEUX*> vec_eux = ((*iter_seu).second)->eux();
289  vector<L1MuDTEUX*>::const_iterator iter_eux;
290  for ( iter_eux = vec_eux.begin();
291  iter_eux != vec_eux.end(); iter_eux++ ) {
292  if ( (*iter_eux)->result() ) {
293  cout << ((*iter_seu).second)->ext() << " "
294  << ((*iter_seu).second)->tsId() << " "
295  << (*iter_eux)->id() << endl;
296  cout << "start : " << *(*iter_eux)->ts().first << endl;
297  cout << "target : " << *(*iter_eux)->ts().second << endl;
298  cout << "result : " << "quality = " << (*iter_eux)->quality() << '\t'
299  << "address = " << (*iter_eux)->address() << endl;
300  }
301  }
302  }
303  }
304 
305  //
306  // print all results from Extrapolator and Quality Sorter
307  //
308  if ( level == 1 ) {
309  cout << "Results from Extrapolator and Quality Sorter of " << m_sp.id()
310  << " : \n" << endl;
311 
312  cout << " EXT QSU " << endl;
313  cout << " S E U 11 11 " << endl;
314  cout << " 109876543210 109876543210 " << endl;
315  cout << "-------------------------------------" << endl;
316  for ( iter_seu = m_SEUs.begin(); iter_seu != m_SEUs.end(); iter_seu++ ) {
317 
318  cout << ((*iter_seu).second)->ext() << "_ "
319  << ((*iter_seu).second)->tsId() << ": "
320  << ((*iter_seu).second)->exTable() << " "
321  << ((*iter_seu).second)->qsTable() << endl;
322 
323  }
324 
325  cout << endl;
326  }
327 
328 }
const L1MuDTSectorProcessor & m_sp
const L1MuDTSecProcId & id() const
return Sector Processor identifier
tuple cout
Definition: gather_cfg.py:121
tuple level
Definition: testEve_cfg.py:34
void L1MuDTExtrapolationUnit::reset ( void  )
virtual

reset Extrapolation Unit

Implements L1AbstractProcessor.

Definition at line 160 of file L1MuDTExtrapolationUnit.cc.

References getDQMSummary::iter, and m_SEUs.

Referenced by L1MuDTSectorProcessor::reset(), and run().

160  {
161 
162  SEUmap::const_iterator iter;
163  for ( iter = m_SEUs.begin(); iter != m_SEUs.end(); iter++ ) {
164  ((*iter).second)->reset();
165  }
166 
167 }
virtual void reset()
reset Extrapolation Unit
void L1MuDTExtrapolationUnit::reset ( Extrapolation  ext,
unsigned int  startAdr,
unsigned int  relAdr 
)

reset a single extrapolation

Definition at line 173 of file L1MuDTExtrapolationUnit.cc.

References getDQMSummary::iter, and m_SEUs.

173  {
174 
175  // assert( startAdr >= 0 && startAdr <= 3 );
176  // assert( relAdr >= 0 && relAdr <= 12 );
177 
178  SEUId seuid = make_pair(ext, startAdr);
179  SEUmap::const_iterator iter = m_SEUs.find(seuid);
180  if ( iter != m_SEUs.end() ) ((*iter).second)->reset(relAdr);
181 
182 }
std::pair< Extrapolation, unsigned int > SEUId
void L1MuDTExtrapolationUnit::run ( const edm::EventSetup c)
virtual

run Extrapolation Unit

Reimplemented from L1AbstractProcessor.

Definition at line 101 of file L1MuDTExtrapolationUnit.cc.

References gather_cfg::cout, L1MuDTSectorProcessor::data(), L1MuDTTFConfig::Debug(), L1MuDTTrackSegPhi::empty(), EX12, EX21, L1MuDTSEU::ext(), edm::EventSetup::get(), getEXTable(), L1MuDTDataBuffer::getTSphi(), L1MuDTTFConfig::getUseEX21(), L1MuDTSectorProcessor::id(), getDQMSummary::iter, svgfig::load(), m_SEUs, m_sp, pars, reset(), L1AbstractProcessor::run(), L1MuDTSecProcId::sector(), dqm_diff::start, L1MuDTSEU::tsId(), L1MuDTSecProcId::wheel(), and which_ext().

Referenced by L1MuDTSectorProcessor::run().

101  {
102 
103  c.get< L1MuDTTFParametersRcd >().get( pars );
104 
105  SEUmap::const_iterator iter;
106  for ( iter = m_SEUs.begin(); iter != m_SEUs.end(); iter++ ) {
107 
108  pair<int,int> ext_pair = which_ext(((*iter).second)->ext());
109  int start = ext_pair.first;
110 
111  const L1MuDTTrackSegPhi* ts = 0;
112 
113  //get start track segment
114  ts = m_sp.data()->getTSphi(start, ((*iter).second)->tsId() );
115 
116  if ( ts != 0 && !ts->empty() ) {
117  ((*iter).second)->load(ts);
118  ((*iter).second)->run(c);
119  }
120 
121  }
122 
123  //
124  // use EX21 to cross-check EX12
125  //
126  bool run_21 = pars->get_soc_run_21(m_sp.id().wheel(), m_sp.id().sector());
127  if ( L1MuDTTFConfig::getUseEX21() || run_21 ) {
128 
129  // search for EX12 + EX21 single extrapolation units
130  for ( unsigned int startAdr = 0; startAdr < 2; startAdr++ ) {
131 
132  bitset<12> extab12 = this->getEXTable( EX12, startAdr );
133  bitset<12> extab21 = this->getEXTable( EX21, startAdr );
134 
135  for ( int eux = 0; eux < 12; eux++ ) {
136  if ( extab12.test(eux) && !extab21.test(eux) ) {
137  reset(EX12,startAdr,eux);
138  if ( L1MuDTTFConfig::Debug(6) ) {
139  SEUId seuid = make_pair(EX12, startAdr);
140  L1MuDTSEU* SEU12 = m_SEUs[seuid];
141  cout << " EX12 - EX21 mismatch : "
142  << " EX12 : " << extab12 << " , "
143  << " EX21 : " << extab21 << endl
144  << " Cancel: " << SEU12->ext()
145  << " start addr = " << SEU12->tsId()
146  << " target addr = " << eux << endl;
147  }
148  }
149  }
150 
151  }
152  }
153 
154 }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
Extrapolation ext() const
return extrapolation type
Definition: L1MuDTSEU.h:80
const std::bitset< 12 > & getEXTable(Extrapolation ext, unsigned int startAdr) const
get Extrapolator table for a given SEU
std::pair< Extrapolation, unsigned int > SEUId
virtual void reset()
reset Extrapolation Unit
int sector() const
return sector number
const L1MuDTDataBuffer * data() const
return pointer to Data Buffer
const L1MuDTSectorProcessor & m_sp
virtual void run()
run processor logic
def load
Definition: svgfig.py:546
bool empty() const
is it an empty phi track segment?
static bool Debug()
const L1MuDTSecProcId & id() const
return Sector Processor identifier
static std::pair< int, int > which_ext(Extrapolation ext)
return station of start and target track segment for a given extrapolation
const TSPhivector & getTSphi() const
get all track segments from the buffer
static bool getUseEX21()
const T & get() const
Definition: EventSetup.h:55
edm::ESHandle< L1MuDTTFParameters > pars
int wheel() const
return wheel number
tuple cout
Definition: gather_cfg.py:121
unsigned int tsId() const
return start track segment identifier (relative address)
Definition: L1MuDTSEU.h:83
pair< int, int > L1MuDTExtrapolationUnit::which_ext ( Extrapolation  ext)
static

return station of start and target track segment for a given extrapolation

Definition at line 336 of file L1MuDTExtrapolationUnit.cc.

References EX12, EX13, EX14, EX15, EX21, EX23, EX24, EX25, EX34, source, and filterCSVwithJSON::target.

Referenced by L1MuDTSEU::run(), and run().

336  {
337 
338  int source = 0;
339  int target = 0;
340 
341  // assert( ext >= 0 && ext < MAX_EXT );
342 
343  switch ( ext ) {
344  case EX12 : { source = 1; target = 2; break; }
345  case EX13 : { source = 1; target = 3; break; }
346  case EX14 : { source = 1; target = 4; break; }
347  case EX21 : { source = 1; target = 2; break; }
348  case EX23 : { source = 2; target = 3; break; }
349  case EX24 : { source = 2; target = 4; break; }
350  case EX34 : { source = 3; target = 4; break; }
351  case EX15 : { source = 1; target = 3; break; }
352  case EX25 : { source = 2; target = 3; break; }
353  default : { source = 1; target = 2; break; }
354  }
355 
356  return pair<int,int>(source,target);
357 
358 }
static std::string const source
Definition: EdmProvDump.cc:42

Member Data Documentation

SEUmap L1MuDTExtrapolationUnit::m_SEUs
mutableprivate
const L1MuDTSectorProcessor& L1MuDTExtrapolationUnit::m_sp
private

Definition at line 97 of file L1MuDTExtrapolationUnit.h.

Referenced by print(), and run().

edm::ESHandle< L1MuDTTFParameters > L1MuDTExtrapolationUnit::pars
private

Definition at line 101 of file L1MuDTExtrapolationUnit.h.

Referenced by run().