#include <DCCEventBlock.h>
Public Member Functions | |
unsigned int | bx () |
DCCEventBlock (DCCDataUnpacker *u, EcalElectronicsMapper *m, bool hU, bool srpU, bool tccU, bool feU, bool memU, bool forceToKeepFRdata) | |
void | display (std::ostream &o) |
void | enableFeIdChecks () |
void | enableSyncChecks () |
unsigned int | fov () |
short | getHLTChannel (int channel) |
unsigned int | l1A () |
unsigned int | mem () |
void | reset () |
void | setFESyncNumbers (short l1, short bx, short id) |
void | setHLTChannel (int channel, short value) |
void | setSRPSyncNumbers (short l1, short bx) |
void | setTCCSyncNumbers (short l1, short bx, short id) |
unsigned int | smId () |
virtual void | unpack (uint64_t *buffer, unsigned int bufferSize, unsigned int expFedId) |
DCCDataUnpacker * | unpacker () |
void | updateCollectors () |
virtual | ~DCCEventBlock () |
Protected Member Functions | |
void | addHeaderToCollection () |
virtual int | unpackTCCBlocks () |
Protected Attributes | |
unsigned int | blockLength_ |
unsigned int | bx_ |
uint64_t * | data_ |
unsigned int | dccErrors_ |
std::auto_ptr < EcalRawDataCollection > * | dccHeaders_ |
unsigned int | detailedTriggerType_ |
unsigned int | dwToEnd_ |
unsigned int | eventSize_ |
std::vector< short > | feBx_ |
std::vector< short > | feChStatus_ |
unsigned int | fedId_ |
std::vector< short > | feLv1_ |
bool | feUnpacking_ |
bool | forceToKeepFRdata_ |
unsigned int | fov_ |
bool | headerUnpacking_ |
std::vector< short > | hlt_ |
unsigned int | l1_ |
EcalElectronicsMapper * | mapper_ |
unsigned int | mem_ |
DCCMemBlock * | memBlock_ |
bool | memUnpacking_ |
unsigned int | orbitCounter_ |
unsigned int | runNumber_ |
unsigned int | runType_ |
unsigned int | smId_ |
unsigned int | sr_ |
unsigned int | srChStatus_ |
DCCSRPBlock * | srpBlock_ |
short | srpBx_ |
short | srpLv1_ |
bool | srpUnpacking_ |
DCCTCCBlock * | tccBlock_ |
std::vector< short > | tccBx_ |
std::vector< short > | tccChStatus_ |
std::vector< short > | tccLv1_ |
bool | tccUnpacking_ |
DCCFEBlock * | towerBlock_ |
unsigned int | triggerType_ |
unsigned int | tzs_ |
DCCDataUnpacker * | unpacker_ |
unsigned int | zs_ |
Definition at line 33 of file DCCEventBlock.h.
DCCEventBlock::DCCEventBlock | ( | DCCDataUnpacker * | u, |
EcalElectronicsMapper * | m, | ||
bool | hU, | ||
bool | srpU, | ||
bool | tccU, | ||
bool | feU, | ||
bool | memU, | ||
bool | forceToKeepFRdata | ||
) |
Definition at line 14 of file DCCEventBlock.cc.
References feBx_, feChStatus_, feLv1_, hlt_, memBlock_, srpBx_, srpLv1_, tccBx_, tccChStatus_, and tccLv1_.
: unpacker_(u), mapper_(m), headerUnpacking_(hU), srpUnpacking_(srpU), tccUnpacking_(tccU), feUnpacking_(feU),memUnpacking_(memU), forceToKeepFRdata_(forceToKeepFRdata) { // Build a Mem Unpacker Block memBlock_ = new DCCMemBlock(u,m,this); // setup and initialize ch status vectors for( int feChannel=1; feChannel <= 70; feChannel++) { feChStatus_.push_back(0); hlt_.push_back(1);} for( int tccChannel=1; tccChannel <= 4 ; tccChannel++){ tccChStatus_.push_back(0);} // setup and initialize sync vectors for( int feChannel=1; feChannel <= 70; feChannel++) { feBx_.push_back(-1); feLv1_.push_back(-1); } for( int tccChannel=1; tccChannel <= 4 ; tccChannel++){ tccBx_.push_back(-1); tccLv1_.push_back(-1);} srpBx_=-1; srpLv1_=-1; }
DCCEventBlock::~DCCEventBlock | ( | ) | [virtual] |
Definition at line 157 of file DCCEventBlock.cc.
References memBlock_, srpBlock_, tccBlock_, and towerBlock_.
{ if(towerBlock_){ delete towerBlock_; } if(tccBlock_) { delete tccBlock_; } if(memBlock_) { delete memBlock_; } if(srpBlock_) { delete srpBlock_; } }
void DCCEventBlock::addHeaderToCollection | ( | ) | [protected] |
Definition at line 74 of file DCCEventBlock.cc.
References bx_, dccErrors_, EcalDCCHeaderRuntypeDecoder::Decode(), detailedTriggerType_, feBx_, feChStatus_, fedId_, feLv1_, EcalElectronicsMapper::getActiveSM(), l1_, mapper_, orbitCounter_, runNumber_, runType_, EcalDCCHeaderBlock::setBasicTriggerType(), EcalDCCHeaderBlock::setBX(), EcalDCCHeaderBlock::setErrors(), EcalDCCHeaderBlock::setFEBx(), EcalDCCHeaderBlock::setFedId(), EcalDCCHeaderBlock::setFELv1(), EcalDCCHeaderBlock::setFEStatus(), EcalDCCHeaderBlock::setId(), EcalDCCHeaderBlock::setLV1(), EcalDCCHeaderBlock::setOrbit(), EcalDCCHeaderBlock::setRunNumber(), EcalDCCHeaderBlock::setSelectiveReadout(), EcalDCCHeaderBlock::setSRPBx(), EcalDCCHeaderBlock::setSRPLv1(), EcalDCCHeaderBlock::setSrpStatus(), EcalDCCHeaderBlock::setTCCBx(), EcalDCCHeaderBlock::setTCCLv1(), EcalDCCHeaderBlock::setTccStatus(), EcalDCCHeaderBlock::setTestZeroSuppression(), EcalDCCHeaderBlock::setZeroSuppression(), sr_, srChStatus_, srpBx_, srpLv1_, tccBx_, tccChStatus_, tccLv1_, triggerType_, tzs_, and zs_.
Referenced by DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
{ EcalDCCHeaderBlock theDCCheader; // container for fed_id (601-654 for ECAL) theDCCheader.setFedId(fedId_); // this needs to be migrated to the ECAL mapping package // dccId is number internal to ECAL running 1.. 54. // convention is that dccId = (fed_id - 600) int dccId = mapper_->getActiveSM(); // DCCHeaders follow the same convenction theDCCheader.setId(dccId); theDCCheader.setRunNumber(runNumber_); theDCCheader.setBasicTriggerType(triggerType_); theDCCheader.setLV1(l1_); theDCCheader.setBX(bx_); theDCCheader.setOrbit(orbitCounter_); theDCCheader.setErrors(dccErrors_); theDCCheader.setSelectiveReadout(sr_); theDCCheader.setZeroSuppression(zs_); theDCCheader.setTestZeroSuppression(tzs_); theDCCheader.setSrpStatus(srChStatus_); theDCCheader.setTccStatus(tccChStatus_); theDCCheader.setFEStatus(feChStatus_); theDCCheader.setSRPLv1(srpLv1_); theDCCheader.setSRPBx(srpBx_); theDCCheader.setFELv1(feLv1_); theDCCheader.setFEBx(feBx_); theDCCheader.setTCCLv1(tccLv1_); theDCCheader.setTCCBx(tccBx_); EcalDCCHeaderRuntypeDecoder theRuntypeDecoder; unsigned int DCCruntype = runType_; unsigned int DCCdetTriggerType = detailedTriggerType_; theRuntypeDecoder.Decode(triggerType_, DCCdetTriggerType , DCCruntype, &theDCCheader); // Add Header to collection (*dccHeaders_)->push_back(theDCCheader); }
unsigned int DCCEventBlock::bx | ( | ) | [inline] |
Definition at line 57 of file DCCEventBlock.h.
References bx_.
Referenced by DCCEETCCBlock::addTriggerPrimitivesToCollection(), DCCEETCCBlock::checkTccIdAndNumbTTs(), DCCEBTCCBlock::checkTccIdAndNumbTTs(), setFESyncNumbers(), setSRPSyncNumbers(), setTCCSyncNumbers(), DCCMemBlock::unpack(), DCCFEBlock::unpack(), DCCTCCBlock::unpack(), DCCSRPBlock::unpack(), DCCTowerBlock::unpackXtalData(), and DCCSCBlock::unpackXtalData().
{ return bx_; }
void DCCEventBlock::display | ( | std::ostream & | o | ) |
Definition at line 124 of file DCCEventBlock.cc.
References blockLength_, bx_, dccErrors_, feChStatus_, fedId_, i, gen::k, l1_, runNumber_, sr_, srChStatus_, tccChStatus_, triggerType_, tzs_, and zs_.
{ o<<"\n Unpacked Info for DCC Event Class" <<"\n DW1 =============================" <<"\n Fed Id "<<fedId_ <<"\n Bx "<<bx_ <<"\n L1 "<<l1_ <<"\n Trigger Type "<<triggerType_ <<"\n DW2 =============================" <<"\n Length "<<blockLength_ <<"\n Dcc errors "<<dccErrors_ <<"\n Run number "<<runNumber_ <<"\n DW3 =============================" <<"\n SR "<<sr_ <<"\n ZS "<<zs_ <<"\n TZS "<<tzs_ <<"\n SRStatus "<<srChStatus_; std::vector<short>::iterator it; int i(0),k(0); for(it = tccChStatus_.begin(); it!=tccChStatus_.end();it++,i++){ o<<"\n TCCStatus#"<<i<<" "<<(*it); } i=0; for(it = feChStatus_.begin();it!=feChStatus_.end();it++ ,i++){ if(!(i%14)){ o<<"\n DW"<<(k+3)<<" ============================="; k++; } o<<"\n FEStatus#"<<i<<" "<<(*it); } o<<"\n"; }
void DCCEventBlock::enableFeIdChecks | ( | ) |
Definition at line 54 of file DCCEventBlock.cc.
References DCCFEBlock::enableFeIdChecks(), and towerBlock_.
Referenced by DCCDataUnpacker::DCCDataUnpacker().
{ towerBlock_ ->enableFeIdChecks(); }
void DCCEventBlock::enableSyncChecks | ( | ) |
Definition at line 45 of file DCCEventBlock.cc.
References DCCDataBlockPrototype::enableSyncChecks(), memBlock_, srpBlock_, tccBlock_, and towerBlock_.
Referenced by DCCDataUnpacker::DCCDataUnpacker().
{ towerBlock_ ->enableSyncChecks(); tccBlock_ ->enableSyncChecks(); memBlock_ ->enableSyncChecks(); srpBlock_ ->enableSyncChecks(); }
unsigned int DCCEventBlock::fov | ( | ) | [inline] |
Definition at line 54 of file DCCEventBlock.h.
References fov_.
Referenced by DCCEBSRPBlock::addSRFlagToCollection(), DCCEETCCBlock::addTriggerPrimitivesToCollection(), DCCMemBlock::unpack(), DCCFEBlock::unpack(), DCCTCCBlock::unpack(), and DCCSRPBlock::unpack().
{ return fov_; }
short DCCEventBlock::getHLTChannel | ( | int | channel | ) | [inline] |
Definition at line 64 of file DCCEventBlock.h.
References hlt_.
Referenced by DCCFEBlock::unpack().
{ return hlt_[channel-1];}
unsigned int DCCEventBlock::l1A | ( | ) | [inline] |
Definition at line 56 of file DCCEventBlock.h.
References l1_.
Referenced by DCCEETCCBlock::addTriggerPrimitivesToCollection(), DCCEBSRPBlock::checkSrpIdAndNumbSRFlags(), DCCEETCCBlock::checkTccIdAndNumbTTs(), DCCEBTCCBlock::checkTccIdAndNumbTTs(), DCCSCBlock::fillEcalElectronicsError(), DCCTowerBlock::fillEcalElectronicsError(), DCCMemBlock::unpack(), DCCFEBlock::unpack(), DCCTCCBlock::unpack(), DCCSRPBlock::unpack(), DCCMemBlock::unpackMemTowerData(), DCCTowerBlock::unpackXtalData(), and DCCSCBlock::unpackXtalData().
{ return l1_; }
unsigned int DCCEventBlock::mem | ( | ) | [inline] |
void DCCEventBlock::reset | ( | void | ) |
Definition at line 34 of file DCCEventBlock.cc.
References feBx_, feLv1_, srpBx_, srpLv1_, tccBx_, and tccLv1_.
Referenced by DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
void DCCEventBlock::setFESyncNumbers | ( | short | l1, |
short | bx, | ||
short | id | ||
) | [inline] |
Definition at line 61 of file DCCEventBlock.h.
References bx(), feBx_, and feLv1_.
Referenced by DCCMemBlock::unpack(), and DCCFEBlock::unpack().
void DCCEventBlock::setHLTChannel | ( | int | channel, |
short | value | ||
) | [inline] |
Definition at line 63 of file DCCEventBlock.h.
References hlt_, and relativeConstraints::value.
void DCCEventBlock::setSRPSyncNumbers | ( | short | l1, |
short | bx | ||
) | [inline] |
Definition at line 60 of file DCCEventBlock.h.
References bx(), srpBx_, and srpLv1_.
Referenced by DCCSRPBlock::unpack().
void DCCEventBlock::setTCCSyncNumbers | ( | short | l1, |
short | bx, | ||
short | id | ||
) | [inline] |
Definition at line 62 of file DCCEventBlock.h.
References bx(), tccBx_, and tccLv1_.
Referenced by DCCTCCBlock::unpack().
unsigned int DCCEventBlock::smId | ( | ) | [inline] |
virtual void DCCEventBlock::unpack | ( | uint64_t * | buffer, |
unsigned int | bufferSize, | ||
unsigned int | expFedId | ||
) | [inline, virtual] |
Reimplemented in DCCEBEventBlock, and DCCEEEventBlock.
Definition at line 41 of file DCCEventBlock.h.
{};
DCCDataUnpacker* DCCEventBlock::unpacker | ( | ) | [inline] |
virtual int DCCEventBlock::unpackTCCBlocks | ( | ) | [inline, protected, virtual] |
Reimplemented in DCCEBEventBlock, and DCCEEEventBlock.
Definition at line 71 of file DCCEventBlock.h.
References BLOCK_UNPACKED.
{ return BLOCK_UNPACKED;}
void DCCEventBlock::updateCollectors | ( | ) |
Definition at line 60 of file DCCEventBlock.cc.
References dccHeaders_, DCCDataUnpacker::dccHeadersCollection(), memBlock_, srpBlock_, tccBlock_, towerBlock_, unpacker_, DCCDataBlockPrototype::updateCollectors(), DCCFEBlock::updateCollectors(), and DCCMemBlock::updateCollectors().
Referenced by DCCDataUnpacker::unpack().
{ dccHeaders_ = unpacker_->dccHeadersCollection(); memBlock_ ->updateCollectors(); tccBlock_ ->updateCollectors(); srpBlock_ ->updateCollectors(); towerBlock_ ->updateCollectors(); }
unsigned int DCCEventBlock::blockLength_ [protected] |
Definition at line 95 of file DCCEventBlock.h.
Referenced by display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::bx_ [protected] |
Definition at line 91 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), bx(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
uint64_t* DCCEventBlock::data_ [protected] |
Definition at line 74 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::unpack(), DCCEEEventBlock::unpack(), DCCEEEventBlock::unpackTCCBlocks(), and DCCEBEventBlock::unpackTCCBlocks().
unsigned int DCCEventBlock::dccErrors_ [protected] |
Definition at line 96 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
std::auto_ptr<EcalRawDataCollection>* DCCEventBlock::dccHeaders_ [protected] |
Definition at line 120 of file DCCEventBlock.h.
Referenced by updateCollectors().
unsigned int DCCEventBlock::detailedTriggerType_ [protected] |
Definition at line 99 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::dwToEnd_ [protected] |
Definition at line 76 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::unpack(), DCCEEEventBlock::unpack(), DCCEEEventBlock::unpackTCCBlocks(), and DCCEBEventBlock::unpackTCCBlocks().
unsigned int DCCEventBlock::eventSize_ [protected] |
Definition at line 75 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
std::vector<short> DCCEventBlock::feBx_ [protected] |
Definition at line 82 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), reset(), and setFESyncNumbers().
std::vector<short> DCCEventBlock::feChStatus_ [protected] |
Definition at line 78 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::fedId_ [protected] |
Definition at line 90 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
std::vector<short> DCCEventBlock::feLv1_ [protected] |
Definition at line 82 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), reset(), and setFESyncNumbers().
bool DCCEventBlock::feUnpacking_ [protected] |
Definition at line 116 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), DCCEEEventBlock::DCCEEEventBlock(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
bool DCCEventBlock::forceToKeepFRdata_ [protected] |
Definition at line 118 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), and DCCEEEventBlock::DCCEEEventBlock().
unsigned int DCCEventBlock::fov_ [protected] |
Definition at line 89 of file DCCEventBlock.h.
Referenced by fov(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
bool DCCEventBlock::headerUnpacking_ [protected] |
Definition at line 113 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
std::vector<short> DCCEventBlock::hlt_ [protected] |
Definition at line 80 of file DCCEventBlock.h.
Referenced by DCCEventBlock(), getHLTChannel(), and setHLTChannel().
unsigned int DCCEventBlock::l1_ [protected] |
Definition at line 92 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), l1A(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
EcalElectronicsMapper* DCCEventBlock::mapper_ [protected] |
Definition at line 111 of file DCCEventBlock.h.
Referenced by addHeaderToCollection().
unsigned int DCCEventBlock::mem_ [protected] |
Definition at line 102 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), mem(), and DCCEEEventBlock::unpack().
DCCMemBlock* DCCEventBlock::memBlock_ [protected] |
Definition at line 109 of file DCCEventBlock.h.
Referenced by DCCEventBlock(), enableSyncChecks(), DCCEBEventBlock::unpack(), DCCEEEventBlock::unpack(), updateCollectors(), and ~DCCEventBlock().
bool DCCEventBlock::memUnpacking_ [protected] |
Definition at line 117 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::orbitCounter_ [protected] |
Definition at line 101 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::runNumber_ [protected] |
Definition at line 97 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::runType_ [protected] |
Definition at line 98 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::smId_ [protected] |
Definition at line 94 of file DCCEventBlock.h.
Referenced by smId().
unsigned int DCCEventBlock::sr_ [protected] |
Definition at line 103 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::srChStatus_ [protected] |
Definition at line 87 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
DCCSRPBlock* DCCEventBlock::srpBlock_ [protected] |
Definition at line 110 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), DCCEEEventBlock::DCCEEEventBlock(), enableSyncChecks(), DCCEBEventBlock::unpack(), DCCEEEventBlock::unpack(), updateCollectors(), and ~DCCEventBlock().
short DCCEventBlock::srpBx_ [protected] |
Definition at line 84 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), reset(), and setSRPSyncNumbers().
short DCCEventBlock::srpLv1_ [protected] |
Definition at line 84 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), reset(), and setSRPSyncNumbers().
bool DCCEventBlock::srpUnpacking_ [protected] |
Definition at line 114 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), DCCEEEventBlock::DCCEEEventBlock(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
DCCTCCBlock* DCCEventBlock::tccBlock_ [protected] |
Definition at line 108 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), DCCEEEventBlock::DCCEEEventBlock(), enableSyncChecks(), DCCEEEventBlock::unpackTCCBlocks(), DCCEBEventBlock::unpackTCCBlocks(), updateCollectors(), and ~DCCEventBlock().
std::vector<short> DCCEventBlock::tccBx_ [protected] |
Definition at line 83 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), reset(), and setTCCSyncNumbers().
std::vector<short> DCCEventBlock::tccChStatus_ [protected] |
Definition at line 79 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), display(), DCCEBEventBlock::unpack(), DCCEEEventBlock::unpack(), DCCEEEventBlock::unpackTCCBlocks(), and DCCEBEventBlock::unpackTCCBlocks().
std::vector<short> DCCEventBlock::tccLv1_ [protected] |
Definition at line 83 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), DCCEventBlock(), reset(), and setTCCSyncNumbers().
bool DCCEventBlock::tccUnpacking_ [protected] |
Definition at line 115 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), and DCCEEEventBlock::DCCEEEventBlock().
DCCFEBlock* DCCEventBlock::towerBlock_ [protected] |
Definition at line 107 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::DCCEBEventBlock(), DCCEEEventBlock::DCCEEEventBlock(), enableFeIdChecks(), enableSyncChecks(), DCCEBEventBlock::unpack(), DCCEEEventBlock::unpack(), updateCollectors(), and ~DCCEventBlock().
unsigned int DCCEventBlock::triggerType_ [protected] |
Definition at line 93 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
unsigned int DCCEventBlock::tzs_ [protected] |
Definition at line 105 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().
DCCDataUnpacker* DCCEventBlock::unpacker_ [protected] |
Definition at line 73 of file DCCEventBlock.h.
Referenced by DCCEBEventBlock::unpack(), DCCEEEventBlock::unpack(), unpacker(), and updateCollectors().
unsigned int DCCEventBlock::zs_ [protected] |
Definition at line 104 of file DCCEventBlock.h.
Referenced by addHeaderToCollection(), display(), DCCEBEventBlock::unpack(), and DCCEEEventBlock::unpack().