CMS 3D CMS Logo

List of all members | Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
MatacqTBRawEvent Class Reference

#include <MatacqRawEvent.h>

Classes

struct  ChannelData
 
struct  field32spec_t
 
struct  int16le_t
 
struct  matacqHeader_t
 
struct  uint16le_t
 
struct  uint32le_t
 

Public Types

enum  matacqError_t { errorLengthConsistency = 1<<0, errorLength = 1<<1, errorWrongBoe = 1<<2 }
 

Public Member Functions

int getBoe () const
 
int getBxId () const
 
int getChannelCount () const
 
const std::vector< ChannelData > & getChannelData () const
 
unsigned getDaqLen () const
 
int getDccErrors () const
 
unsigned getDccLen () const
 
unsigned getEventId () const
 
int getFedId () const
 
int getFov () const
 
int getFreqGHz () const
 
int getH1Marker () const
 
int getMatacqDataFormatVersion () const
 
int getParsedLen ()
 
unsigned getRunNum () const
 
int32_t getStatus () const
 
time_t getTimeStamp () const
 
int getTriggerType () const
 
int getTTrigPs () const
 
 MatacqTBRawEvent (const unsigned char *dataBuffer, size_t bufferSize)
 

Private Member Functions

int read32 (uint32le_t *pData, field32spec_t spec) const
 
void setRawData (const unsigned char *buffer, size_t bufferSize)
 

Private Attributes

int boe
 
int bxId
 
int channelCount
 
std::vector< ChannelDatachannelData
 
uint32le_tdaqHeader
 
int dccErrors
 
unsigned dccLen
 
int32_t error
 
unsigned eventId
 
int fedId
 
int fov
 
int fragLen
 
int freqGHz
 
int h1Marker
 
int matacqDataFormatVersion
 
matacqHeader_tmatacqHeader
 
int parsedLen
 
uint16le_tpSamples
 
unsigned runNum
 
time_t timeStamp
 
int triggerType
 
int tTrigPs
 

Static Private Attributes

static const field32spec_t boeType32 = {1, 0xF0000000}
 
static const field32spec_t bxId32 = {0, 0xFFF00000}
 
static const field32spec_t dccErrors32 = {2, 0xFF000000}
 
static const field32spec_t dccLen32 = {2, 0x00FFFFFF}
 
static const field32spec_t fedId32 = {0, 0x000FFF00}
 
static const field32spec_t fov32 = {0, 0x000000F0}
 
static const field32spec_t h1Marker32 = {3, 0xF0000000}
 
static const field32spec_t lv132 = {1, 0x00FFFFFF}
 
static const field32spec_t runNum32 = {3, 0x00FFFFFF}
 
static const field32spec_t triggerType32 = {1, 0x0F000000}
 

Detailed Description

Wrapper for matacq raw event fragments. This class provides the method to interpret the data.

Definition at line 26 of file MatacqRawEvent.h.

Member Enumeration Documentation

Enumerator
errorLengthConsistency 

Event length is specified both in the data header and the trailer. This flags indicates an inconsitency between the two indications.

errorLength 

Error in data length.

errorWrongBoe 

Wrong Begin of eevent flag

Definition at line 29 of file MatacqRawEvent.h.

Constructor & Destructor Documentation

MatacqTBRawEvent::MatacqTBRawEvent ( const unsigned char *  dataBuffer,
size_t  bufferSize 
)
inline

Constuctor.

Parameters
dataBufferpointer to the raw data. Beware the data are not copied, therefore the data must be kept valid during the lifetime of the constructed object. pData must be aligned at least on 32-bit words.
bufferSizesize of the buffer pointed by dataBuffer and containing the data. The data themselves are allowed to be smaller than the buffer.
Exceptions
std::exceptionif the data cannot be decoded due to data corruption or truncation.

Definition at line 122 of file MatacqRawEvent.h.

References setRawData().

122  {
123  setRawData(dataBuffer, bufferSize);
124  }
void setRawData(const unsigned char *buffer, size_t bufferSize)

Member Function Documentation

int MatacqTBRawEvent::getBoe ( ) const
inline

Gets the beging of event field contents (BOE). Must be 0x5.

Returns
BOE

Definition at line 158 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by setRawData().

158 { return read32(daqHeader, boeType32);}
int read32(uint32le_t *pData, field32spec_t spec) const
static const field32spec_t boeType32
uint32le_t * daqHeader
int MatacqTBRawEvent::getBxId ( ) const
inline

Gets the bunch crossing id field contents.

Returns
BX id

Definition at line 143 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

143 { return read32(daqHeader, bxId32);}
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
static const field32spec_t bxId32
int MatacqTBRawEvent::getChannelCount ( ) const
inline

Gets the matacq channel count field contents.

Returns
number of channels

Definition at line 206 of file MatacqRawEvent.h.

References MatacqTBRawEvent::matacqHeader_t::channelCount, and matacqHeader.

Referenced by MatacqTBDataFormatter::printData(), and setRawData().

206 { return matacqHeader->channelCount;}
matacqHeader_t * matacqHeader
const std::vector<ChannelData>& MatacqTBRawEvent::getChannelData ( ) const
inline

Gets the matacq channel data. Beware that no copy is done and that the returned data will be invalidated if the data contains in the buffer is modified (see constructor and setRawData().

Returns
matacq channel data.

Definition at line 213 of file MatacqRawEvent.h.

References channelData.

Referenced by MatacqTBDataFormatter::printData().

213  {
214  return channelData;
215  }
std::vector< ChannelData > channelData
unsigned MatacqTBRawEvent::getDaqLen ( ) const
inline

Gets the event length specifies in the DAQ trailer

Returns
event length

Definition at line 168 of file MatacqRawEvent.h.

References fragLen.

168 { return fragLen;}
int MatacqTBRawEvent::getDccErrors ( ) const
inline

Gets the contents of the DCC error field. Currently Not used for Matacq.

Returns
dcc error

Definition at line 174 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

174 { return read32(daqHeader, dccErrors32);}
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
static const field32spec_t dccErrors32
unsigned MatacqTBRawEvent::getDccLen ( ) const
inline

Gets the event length specifies in the "a la DCC" header.

Returns
event length

Definition at line 163 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

163 { return read32(daqHeader, dccLen32);}
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
static const field32spec_t dccLen32
unsigned MatacqTBRawEvent::getEventId ( ) const
inline

Gets the LV1 field contents.

Returns
LV1 id

Definition at line 148 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

148 { return read32(daqHeader, lv132);}
static const field32spec_t lv132
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
int MatacqTBRawEvent::getFedId ( ) const
inline

Gets the FED ID field contents. Should be 43.

Returns
FED ID

Definition at line 138 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

138 { return read32(daqHeader, fedId32);}
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
static const field32spec_t fedId32
int MatacqTBRawEvent::getFov ( ) const
inline

Gets the Fed event fragment data format (FOV) field content. Currently the FOV is not used for MATACQ. Note that matacq data format has its own internal version. See getMatacqDataFormatVersion()

Returns
FOV

Definition at line 133 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

133 { return read32(daqHeader, fov32);}
static const field32spec_t fov32
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
int MatacqTBRawEvent::getFreqGHz ( ) const
inline

Gets the matacq sampling frequency field contents.

Returns
sampling frequency in GHz: 1 or 2

Definition at line 201 of file MatacqRawEvent.h.

References MatacqTBRawEvent::matacqHeader_t::freqGHz, and matacqHeader.

Referenced by MatacqTBDataFormatter::printData().

201 { return matacqHeader->freqGHz;}
matacqHeader_t * matacqHeader
int MatacqTBRawEvent::getH1Marker ( ) const
inline

Gets the header marker field contents. Must be 1

Returns
H1 header marker

Definition at line 184 of file MatacqRawEvent.h.

References daqHeader, and read32().

184 { return read32(daqHeader, h1Marker32);}
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
static const field32spec_t h1Marker32
int MatacqTBRawEvent::getMatacqDataFormatVersion ( ) const
inline

Gets the matcq data format version

Returns
data version

Definition at line 190 of file MatacqRawEvent.h.

References matacqHeader, and MatacqTBRawEvent::matacqHeader_t::version.

Referenced by MatacqTBDataFormatter::printData(), and setRawData().

190 { return matacqHeader->version;}
matacqHeader_t * matacqHeader
int MatacqTBRawEvent::getParsedLen ( )
inline

Gets the data length in number of 64-bit words computed by the data parser.

Returns
event length

Definition at line 221 of file MatacqRawEvent.h.

References parsedLen.

221 { return parsedLen; }
unsigned MatacqTBRawEvent::getRunNum ( ) const
inline

Gets the run number field contents.

Returns
run number

Definition at line 179 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

179 { return read32(daqHeader, runNum32);}
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
static const field32spec_t runNum32
int32_t MatacqTBRawEvent::getStatus ( void  ) const
inline

Gets the raw data status. Bitwise OR of the error flags defined by matcqError_t

Returns
status

Definition at line 196 of file MatacqRawEvent.h.

References error.

Referenced by MatacqTBDataFormatter::printData().

196 { return error;}
time_t MatacqTBRawEvent::getTimeStamp ( ) const
inline

Gets the matacq data timestamp field contents:

Returns
acquisition date of the data expressed in number of "elapsed" second since the EPOCH as defined in POSIX.1. See time() standard c function.

Definition at line 228 of file MatacqRawEvent.h.

References matacqHeader, and MatacqTBRawEvent::matacqHeader_t::timeStamp.

Referenced by MatacqTBDataFormatter::printData().

228 { return matacqHeader->timeStamp;}
matacqHeader_t * matacqHeader
int MatacqTBRawEvent::getTriggerType ( ) const
inline

Gets the trigger type field contents.

Returns
trigger type

Definition at line 153 of file MatacqRawEvent.h.

References daqHeader, and read32().

Referenced by MatacqTBDataFormatter::printData().

153 { return read32(daqHeader, triggerType32);}
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
static const field32spec_t triggerType32
int MatacqTBRawEvent::getTTrigPs ( ) const
inline

Gets the Matacq trigger time.

Returns
(t_trig-t_0) in ps, with t_0 the time of the first sample and t_trig the trigger time.

Definition at line 235 of file MatacqRawEvent.h.

References edmScanValgrind::buffer, read32(), setRawData(), and tTrigPs.

235 { return tTrigPs;}
int MatacqTBRawEvent::read32 ( uint32le_t pData,
field32spec_t  spec 
) const
private

Help function to decode header content.

Parameters
datapointer
specspecification of the data field to read
Returns
content of data field specified by 'spec'

Definition at line 103 of file MatacqRawEvent.cc.

References RecoTauDiscriminantConfiguration::mask, MatacqTBRawEvent::field32spec_t::mask, MatacqTBRawEvent::field32spec_t::offset, mps_fire::result, and globals_cff::x1.

Referenced by getBoe(), getBxId(), getDccErrors(), getDccLen(), getEventId(), getFedId(), getFov(), getH1Marker(), getRunNum(), getTriggerType(), getTTrigPs(), and setRawData().

103  {
104  int result = pData[spec32.offset] & spec32.mask;
105  int mask = spec32.mask;
106  while((mask&0x1) == 0){
107  mask >>= 1;
108  result >>= 1;
109  }
110  return result;
111 }
void MatacqTBRawEvent::setRawData ( const unsigned char *  buffer,
size_t  bufferSize 
)
private

Changes the raw data pointer and updates accordingly this object.

Parameters
buffernew pointer to the data buffer. Must be aligned at least on 32-bit words.
sizeof the data buffer.
Exceptions
std::exceptionif the data cannot be decoded due to data corruption or truncation.

Definition at line 34 of file MatacqRawEvent.cc.

References channelData, daqHeader, dccLen32, error, errorLength, errorLengthConsistency, errorWrongBoe, fragLen, getBoe(), getChannelCount(), getMatacqDataFormatVersion(), matacqHeader, SiStripPI::max, parsedLen, read32(), AlCaHLTBitMon_QueryRunRegistry::string, and tTrigPs.

Referenced by getTTrigPs(), and MatacqTBRawEvent().

34  {
35  error = 0;
36  int16le_t* begin16 = (int16le_t*) pData;
37  int16le_t* pData16 = begin16;
38  daqHeader = (uint32le_t*) pData16;
39  const int daqHeaderLen = 16; //in bytes
40  pData16 += daqHeaderLen/sizeof(pData16[0]);
41  matacqHeader = (matacqHeader_t*) pData16;
42  pData16 += sizeof(matacqHeader_t)/sizeof(pData16[0]);
43  if(getMatacqDataFormatVersion()>=2){//trigger position present
44  tTrigPs = *((int32_t*) pData16);
45  pData16 += 2;
46  } else{
48  }
49  const int nCh = getChannelCount();
50  channelData.resize(nCh);
51  for(int iCh=0; iCh<nCh; ++iCh){
52  //channel id:
53  channelData[iCh].chId = *(pData16++);
54  //number of time samples for this channel:
55  channelData[iCh].nSamples = *(pData16++);
56  //pointer to time sample data of this channel:
57  channelData[iCh].samples = pData16;
58  //moves to next channel data block:
59  pData16 += channelData[iCh].nSamples;
60  }
61 
62  //data trailer chekes:
63  //FED header is aligned on 64-bit=>padding to skip
64  int padding = (4-(pData16-begin16))%4;
65  if(padding<0) padding+=4;
66  pData16 += padding;
67  uint32le_t* trailer32 = (uint32le_t*)(pData16);
68  fragLen = trailer32[1]&0xFFFFFF;
69 
70  //std::cout << "Event fragment length including headers: " << fragLen
71  // << " 64-bit words\n";
72 
73  //FIXME: I am expecting the event length specifies in the header to
74  //include the header, while it is not the case in current TB 2006 data
75  const int nHeaders = 3;
76  if(fragLen!=read32(daqHeader,dccLen32)+nHeaders
78  //std::cout << "Error: fragment length is not consistent with DCC "
79  // "length\n";
81  }
82 
83  //skip trailers
84  const int trailerLen = 4;
85  pData16 += trailerLen;
86 
87  parsedLen = (pData16-begin16) / 4;
88 
89  if((pData16-begin16)!=(4*fragLen)){
90  error |= errorLength;
91  }
92 
93  if((size_t)(pData16-begin16)>maxSize){
94  throw std::runtime_error(std::string("Corrupted or truncated data"));
95  }
96 
97  //some checks
98  if(getBoe()!=0x5){
100  }
101 }
int read32(uint32le_t *pData, field32spec_t spec) const
uint32le_t * daqHeader
int getChannelCount() const
std::vector< ChannelData > channelData
int getMatacqDataFormatVersion() const
int getBoe() const
matacqHeader_t * matacqHeader
static const field32spec_t dccLen32

Member Data Documentation

int MatacqTBRawEvent::boe
private

Begin Of Event marker

Definition at line 258 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::boeType32 = {1, 0xF0000000}
staticprivate

Definition at line 104 of file MatacqRawEvent.h.

int MatacqTBRawEvent::bxId
private

Bunch crossing Id

Definition at line 262 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::bxId32 = {0, 0xFFF00000}
staticprivate

Definition at line 101 of file MatacqRawEvent.h.

int MatacqTBRawEvent::channelCount
private

Number of matacq channels in the data.

Definition at line 266 of file MatacqRawEvent.h.

std::vector<ChannelData> MatacqTBRawEvent::channelData
private

Channel samples

Definition at line 270 of file MatacqRawEvent.h.

Referenced by getChannelData(), and setRawData().

uint32le_t* MatacqTBRawEvent::daqHeader
private

Pointer to the standard CMS DAQ header

Definition at line 274 of file MatacqRawEvent.h.

Referenced by getBoe(), getBxId(), getDccErrors(), getDccLen(), getEventId(), getFedId(), getFov(), getH1Marker(), getRunNum(), getTriggerType(), and setRawData().

int MatacqTBRawEvent::dccErrors
private

DCC error field content.

Definition at line 278 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::dccErrors32 = {2, 0xFF000000}
staticprivate

Definition at line 106 of file MatacqRawEvent.h.

unsigned MatacqTBRawEvent::dccLen
private

Event length specified in 'DCC' header

Definition at line 282 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::dccLen32 = {2, 0x00FFFFFF}
staticprivate

Definition at line 105 of file MatacqRawEvent.h.

Referenced by setRawData().

int32_t MatacqTBRawEvent::error
private
unsigned MatacqTBRawEvent::eventId
private

Event id. Actually LV1 ID.

Definition at line 286 of file MatacqRawEvent.h.

Referenced by ntupleDataFormat.Event::eventIdStr().

int MatacqTBRawEvent::fedId
private

FED ID

Definition at line 294 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::fedId32 = {0, 0x000FFF00}
staticprivate

Definition at line 100 of file MatacqRawEvent.h.

int MatacqTBRawEvent::fov
private

FED data format version

Definition at line 298 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::fov32 = {0, 0x000000F0}
staticprivate

DAQ header field specifications.

Definition at line 99 of file MatacqRawEvent.h.

int MatacqTBRawEvent::fragLen
private

event fragment length as read in the std DAQ trailer. In 64-bit words

Definition at line 302 of file MatacqRawEvent.h.

Referenced by getDaqLen(), and setRawData().

int MatacqTBRawEvent::freqGHz
private

MATACQ sampling frequency in GHz

Definition at line 306 of file MatacqRawEvent.h.

int MatacqTBRawEvent::h1Marker
private

header marker

Definition at line 310 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::h1Marker32 = {3, 0xF0000000}
staticprivate

Definition at line 108 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::lv132 = {1, 0x00FFFFFF}
staticprivate

Definition at line 102 of file MatacqRawEvent.h.

int MatacqTBRawEvent::matacqDataFormatVersion
private

MATACQ data format internal version

Definition at line 318 of file MatacqRawEvent.h.

matacqHeader_t* MatacqTBRawEvent::matacqHeader
private

Matacq header:

Definition at line 314 of file MatacqRawEvent.h.

Referenced by getChannelCount(), getFreqGHz(), getMatacqDataFormatVersion(), getTimeStamp(), and setRawData().

int MatacqTBRawEvent::parsedLen
private

event lenght computed by the raw data parser

Definition at line 322 of file MatacqRawEvent.h.

Referenced by getParsedLen(), and setRawData().

uint16le_t* MatacqTBRawEvent::pSamples
private

Pointer to MATACQ samples block

Definition at line 326 of file MatacqRawEvent.h.

unsigned MatacqTBRawEvent::runNum
private

Run number

Definition at line 330 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::runNum32 = {3, 0x00FFFFFF}
staticprivate

Definition at line 107 of file MatacqRawEvent.h.

time_t MatacqTBRawEvent::timeStamp
private

Matacq acquisition time stamp

Definition at line 334 of file MatacqRawEvent.h.

int MatacqTBRawEvent::triggerType
private

Trigger type

Definition at line 342 of file MatacqRawEvent.h.

const MatacqTBRawEvent::field32spec_t MatacqTBRawEvent::triggerType32 = {1, 0x0F000000}
staticprivate

Definition at line 103 of file MatacqRawEvent.h.

int MatacqTBRawEvent::tTrigPs
private

MATACQ trigger time position in ps

Definition at line 338 of file MatacqRawEvent.h.

Referenced by getTTrigPs(), and setRawData().