CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
L1CaloEmCand Class Reference

Level-1 Region Calorimeter Trigger EM candidate. More...

#include <L1CaloEmCand.h>

Public Member Functions

int16_t bx () const
 get bunch-crossing index More...
 
bool empty () const
 is there any information in the candidate More...
 
unsigned index () const
 get index on cable More...
 
bool isolated () const
 which stream did this come from More...
 
 L1CaloEmCand ()
 default constructor (for vector initialisation etc.) More...
 
 L1CaloEmCand (uint16_t data, unsigned crate, bool iso)
 construct from raw data, no source - used by TextToDigi More...
 
 L1CaloEmCand (uint16_t data, unsigned crate, bool iso, uint16_t index, int16_t bx, bool dummy)
 
 L1CaloEmCand (unsigned rank, unsigned region, unsigned card, unsigned crate, bool iso)
 construct from components for emulation More...
 
 L1CaloEmCand (unsigned rank, unsigned region, unsigned card, unsigned crate, bool iso, uint16_t index, int16_t bx)
 construct from components for emulation (including index) More...
 
int operator!= (const L1CaloEmCand &c) const
 inequality operator More...
 
int operator== (const L1CaloEmCand &c) const
 equality operator, including rank, isolation, position More...
 
unsigned rank () const
 get rank bits More...
 
uint16_t raw () const
 get the raw data More...
 
unsigned rctCard () const
 get RCT receiver card More...
 
unsigned rctCrate () const
 get RCT crate More...
 
unsigned rctRegion () const
 get RCT region ID More...
 
L1CaloRegionDetId regionId () const
 get DetID object More...
 
void setBx (int16_t bx)
 set BX More...
 
 ~L1CaloEmCand ()
 destructor More...
 

Private Attributes

int16_t m_bx
 
uint16_t m_data
 
uint16_t m_index
 
bool m_iso
 
uint16_t m_rctCrate
 

Detailed Description

Level-1 Region Calorimeter Trigger EM candidate.

Author
Jim Brooke
Date
June 2006

Definition at line 18 of file L1CaloEmCand.h.

Constructor & Destructor Documentation

L1CaloEmCand::L1CaloEmCand ( )

default constructor (for vector initialisation etc.)

Definition at line 11 of file L1CaloEmCand.cc.

11  :
12  m_data(0),
13  m_rctCrate(0),
14  m_iso(false),
15  m_index(0),
16  m_bx(0)
17 {
18 
19 }
uint16_t m_index
Definition: L1CaloEmCand.h:89
int16_t m_bx
Definition: L1CaloEmCand.h:90
uint16_t m_rctCrate
Definition: L1CaloEmCand.h:87
uint16_t m_data
Definition: L1CaloEmCand.h:83
L1CaloEmCand::L1CaloEmCand ( uint16_t  data,
unsigned  crate,
bool  iso 
)

construct from raw data, no source - used by TextToDigi

Definition at line 23 of file L1CaloEmCand.cc.

23  :
24  m_data(data),
25  m_rctCrate(crate),
26  m_iso(iso),
27  m_index(0),
28  m_bx(0)
29  {
30  }
uint16_t m_index
Definition: L1CaloEmCand.h:89
int16_t m_bx
Definition: L1CaloEmCand.h:90
uint16_t m_rctCrate
Definition: L1CaloEmCand.h:87
uint16_t m_data
Definition: L1CaloEmCand.h:83
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
L1CaloEmCand::L1CaloEmCand ( uint16_t  data,
unsigned  crate,
bool  iso,
uint16_t  index,
int16_t  bx,
bool  dummy 
)

construct from raw data with source - used by GCT unpacker last bool argument is a hack to distinguish this constructor from the next one!

Definition at line 34 of file L1CaloEmCand.cc.

34  :
35  m_data(data),
36  m_rctCrate(crate),
37  m_iso(iso),
38  m_index(index),
39  m_bx(bx)
40  {
41  }
uint16_t m_index
Definition: L1CaloEmCand.h:89
int16_t bx() const
get bunch-crossing index
Definition: L1CaloEmCand.h:62
int16_t m_bx
Definition: L1CaloEmCand.h:90
uint16_t m_rctCrate
Definition: L1CaloEmCand.h:87
uint16_t m_data
Definition: L1CaloEmCand.h:83
unsigned index() const
get index on cable
Definition: L1CaloEmCand.h:59
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
L1CaloEmCand::L1CaloEmCand ( unsigned  rank,
unsigned  region,
unsigned  card,
unsigned  crate,
bool  iso 
)

construct from components for emulation

Definition at line 44 of file L1CaloEmCand.cc.

References m_data, and globals_cff::x1.

44  :
45  m_data(0), // over-ridden below
46  m_rctCrate(crate),
47  m_iso(iso),
48  m_index(0),
49  m_bx(0)
50 
51 {
52  m_data = (rank & 0x3f) + ((region & 0x1)<<6) + ((card & 0x7)<<7);
53 }
uint16_t m_index
Definition: L1CaloEmCand.h:89
int16_t m_bx
Definition: L1CaloEmCand.h:90
unsigned rank() const
get rank bits
Definition: L1CaloEmCand.h:44
uint16_t m_rctCrate
Definition: L1CaloEmCand.h:87
uint16_t m_data
Definition: L1CaloEmCand.h:83
L1CaloEmCand::L1CaloEmCand ( unsigned  rank,
unsigned  region,
unsigned  card,
unsigned  crate,
bool  iso,
uint16_t  index,
int16_t  bx 
)

construct from components for emulation (including index)

Definition at line 56 of file L1CaloEmCand.cc.

References m_data, and globals_cff::x1.

56  :
57  m_data(0), // over-ridden below
58  m_rctCrate(crate),
59  m_iso(iso),
60  m_index(index),
61  m_bx(bx)
62 {
63  m_data = (rank & 0x3f) + ((region & 0x1)<<6) + ((card & 0x7)<<7);
64 }
uint16_t m_index
Definition: L1CaloEmCand.h:89
int16_t bx() const
get bunch-crossing index
Definition: L1CaloEmCand.h:62
int16_t m_bx
Definition: L1CaloEmCand.h:90
unsigned rank() const
get rank bits
Definition: L1CaloEmCand.h:44
uint16_t m_rctCrate
Definition: L1CaloEmCand.h:87
uint16_t m_data
Definition: L1CaloEmCand.h:83
unsigned index() const
get index on cable
Definition: L1CaloEmCand.h:59
L1CaloEmCand::~L1CaloEmCand ( )

destructor

Definition at line 67 of file L1CaloEmCand.cc.

67 { }

Member Function Documentation

int16_t L1CaloEmCand::bx ( ) const
inline

get bunch-crossing index

Definition at line 62 of file L1CaloEmCand.h.

References m_bx.

Referenced by operator<<(), setBx(), and GctFormatTranslateMCLegacy::writeRctEmCandBlocks().

62 { return m_bx; }
int16_t m_bx
Definition: L1CaloEmCand.h:90
bool L1CaloEmCand::empty ( ) const
inline

is there any information in the candidate

Definition at line 77 of file L1CaloEmCand.h.

References rank().

Referenced by operator==(), Vispa.Gui.VispaWidget.TextField::setAutosizeFont(), and Vispa.Gui.VispaWidget.TextField::setAutotruncate().

77 { return (rank() == 0); }
unsigned rank() const
get rank bits
Definition: L1CaloEmCand.h:44
unsigned L1CaloEmCand::index ( ) const
inline
bool L1CaloEmCand::isolated ( ) const
inline

which stream did this come from

Definition at line 56 of file L1CaloEmCand.h.

References m_iso.

Referenced by operator<<(), operator==(), and GctFormatTranslateMCLegacy::writeRctEmCandBlocks().

56 { return m_iso; }
int L1CaloEmCand::operator!= ( const L1CaloEmCand c) const
inline

inequality operator

Definition at line 74 of file L1CaloEmCand.h.

References EnergyCorrector::c.

74 { return !(*this == c); }
int L1CaloEmCand::operator== ( const L1CaloEmCand c) const
inline

equality operator, including rank, isolation, position

Definition at line 71 of file L1CaloEmCand.h.

References empty(), isolated(), m_data, m_iso, m_rctCrate, raw(), rctCrate(), and regionId().

71 { return ((m_data==c.raw() && m_iso==c.isolated() && m_rctCrate==c.rctCrate() && this->regionId()==c.regionId()) || (this->empty() && c.empty())); }
uint16_t raw() const
get the raw data
Definition: L1CaloEmCand.h:41
bool empty() const
is there any information in the candidate
Definition: L1CaloEmCand.h:77
L1CaloRegionDetId regionId() const
get DetID object
Definition: L1CaloEmCand.h:65
unsigned rctCrate() const
get RCT crate
Definition: L1CaloEmCand.h:53
bool isolated() const
which stream did this come from
Definition: L1CaloEmCand.h:56
uint16_t m_rctCrate
Definition: L1CaloEmCand.h:87
uint16_t m_data
Definition: L1CaloEmCand.h:83
unsigned L1CaloEmCand::rank ( ) const
inline

get rank bits

Definition at line 44 of file L1CaloEmCand.h.

References m_data.

Referenced by L1RCTTestAnalyzer::compareEmCands(), empty(), L1GctEmCand::L1GctEmCand(), operator<<(), and GctFormatTranslateMCLegacy::writeRctEmCandBlocks().

44 { return m_data & 0x3f; }
uint16_t m_data
Definition: L1CaloEmCand.h:83
uint16_t L1CaloEmCand::raw ( ) const
inline

get the raw data

Definition at line 41 of file L1CaloEmCand.h.

References m_data.

Referenced by operator==().

41 { return m_data; }
uint16_t m_data
Definition: L1CaloEmCand.h:83
unsigned L1CaloEmCand::rctCard ( ) const
inline

get RCT receiver card

Definition at line 47 of file L1CaloEmCand.h.

References m_data.

Referenced by operator<<(), regionId(), and GctFormatTranslateMCLegacy::writeRctEmCandBlocks().

47 { return (m_data>>7) & 0x7; }
uint16_t m_data
Definition: L1CaloEmCand.h:83
unsigned L1CaloEmCand::rctCrate ( ) const
inline
unsigned L1CaloEmCand::rctRegion ( ) const
inline

get RCT region ID

Definition at line 50 of file L1CaloEmCand.h.

References m_data.

Referenced by operator<<(), regionId(), and GctFormatTranslateMCLegacy::writeRctEmCandBlocks().

50 { return (m_data>>6) & 0x1; }
uint16_t m_data
Definition: L1CaloEmCand.h:83
L1CaloRegionDetId L1CaloEmCand::regionId ( ) const
inline

get DetID object

Definition at line 65 of file L1CaloEmCand.h.

References rctCard(), rctCrate(), rctRegion(), and setBx().

Referenced by L1GctEmCand::L1GctEmCand(), and operator==().

unsigned rctCrate() const
get RCT crate
Definition: L1CaloEmCand.h:53
unsigned rctCard() const
get RCT receiver card
Definition: L1CaloEmCand.h:47
unsigned rctRegion() const
get RCT region ID
Definition: L1CaloEmCand.h:50
void L1CaloEmCand::setBx ( int16_t  bx)

set BX

Definition at line 69 of file L1CaloEmCand.cc.

References bx(), and m_bx.

Referenced by regionId(), L1GctElectronSorter::setupObjects(), and RctRawToDigi::unpackCTP7().

69  {
70  m_bx = bx;
71 }
int16_t bx() const
get bunch-crossing index
Definition: L1CaloEmCand.h:62
int16_t m_bx
Definition: L1CaloEmCand.h:90

Member Data Documentation

int16_t L1CaloEmCand::m_bx
private

Definition at line 90 of file L1CaloEmCand.h.

Referenced by bx(), and setBx().

uint16_t L1CaloEmCand::m_data
private

Definition at line 83 of file L1CaloEmCand.h.

Referenced by L1CaloEmCand(), operator==(), rank(), raw(), rctCard(), and rctRegion().

uint16_t L1CaloEmCand::m_index
private

Definition at line 89 of file L1CaloEmCand.h.

Referenced by index().

bool L1CaloEmCand::m_iso
private

Definition at line 88 of file L1CaloEmCand.h.

Referenced by isolated(), and operator==().

uint16_t L1CaloEmCand::m_rctCrate
private

Definition at line 87 of file L1CaloEmCand.h.

Referenced by operator==(), and rctCrate().