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
DTROS8Unpacker Class Reference

#include <DTROS8Unpacker.h>

Inheritance diagram for DTROS8Unpacker:
DTUnpacker

Public Member Functions

 DTROS8Unpacker (const edm::ParameterSet &ps)
 Constructor. More...
 
virtual void interpretRawData (const unsigned int *index, int datasize, int dduID, edm::ESHandle< DTReadOutMapping > &mapping, std::auto_ptr< DTDigiCollection > &product, std::auto_ptr< DTLocalTriggerCollection > &product2, uint16_t rosList=0)
 
virtual ~DTROS8Unpacker ()
 Destructor. More...
 
- Public Member Functions inherited from DTUnpacker
 DTUnpacker ()
 Constructor. More...
 
virtual ~DTUnpacker ()
 Destructor. More...
 

Private Attributes

const edm::ParameterSet pset
 

Detailed Description

The unpacker for DTs' ROS8: final version of Read Out Sector board with 25 channels.

Author
M. Zanetti INFN Padova FRC 140906

Definition at line 18 of file DTROS8Unpacker.h.

Constructor & Destructor Documentation

DTROS8Unpacker::DTROS8Unpacker ( const edm::ParameterSet ps)
inline

Constructor.

Definition at line 23 of file DTROS8Unpacker.h.

23 : pset(ps) {}
const edm::ParameterSet pset
virtual DTROS8Unpacker::~DTROS8Unpacker ( )
inlinevirtual

Destructor.

Definition at line 26 of file DTROS8Unpacker.h.

26 {}

Member Function Documentation

void DTROS8Unpacker::interpretRawData ( const unsigned int *  index,
int  datasize,
int  dduID,
edm::ESHandle< DTReadOutMapping > &  mapping,
std::auto_ptr< DTDigiCollection > &  product,
std::auto_ptr< DTLocalTriggerCollection > &  product2,
uint16_t  rosList = 0 
)
virtual

Unpacking method. index is the pointer to the beginning of the buffer. datasize is the size of the buffer in bytes

CopyAndPaste from P. Ronchese unpacker

Implements DTUnpacker.

Definition at line 20 of file DTROS8Unpacker.cc.

References gather_cfg::cout, and i.

25  {
26 
27 
29  const int wordLength = 4;
30  int numberOfWords = datasize / wordLength;
31  int robID = 0;
32  int rosID = 0;
33 
34  map<int,int> hitOrder;
35 
36  // Loop over the ROS8 words
37  for ( int i = 1; i < numberOfWords; i++ ) {
38 
39  // The word
40  uint32_t word = index[i];
41 
42  // The word type
43  int type = ( word >> 28 ) & 0xF;
44 
45  // Event Header
46  if ( type == 15 ) {
47  robID = word & 0x7;
48  rosID = ( word >> 3 ) & 0xFF;
49  }
50 
51  // TDC Measurement
52  else if ( type >= 4 && type <= 5 ) {
53 
54  int tdcID = ( word >> 24 ) & 0xF;
55  int tdcChannel = ( word >> 19 ) & 0x1F;
56 
57  int channelIndex = robID << 7 | tdcID << 5 | tdcChannel;
58  hitOrder[channelIndex]++;
59 
60  int tdcMeasurement = word & 0x7FFFF;
61  tdcMeasurement >>= 2;
62 
63 
64  try {
65 
66  // Check the ddu ID in the mapping been used
67  dduID = pset.getUntrackedParameter<int>("dduID",730);
68 
69  // Map the RO channel to the DetId and wire
70  DTWireId detId;
71  if ( ! mapping->readOutToGeometry(dduID, rosID, robID, tdcID, tdcChannel,detId)) {
72  if (pset.getUntrackedParameter<bool>("debugMode",false)) cout<<"[DTROS8Unpacker] "<<detId<<endl;
73  int wire = detId.wire();
74 
75  // Produce the digi
76  DTDigi digi(wire, tdcMeasurement, hitOrder[channelIndex]-1);
77 
78  // Commit to the event
79  product->insertDigi(detId.layerId(),digi);
80  }
81  else if (pset.getUntrackedParameter<bool>("debugMode",false))
82  cout<<"[DTROS8Unpacker] Missing wire!"<<endl;
83  }
84 
85  catch (cms::Exception & e1) {
86  cout<<"[DTUnpackingModule]: WARNING: Digi not build!"<<endl;
87  return;
88  }
89  }
90 
91  }
92 }
type
Definition: HCALResponse.h:21
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
const edm::ParameterSet pset
Definition: DTDigi.h:17
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

const edm::ParameterSet DTROS8Unpacker::pset
private