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)

Date:
2008/11/28 10:30:51
Revision:
1.5

N. Neumeister CERN EP

Definition at line 54 of file L1MuDTExtrapolationUnit.h.

Member Typedef Documentation

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

Definition at line 58 of file L1MuDTExtrapolationUnit.h.

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

Definition at line 59 of file L1MuDTExtrapolationUnit.h.

Constructor & Destructor Documentation

L1MuDTExtrapolationUnit::L1MuDTExtrapolationUnit ( const L1MuDTSectorProcessor sp)

constructor

Definition at line 56 of file L1MuDTExtrapolationUnit.cc.

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

56  :
57  m_sp(sp), m_SEUs() {
58 
59  for ( int ext_idx = 0; ext_idx < MAX_EXT; ext_idx++ ) {
60 
61  Extrapolation ext = static_cast<Extrapolation>(ext_idx);
62 
63  if ( ext == EX12 || ext == EX13 || ext == EX14 ||
64  ext == EX21 || ext == EX23 || ext == EX24 || ext == EX34 ) {
65 
66  unsigned int maxaddr = 4;
67 
68  if ( ext == EX12 || ext == EX13 || ext == EX14 ) maxaddr = 2;
69 
70  for ( unsigned int startAddress = 0; startAddress < maxaddr; startAddress++ ) {
71  SEUId id = make_pair(ext, startAddress);
72  m_SEUs[id] = new L1MuDTSEU(sp,ext,startAddress);
73  if ( L1MuDTTFConfig::Debug(6) ) cout << " creating SEU " << ext << " " << startAddress << endl;
74  }
75  }
76  }
77 
78 }
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 85 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

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

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 190 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

190  {
191 
192  // get extrapolation address from ERS
193  // startAdr = 0, 1 : own wheel
194  // startAdr = 2, 3 : next wheel neighbour
195 
196  // assert( startAdr >= 0 && startAdr <= 3 );
197  // assert( id == 0 || id == 1 );
198 
199  unsigned short int address = 15;
200 
201  SEUId seuid = make_pair(ext, startAdr);
202  SEUmap::const_iterator iter = m_SEUs.find(seuid);
203  if ( iter != m_SEUs.end() ) address = ((*iter).second)->ers()->address(id);
204 
205  return address;
206 
207 }
char * address
Definition: mlp_lapack.h:14
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 236 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

Referenced by run().

236  {
237 
238  // startAdr = 0, 1 : own wheel
239  // startAdr = 2, 3 : next wheel neighbour
240 
241  // assert( startAdr >= 0 && startAdr <= 3 );
242 
243  SEUId seuid = make_pair(ext, startAdr);
244  return m_SEUs[seuid]->exTable();
245 
246 }
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 252 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

Referenced by L1MuDTTrackAssembler::run().

252  {
253 
254  // startAdr = 0, 1 : own wheel
255  // startAdr = 2, 3 : next wheel neighbour
256 
257  // assert( startAdr >= 0 && startAdr <= 3 );
258 
259  SEUId seuid = make_pair(ext, startAdr);
260  return m_SEUs[seuid]->qsTable();
261 
262 }
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 213 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

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

return number of successful extrapolations

Definition at line 268 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

Referenced by L1MuDTSectorProcessor::run().

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

print all successful extrapolations

Definition at line 284 of file L1MuDTExtrapolationUnit.cc.

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

Referenced by L1MuDTSectorProcessor::run().

284  {
285 
286  SEUmap::const_iterator iter_seu;
287 
288  if ( level == 0 ) {
289  for ( iter_seu = m_SEUs.begin(); iter_seu != m_SEUs.end(); iter_seu++ ) {
290  vector<L1MuDTEUX*> vec_eux = ((*iter_seu).second)->eux();
291  vector<L1MuDTEUX*>::const_iterator iter_eux;
292  for ( iter_eux = vec_eux.begin();
293  iter_eux != vec_eux.end(); iter_eux++ ) {
294  if ( (*iter_eux)->result() ) {
295  cout << ((*iter_seu).second)->ext() << " "
296  << ((*iter_seu).second)->tsId() << " "
297  << (*iter_eux)->id() << endl;
298  cout << "start : " << *(*iter_eux)->ts().first << endl;
299  cout << "target : " << *(*iter_eux)->ts().second << endl;
300  cout << "result : " << "quality = " << (*iter_eux)->quality() << '\t'
301  << "address = " << (*iter_eux)->address() << endl;
302  }
303  }
304  }
305  }
306 
307  //
308  // print all results from Extrapolator and Quality Sorter
309  //
310  if ( level == 1 ) {
311  cout << "Results from Extrapolator and Quality Sorter of " << m_sp.id()
312  << " : \n" << endl;
313 
314  cout << " EXT QSU " << endl;
315  cout << " S E U 11 11 " << endl;
316  cout << " 109876543210 109876543210 " << endl;
317  cout << "-------------------------------------" << endl;
318  for ( iter_seu = m_SEUs.begin(); iter_seu != m_SEUs.end(); iter_seu++ ) {
319 
320  cout << ((*iter_seu).second)->ext() << "_ "
321  << ((*iter_seu).second)->tsId() << ": "
322  << ((*iter_seu).second)->exTable() << " "
323  << ((*iter_seu).second)->qsTable() << endl;
324 
325  }
326 
327  cout << endl;
328  }
329 
330 }
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 162 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

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

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

reset a single extrapolation

Definition at line 175 of file L1MuDTExtrapolationUnit.cc.

References m_SEUs.

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

run Extrapolation Unit

Reimplemented from L1AbstractProcessor.

Definition at line 103 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(), svgfig::load(), m_SEUs, m_sp, pars, reset(), L1AbstractProcessor::run(), L1MuDTSecProcId::sector(), errorMatrix2Lands_multiChannel::start, L1MuDTSEU::tsId(), L1MuDTSecProcId::wheel(), and which_ext().

Referenced by L1MuDTSectorProcessor::run().

103  {
104 
105  c.get< L1MuDTTFParametersRcd >().get( pars );
106 
107  SEUmap::const_iterator iter;
108  for ( iter = m_SEUs.begin(); iter != m_SEUs.end(); iter++ ) {
109 
110  pair<int,int> ext_pair = which_ext(((*iter).second)->ext());
111  int start = ext_pair.first;
112 
113  const L1MuDTTrackSegPhi* ts = 0;
114 
115  //get start track segment
116  ts = m_sp.data()->getTSphi(start, ((*iter).second)->tsId() );
117 
118  if ( ts != 0 && !ts->empty() ) {
119  ((*iter).second)->load(ts);
120  ((*iter).second)->run(c);
121  }
122 
123  }
124 
125  //
126  // use EX21 to cross-check EX12
127  //
128  bool run_21 = pars->get_soc_run_21(m_sp.id().wheel(), m_sp.id().sector());
129  if ( L1MuDTTFConfig::getUseEX21() || run_21 ) {
130 
131  // search for EX12 + EX21 single extrapolation units
132  for ( unsigned int startAdr = 0; startAdr < 2; startAdr++ ) {
133 
134  bitset<12> extab12 = this->getEXTable( EX12, startAdr );
135  bitset<12> extab21 = this->getEXTable( EX21, startAdr );
136 
137  for ( int eux = 0; eux < 12; eux++ ) {
138  if ( extab12.test(eux) && !extab21.test(eux) ) {
139  reset(EX12,startAdr,eux);
140  if ( L1MuDTTFConfig::Debug(6) ) {
141  SEUId seuid = make_pair(EX12, startAdr);
142  L1MuDTSEU* SEU12 = m_SEUs[seuid];
143  cout << " EX12 - EX21 mismatch : "
144  << " EX12 : " << extab12 << " , "
145  << " EX21 : " << extab21 << endl
146  << " Cancel: " << SEU12->ext()
147  << " start addr = " << SEU12->tsId()
148  << " target addr = " << eux << endl;
149  }
150  }
151  }
152 
153  }
154  }
155 
156 }
Extrapolation ext() const
return extrapolation type
Definition: L1MuDTSEU.h:82
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:85
pair< int, int > L1MuDTExtrapolationUnit::which_ext ( Extrapolation  ext)
static

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

Definition at line 338 of file L1MuDTExtrapolationUnit.cc.

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

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

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

Member Data Documentation

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

Definition at line 99 of file L1MuDTExtrapolationUnit.h.

Referenced by print(), and run().

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

Definition at line 103 of file L1MuDTExtrapolationUnit.h.

Referenced by run().