CMS 3D CMS Logo

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

#include <SiStripFEDBufferComponents.h>

Public Member Functions

uint16_t cmMedian (const uint8_t apvIndex) const
 
const uint8_t * data () const
 
 FEDChannel (const uint8_t *const data, const size_t offset, const uint16_t length)
 
 FEDChannel (const uint8_t *const data, const size_t offset)
 
uint16_t length () const
 
size_t offset () const
 
uint8_t packetCode () const
 

Private Attributes

const uint8_t * data_
 
uint16_t length_
 
size_t offset_
 

Friends

class FEDBuffer
 

Detailed Description

Definition at line 546 of file SiStripFEDBufferComponents.h.

Constructor & Destructor Documentation

sistrip::FEDChannel::FEDChannel ( const uint8_t *const  data,
const size_t  offset,
const uint16_t  length 
)
inline

Definition at line 1648 of file SiStripFEDBufferComponents.h.

sistrip::FEDChannel::FEDChannel ( const uint8_t *const  data,
const size_t  offset 
)
inline

Definition at line 1641 of file SiStripFEDBufferComponents.h.

References data_, length_, and offset_.

1642  : data_(data),
1643  offset_(offset)
1644  {
1645  length_ = ( data_[(offset_)^7] + (data_[(offset_+1)^7] << 8) );
1646  }
const uint8_t * data() const

Member Function Documentation

uint16_t sistrip::FEDChannel::cmMedian ( const uint8_t  apvIndex) const

Definition at line 1456 of file SiStripFEDBufferComponents.cc.

References data_, Exception, offset_, sistrip::PACKET_CODE_ZERO_SUPPRESSED, packetCode(), mps_fire::result, and contentValuesCheck::ss.

Referenced by SiStripCMMonitorPlugin::analyze().

1457  {
1459  std::ostringstream ss;
1460  ss << "Request for CM median from channel with non-ZS packet code. "
1461  << "Packet code is " << uint16_t(packetCode()) << "."
1462  << std::endl;
1463  throw cms::Exception("FEDBuffer") << ss.str();
1464  }
1465  if (apvIndex > 1) {
1466  std::ostringstream ss;
1467  ss << "Channel APV index out of range when requesting CM median for APV. "
1468  << "Channel APV index is " << uint16_t(apvIndex) << "."
1469  << std::endl;
1470  throw cms::Exception("FEDBuffer") << ss.str();
1471  }
1472  uint16_t result = 0;
1473  //CM median is 10 bits with lowest order byte first. First APV CM median starts in 4th byte of channel data
1474  result |= data_[(offset_+3+2*apvIndex)^7];
1475  result |= ( ((data_[(offset_+4+2*apvIndex)^7]) << 8) & 0x300 );
1476  return result;
1477  }
tuple result
Definition: mps_fire.py:83
static const uint8_t PACKET_CODE_ZERO_SUPPRESSED
const uint8_t * sistrip::FEDChannel::data ( ) const
inline
uint16_t sistrip::FEDChannel::length ( ) const
inline
size_t sistrip::FEDChannel::offset ( ) const
inline
uint8_t sistrip::FEDChannel::packetCode ( ) const
inline

Definition at line 1660 of file SiStripFEDBufferComponents.h.

References data_, and offset_.

Referenced by cmMedian(), and sistrip::FEDBufferBase::packetCode().

1661  {
1662  return data_[(offset_+2)^7];
1663  }

Friends And Related Function Documentation

friend class FEDBuffer
friend

Definition at line 559 of file SiStripFEDBufferComponents.h.

Member Data Documentation

const uint8_t* sistrip::FEDChannel::data_
private

Definition at line 560 of file SiStripFEDBufferComponents.h.

Referenced by cmMedian(), data(), FEDChannel(), and packetCode().

uint16_t sistrip::FEDChannel::length_
private

Definition at line 562 of file SiStripFEDBufferComponents.h.

Referenced by FEDChannel(), and length().

size_t sistrip::FEDChannel::offset_
private

Definition at line 561 of file SiStripFEDBufferComponents.h.

Referenced by cmMedian(), FEDChannel(), offset(), and packetCode().