CMS 3D CMS Logo

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

#include <CastorCTDCHeader.h>

Public Member Functions

unsigned short BOEshouldBe5Always () const
 
short BOEshouldBeZeroAlways () const
 
 CastorCTDCHeader ()
 
void clear ()
 
void copyMergerData (const CastorMergerData &data, bool valid)
 
void copySpigotData (unsigned int spigot_id, const CastorCORData &data, bool valid=true, unsigned char LRB_error_word=0)
 Add the given CastorCORData as the given spigot's data. This should be done in increasing spigot order! More...
 
int getAcceptTimeTTS () const
 
int getBunchId () const
 
bool getBxMismatchWithDCC (unsigned int nspigot) const
 Read the "BxID FAILS TO MATCH WITH DCC" bit for this spigot. More...
 
int getByte1Zeroes () const
 
int getByte3Zeroes () const
 
int getByte567Zeroes () const
 
unsigned short getCDFEventType () const
 
short getCDFversionNumber () const
 
short getDCCDataFormatVersion () const
 
unsigned long getDCCEventNumber () const
 
int getDCCStatus () const
 
int getHTRStatusBits () const
 
unsigned char getLRBErrorBits (unsigned int nspigot) const
 Access the Link Receiver Board error bits (decoding tbd) More...
 
unsigned int getOrbitNumber () const
 
unsigned int getSlink64ReservedBits () const
 
int getSourceId () const
 
bool getSpigotCRCError (unsigned int nspigot) const
 Read the "CRC-Mismatch" bit for this spigot. More...
 
int getSpigotData (int nspigot, CastorCORData &decodeTool, int validSize) const
 
unsigned int getSpigotDataLength (int nspigot) const
 
bool getSpigotDataTruncated (unsigned int nspigot) const
 Read the "TRUNCATED" bit for this spigot; LRB truncated data (took too long) More...
 
bool getSpigotEnabled (unsigned int nspigot) const
 Read the "ENABLED" bit for this spigot. More...
 
unsigned char getSpigotErrorBits (unsigned int nspigot) const
 Access the HTR error bits (decoding tbd) More...
 
bool getSpigotErrorFlag (int nspigot) const
 
bool getSpigotPresent (unsigned int nspigot) const
 Read the "PRESENT" bit for this spigot. More...
 
int getSpigotSummary (int nspigot) const
 
bool getSpigotValid (unsigned int nspigot) const
 Read the "VALID" bit for this spigot; TTC EvN matched HTR EvN. More...
 
unsigned int getTotalLengthBytes () const
 
bool SawCT_BcN_MxMx () const
 
bool SawCT_EvN_MxMx () const
 
bool SawL1A_BcN_MxMx () const
 
bool SawL1A_EvN_MxMx () const
 
bool SawOrbitLengthErr () const
 
bool SawTTC_DoubErr () const
 
bool SawTTC_SingErr () const
 
bool SawTTS_BSY () const
 
bool SawTTS_OFW () const
 
bool SawTTS_SYN () const
 
void setHeader (int sourceid, int bcn, int l1aN, int orbN)
 
bool thereIsASecondCDFHeaderWord () const
 
bool thereIsAThirdCDFHeaderWord () const
 

Static Public Attributes

static const int SPIGOT_COUNT = 2
 

Private Attributes

unsigned int commondataformat0
 
unsigned int commondataformat1
 
unsigned int commondataformat2
 
unsigned int commondataformat3
 
unsigned int ctdch0
 
unsigned int ctdch1
 
unsigned int spigotInfo [4]
 

Detailed Description

Interpretive class for an CastorCTDCHeader

Date:
2009/02/20 17:46:27
Revision:
1.1
Author
A. Campbell - DESY

Definition at line 19 of file CastorCTDCHeader.h.

Constructor & Destructor Documentation

CastorCTDCHeader::CastorCTDCHeader ( )

Definition at line 15 of file CastorCTDCHeader.cc.

Referenced by copyMergerData(), copySpigotData(), getSpigotData(), and getTotalLengthBytes().

15 { }

Member Function Documentation

unsigned short CastorCTDCHeader::BOEshouldBe5Always ( ) const
inline

Get the inviolable '5' in the highest 4 bits of the CDF header.

Definition at line 42 of file CastorCTDCHeader.h.

References commondataformat1.

42 { return ( (commondataformat1>>28) & 0x0F ); }
unsigned int commondataformat1
short CastorCTDCHeader::BOEshouldBeZeroAlways ( ) const
inline

Get the Beginning Of Event bits. If it's not the first or last CDF Slink64 word, the high 4 bits must be zero.

Definition at line 52 of file CastorCTDCHeader.h.

References commondataformat3.

52 { return ( (commondataformat3>>28) & 0x0F); }
unsigned int commondataformat3
void CastorCTDCHeader::clear ( void  )

clear the contents of this header

Definition at line 37 of file CastorCTDCHeader.cc.

References commondataformat0, commondataformat1, commondataformat2, commondataformat3, ctdch0, ctdch1, i, and spigotInfo.

Referenced by Vispa.Views.WidgetView.WidgetView::closeEvent(), Vispa.Views.BoxDecayView.BoxDecayView::closeEvent(), Vispa.Share.FindAlgorithm.FindAlgorithm::findUsingFindDialog(), CastorCtdcPacker::pack(), Vispa.Views.LineDecayView.LineDecayView::setDataObjects(), Vispa.Views.WidgetView.WidgetView::setDataObjects(), Vispa.Views.TreeView.TreeView::updateContent(), Vispa.Views.TableView.TableView::updateContent(), Vispa.Views.BoxDecayView.BoxDecayView::updateContent(), and Vispa.Views.PropertyView.PropertyView::updateContent().

37  {
39  commondataformat1=0x50000000u;
42  ctdch0=0x1; // format version 1
43  ctdch1=0;
44  for (int i=0; i<3; i++)
45  spigotInfo[i]=0;
46  spigotInfo[3]=0x12345678; // end DCC header pattern
47 
48 }
int i
Definition: DBlmapReader.cc:9
unsigned int commondataformat0
unsigned int commondataformat3
unsigned int spigotInfo[4]
unsigned int commondataformat2
unsigned int commondataformat1
unsigned int ctdch1
unsigned int ctdch0
void CastorCTDCHeader::copyMergerData ( const CastorMergerData data,
bool  valid 
)

Definition at line 76 of file CastorCTDCHeader.cc.

References CastorCTDCHeader(), ctdch0, CastorMergerData::getErrorsWord(), CastorMergerData::getRawData(), CastorMergerData::getRawLength(), getSpigotDataLength(), i, and spigotInfo.

Referenced by CastorCtdcPacker::pack().

76  {
77  unsigned int spigot_id = 2;
78  // construct the spigot info
79  spigotInfo[spigot_id]=(data.getRawLength()/2)|0xc000; // Enabled & Present
80  if (valid) spigotInfo[spigot_id]|=0x2000; // Valid
81  spigotInfo[spigot_id]|=((data.getErrorsWord()&0xFF)<<24);
82  // status info...
83  if (valid) ctdch0|=(1<<(spigot_id+14));
84  // copy
85  unsigned int lenSoFar=0;
86  for (unsigned int i=0; i<spigot_id; i++) lenSoFar+=getSpigotDataLength(i);
87  unsigned short* startingPoint=((unsigned short*)this)+sizeof(CastorCTDCHeader)/sizeof(unsigned short)+lenSoFar*2;
88  memcpy(startingPoint,data.getRawData(),sizeof(unsigned short)*data.getRawLength());
89  // update the trailer...
90  lenSoFar+=data.getRawLength()/2; // 32-bit words
91  uint32_t* trailer=((uint32_t*)this)+sizeof(CastorCTDCHeader)/sizeof(uint32_t)+lenSoFar;
92  int len64=sizeof(CastorCTDCHeader)/8+lenSoFar/2+1;
93  trailer[1]=0;
94  trailer[0]=0xA0000000u|len64;
95 }
int i
Definition: DBlmapReader.cc:9
const int getRawLength() const
Get the length of the raw data.
unsigned int getErrorsWord() const
Get the errors word.
unsigned int spigotInfo[4]
unsigned int getSpigotDataLength(int nspigot) const
const unsigned short * getRawData() const
Get a pointer to the raw data.
unsigned int ctdch0
void CastorCTDCHeader::copySpigotData ( unsigned int  spigot_id,
const CastorCORData data,
bool  valid = true,
unsigned char  LRB_error_word = 0 
)

Add the given CastorCORData as the given spigot's data. This should be done in increasing spigot order!

Parameters
spigot_id
spigot_data
validflag
LRB_error_word

Definition at line 55 of file CastorCTDCHeader.cc.

References CastorCTDCHeader(), ctdch0, CastorCORData::getErrorsWord(), CastorCORData::getRawData(), CastorCORData::getRawLength(), getSpigotDataLength(), i, SPIGOT_COUNT, and spigotInfo.

Referenced by CastorCtdcPacker::pack().

55  {
56  if (spigot_id>=(unsigned int)SPIGOT_COUNT) return;
57  // construct the spigot info
58  spigotInfo[spigot_id]=(data.getRawLength()/2)|0xc000;
59  if (valid) spigotInfo[spigot_id]|=0x2000;
60  spigotInfo[spigot_id]|=(LRB_error_word<<16)|((data.getErrorsWord()&0xFF)<<24);
61  // status info...
62  if (valid) ctdch0|=(1<<(spigot_id+14));
63  // copy
64  unsigned int lenSoFar=0;
65  for (unsigned int i=0; i<spigot_id; i++) lenSoFar+=getSpigotDataLength(i);
66  unsigned short* startingPoint=((unsigned short*)this)+sizeof(CastorCTDCHeader)/sizeof(unsigned short)+lenSoFar*2;
67  memcpy(startingPoint,data.getRawData(),sizeof(unsigned short)*data.getRawLength());
68  // update the trailer...
69  lenSoFar+=data.getRawLength()/2; // 32-bit words
70  uint32_t* trailer=((uint32_t*)this)+sizeof(CastorCTDCHeader)/sizeof(uint32_t)+lenSoFar;
71  int len64=sizeof(CastorCTDCHeader)/8+lenSoFar/2+1;
72  trailer[1]=0;
73  trailer[0]=0xA0000000u|len64;
74 }
int i
Definition: DBlmapReader.cc:9
unsigned int getErrorsWord() const
Get the errors word.
static const int SPIGOT_COUNT
unsigned int spigotInfo[4]
unsigned int getSpigotDataLength(int nspigot) const
const int getRawLength() const
Get the length of the raw data.
Definition: CastorCORData.h:38
const unsigned short * getRawData() const
Get a pointer to the raw data.
Definition: CastorCORData.h:35
unsigned int ctdch0
int CastorCTDCHeader::getAcceptTimeTTS ( ) const
inline

Definition at line 56 of file CastorCTDCHeader.h.

References ctdch0.

56 { return ((ctdch0>>8)& 0x0000000F); }
unsigned int ctdch0
int CastorCTDCHeader::getBunchId ( ) const
inline

get the bunch id from the CDF header

Definition at line 36 of file CastorCTDCHeader.h.

References commondataformat0.

36 { return (commondataformat0>>20)&0xFFF; }
unsigned int commondataformat0
bool CastorCTDCHeader::getBxMismatchWithDCC ( unsigned int  nspigot) const
inline

Read the "BxID FAILS TO MATCH WITH DCC" bit for this spigot.

Definition at line 96 of file CastorCTDCHeader.h.

References spigotInfo.

96 { return (nspigot>=3)?(false):(spigotInfo[nspigot]&0x2000); }
unsigned int spigotInfo[4]
int CastorCTDCHeader::getByte1Zeroes ( ) const
inline

Definition at line 57 of file CastorCTDCHeader.h.

References ctdch0.

57 { return ((ctdch0>>12)& 0x00000003); }
unsigned int ctdch0
int CastorCTDCHeader::getByte3Zeroes ( ) const
inline

Definition at line 59 of file CastorCTDCHeader.h.

References ctdch0.

59 { return ((ctdch0>>29)& 0x00000007); }
unsigned int ctdch0
int CastorCTDCHeader::getByte567Zeroes ( ) const
inline

Definition at line 61 of file CastorCTDCHeader.h.

References ctdch1.

61 { return (ctdch1 & 0xFF00FC00); }
unsigned int ctdch1
unsigned short CastorCTDCHeader::getCDFEventType ( ) const
inline

Get the Event Type value (2007.11.03 - Not defined, but should stay consistent among events.)

Definition at line 40 of file CastorCTDCHeader.h.

References commondataformat1.

40 { return ( (commondataformat1>>24) & 0x0F ); }
unsigned int commondataformat1
short CastorCTDCHeader::getCDFversionNumber ( ) const
inline

Get the Format Version of the Common Data Format

Definition at line 32 of file CastorCTDCHeader.h.

References commondataformat0.

32 {return ((commondataformat0>>4) & 0x0F); }
unsigned int commondataformat0
short CastorCTDCHeader::getDCCDataFormatVersion ( ) const
inline

Definition at line 55 of file CastorCTDCHeader.h.

References ctdch0.

55 { return (ctdch0 & 0xFF); }
unsigned int ctdch0
unsigned long CastorCTDCHeader::getDCCEventNumber ( ) const
inline

get the Event Number from the CDF header

Definition at line 38 of file CastorCTDCHeader.h.

References commondataformat1.

38 { return (commondataformat1 & 0x00FFFFFF); }
unsigned int commondataformat1
int CastorCTDCHeader::getDCCStatus ( ) const
inline
int CastorCTDCHeader::getHTRStatusBits ( ) const
inline

Definition at line 58 of file CastorCTDCHeader.h.

References ctdch0.

58 { return ((ctdch0>>14)& 0x00007FFF); }
unsigned int ctdch0
unsigned char CastorCTDCHeader::getLRBErrorBits ( unsigned int  nspigot) const
inline

Access the Link Receiver Board error bits (decoding tbd)

Definition at line 106 of file CastorCTDCHeader.h.

References spigotInfo.

106 { return (nspigot>=3)?(0):((unsigned char)(spigotInfo[nspigot]>>16)); }
unsigned int spigotInfo[4]
unsigned int CastorCTDCHeader::getOrbitNumber ( ) const
inline

Get the Orbit Number from the CDF.

Definition at line 48 of file CastorCTDCHeader.h.

References commondataformat2.

48 { return (commondataformat2>>4); }
unsigned int commondataformat2
unsigned int CastorCTDCHeader::getSlink64ReservedBits ( ) const
inline

get the (undefined) 'Reserved' part of the second Slink64 CDF word

Definition at line 50 of file CastorCTDCHeader.h.

References commondataformat3.

50 { return ( (commondataformat3>>4)&0x00FFFFFF ); }
unsigned int commondataformat3
int CastorCTDCHeader::getSourceId ( ) const
inline

get the source id from the CDF header

Definition at line 34 of file CastorCTDCHeader.h.

References commondataformat0.

Referenced by CastorCtdcUnpacker::unpack().

34 { return (commondataformat0>>8)&0xFFF; }
unsigned int commondataformat0
bool CastorCTDCHeader::getSpigotCRCError ( unsigned int  nspigot) const
inline

Read the "CRC-Mismatch" bit for this spigot.

Definition at line 102 of file CastorCTDCHeader.h.

References spigotInfo.

102 { return (nspigot>=3)?(false):(spigotInfo[nspigot]&0x0400); }
unsigned int spigotInfo[4]
int CastorCTDCHeader::getSpigotData ( int  nspigot,
CastorCORData decodeTool,
int  validSize 
) const

Load the given decoder with the pointer and length from this spigot Returns 0 on success Returns -1 if spigot points to data area beyond validSize

Definition at line 24 of file CastorCTDCHeader.cc.

References CastorCORData::adoptData(), newFWLiteAna::base, CastorCTDCHeader(), i, evf::evtn::offset(), and spigotInfo.

Referenced by CastorCtdcUnpacker::unpack().

24  {
25  const unsigned short* base=((unsigned short*)this)+sizeof(CastorCTDCHeader)/sizeof(unsigned short);
26  int offset=0,i,len=0;
27  for (i=0; i<=nspigot; i++) {
28  offset+=len;
29  len=(spigotInfo[i]&0x3FF)*2;
30  }
31  if ((offset+len+sizeof(CastorCTDCHeader)/sizeof(unsigned short))<(validSize/sizeof(unsigned short))) {
32  decodeTool.adoptData(base+offset,len);
33  return 0;
34  } else { return -1; }
35 }
tuple base
Main Program
Definition: newFWLiteAna.py:92
int i
Definition: DBlmapReader.cc:9
void adoptData(const unsigned short *data, int length)
unsigned int spigotInfo[4]
unsigned int offset(bool)
unsigned int CastorCTDCHeader::getSpigotDataLength ( int  nspigot) const
inline

Get the size (in 32-bit words) of the data from this spigot

Definition at line 89 of file CastorCTDCHeader.h.

References spigotInfo.

Referenced by copyMergerData(), copySpigotData(), and operator<<().

89 { return (nspigot>=3)?(0):(spigotInfo[nspigot]&0x3ff); }
unsigned int spigotInfo[4]
bool CastorCTDCHeader::getSpigotDataTruncated ( unsigned int  nspigot) const
inline

Read the "TRUNCATED" bit for this spigot; LRB truncated data (took too long)

Definition at line 100 of file CastorCTDCHeader.h.

References spigotInfo.

100 { return (nspigot>=3)?(false):(spigotInfo[nspigot]&0x0800); }
unsigned int spigotInfo[4]
bool CastorCTDCHeader::getSpigotEnabled ( unsigned int  nspigot) const
inline

Read the "ENABLED" bit for this spigot.

Definition at line 92 of file CastorCTDCHeader.h.

References spigotInfo.

Referenced by operator<<().

92 { return (nspigot>=3)?(false):(spigotInfo[nspigot]&0x8000); }
unsigned int spigotInfo[4]
unsigned char CastorCTDCHeader::getSpigotErrorBits ( unsigned int  nspigot) const
inline

Access the HTR error bits (decoding tbd)

Definition at line 104 of file CastorCTDCHeader.h.

References spigotInfo.

Referenced by operator<<().

104 { return (nspigot>=3)?(0):((unsigned char)(spigotInfo[nspigot]>>24)); }
unsigned int spigotInfo[4]
bool CastorCTDCHeader::getSpigotErrorFlag ( int  nspigot) const
inline

Get the value flagging a spigot's summary of error flags.

Definition at line 64 of file CastorCTDCHeader.h.

References ctdch0.

64  {
65  return (( ctdch0>>(14+nspigot) )&0x0001); }
unsigned int ctdch0
bool CastorCTDCHeader::getSpigotPresent ( unsigned int  nspigot) const
inline

Read the "PRESENT" bit for this spigot.

Definition at line 94 of file CastorCTDCHeader.h.

References spigotInfo.

Referenced by operator<<(), and CastorCtdcUnpacker::unpack().

94 { return (nspigot>=3)?(false):(spigotInfo[nspigot]&0x4000); }
unsigned int spigotInfo[4]
int CastorCTDCHeader::getSpigotSummary ( int  nspigot) const
inline

Get a given spigot summary from the DCC Header

Definition at line 80 of file CastorCTDCHeader.h.

References spigotInfo.

80 { return spigotInfo[nspigot]; }
unsigned int spigotInfo[4]
bool CastorCTDCHeader::getSpigotValid ( unsigned int  nspigot) const
inline

Read the "VALID" bit for this spigot; TTC EvN matched HTR EvN.

Definition at line 98 of file CastorCTDCHeader.h.

References spigotInfo.

Referenced by operator<<().

98 { return (nspigot>=3)?(false):(spigotInfo[nspigot]&0x1000); }
unsigned int spigotInfo[4]
unsigned int CastorCTDCHeader::getTotalLengthBytes ( ) const

Determine the expected total length of this packet in bytes

Definition at line 17 of file CastorCTDCHeader.cc.

References CastorCTDCHeader(), i, SPIGOT_COUNT, and spigotInfo.

17  {
18  unsigned int totalSize=sizeof(CastorCTDCHeader);
19  for (int i=0; i<SPIGOT_COUNT+1; i++) // includes merger pay load
20  totalSize+=(spigotInfo[i]&0x3FF)*4;
21  return totalSize; // doesn't include the trailer
22 }
int i
Definition: DBlmapReader.cc:9
static const int SPIGOT_COUNT
unsigned int spigotInfo[4]
bool CastorCTDCHeader::SawCT_BcN_MxMx ( ) const
inline

Definition at line 74 of file CastorCTDCHeader.h.

References getDCCStatus().

74 { return ((getDCCStatus()>>6) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawCT_EvN_MxMx ( ) const
inline

Definition at line 73 of file CastorCTDCHeader.h.

References getDCCStatus().

73 { return ((getDCCStatus()>>5) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawL1A_BcN_MxMx ( ) const
inline

Definition at line 72 of file CastorCTDCHeader.h.

References getDCCStatus().

72 { return ((getDCCStatus()>>4) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawL1A_EvN_MxMx ( ) const
inline

Definition at line 71 of file CastorCTDCHeader.h.

References getDCCStatus().

71 { return ((getDCCStatus()>>3) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawOrbitLengthErr ( ) const
inline

Definition at line 75 of file CastorCTDCHeader.h.

References getDCCStatus().

75 { return ((getDCCStatus()>>7) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawTTC_DoubErr ( ) const
inline

Definition at line 77 of file CastorCTDCHeader.h.

References getDCCStatus().

77 { return ((getDCCStatus()>>9) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawTTC_SingErr ( ) const
inline

Definition at line 76 of file CastorCTDCHeader.h.

References getDCCStatus().

76 { return ((getDCCStatus()>>8) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawTTS_BSY ( ) const
inline

Definition at line 69 of file CastorCTDCHeader.h.

References getDCCStatus().

69 { return ((getDCCStatus()>>1) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawTTS_OFW ( ) const
inline

Get the status of these error counters in the DCC motherboard.

Definition at line 68 of file CastorCTDCHeader.h.

References getDCCStatus().

68 { return ((getDCCStatus()>>0) & 0x00000001);}
int getDCCStatus() const
bool CastorCTDCHeader::SawTTS_SYN ( ) const
inline

Definition at line 70 of file CastorCTDCHeader.h.

References getDCCStatus().

70 { return ((getDCCStatus()>>2) & 0x00000001);}
int getDCCStatus() const
void CastorCTDCHeader::setHeader ( int  sourceid,
int  bcn,
int  l1aN,
int  orbN 
)

setup the header

Definition at line 50 of file CastorCTDCHeader.cc.

References commondataformat0, and commondataformat1.

Referenced by CastorCtdcPacker::pack().

50  {
51  commondataformat0=0x8|((sourceid&0xFFF)<<8)|((bcn&0xFFF)<<20);
52  commondataformat1=0x50000000u|(l1aN&0xFFFFFF);
53 }
unsigned int commondataformat0
unsigned int commondataformat1
bool CastorCTDCHeader::thereIsASecondCDFHeaderWord ( ) const
inline

get the bit indicating that another CDF header Slink64 word follows the first one.

Definition at line 30 of file CastorCTDCHeader.h.

References commondataformat0.

30 {return ((commondataformat0>>3) & 0x0001); }
unsigned int commondataformat0
bool CastorCTDCHeader::thereIsAThirdCDFHeaderWord ( ) const
inline

Check the third bit of second Slink64 CDF word

Definition at line 46 of file CastorCTDCHeader.h.

References commondataformat2.

46 {return ((commondataformat2>>3) & 0x0001); }
unsigned int commondataformat2

Member Data Documentation

unsigned int CastorCTDCHeader::commondataformat0
private
unsigned int CastorCTDCHeader::commondataformat1
private
unsigned int CastorCTDCHeader::commondataformat2
private

Definition at line 128 of file CastorCTDCHeader.h.

Referenced by clear(), getOrbitNumber(), and thereIsAThirdCDFHeaderWord().

unsigned int CastorCTDCHeader::commondataformat3
private

Definition at line 129 of file CastorCTDCHeader.h.

Referenced by BOEshouldBeZeroAlways(), clear(), and getSlink64ReservedBits().

unsigned int CastorCTDCHeader::ctdch0
private
unsigned int CastorCTDCHeader::ctdch1
private

Definition at line 131 of file CastorCTDCHeader.h.

Referenced by clear(), getByte567Zeroes(), and getDCCStatus().

const int CastorCTDCHeader::SPIGOT_COUNT = 2
static
unsigned int CastorCTDCHeader::spigotInfo[4]
private