CMS 3D CMS Logo

DTSpyReader.cc
Go to the documentation of this file.
1 
10 
14 
17 
19 
21 
22 #include <string>
23 #include <iosfwd>
24 #include <iostream>
25 #include <algorithm>
26 #include <cstdio>
27 
28 using namespace std;
29 using namespace edm;
30 
32  // instatiating Sandro's spy (My name is Bond, Sandro Bond)
33  mySpy = new DTSpy();
34 
36  string connectionParameters = pset.getUntrackedParameter<string>("connectionParameters");
37  mySpy->Connect(connectionParameters.c_str(), 10000);
38 
39  cout << endl;
40  cout << "DT Local DAQ online spy. Connected to IP " << connectionParameters.c_str()
41  << ". Waiting for the data to be flushed" << endl;
42  cout << endl;
43 
44  debug = pset.getUntrackedParameter<bool>("debug", false);
45  dduID = pset.getUntrackedParameter<int32_t>("dduID", 770); // NOT needed
46 
47  produces<FEDRawDataCollection>();
48 }
49 
51 
53  //Timestamp& tstamp,
55  EventID eID = e.id();
56 
57  // ask for a new buffer
59 
60  // get the pointer to the beginning of the buffer
61  const char* rawDTData = mySpy->getEventPointer();
62 
63  const uint32_t* rawDTData32 = reinterpret_cast<const uint32_t*>(rawDTData);
64 
65  // instantiate the FEDRawDataCollection
66  data = new FEDRawDataCollection();
67 
68  vector<uint64_t> eventData;
69  uint64_t word = 0;
70  int wordCount = 0;
71  int wordCountCheck = 0;
72 
73  bool headerTag = false;
74  bool dataTag = true;
75 
76  // Advance at long-word steps until the trailer is reached.
77  // Skipped whatever else is in the buffer (e.g. another event..)
78  while (!isTrailer(word, dataTag, wordCount)) {
79  // dma gets 4 32-bits words and create a 64 bit one
80  word = dmaUnpack(rawDTData32, dataTag);
81 
82  // look for the DDU header
83  if (isHeader(word, dataTag))
84  headerTag = true;
85 
86  // check whether the first word is a DDU header
87  if (wordCountCheck > 0 && !headerTag && debug)
88  cout << "[DTSpyReader]: WARNING: header still not found!!" << endl;
89 
90  // from now on fill the eventData with the ROS data
91  if (headerTag) {
92  // swapping only the 32 bits words
93  if (dataTag)
94  swap(word);
95  // WARNING also the ddu status words have been swapped!
96  // Control the correct interpretation in DDUUnpacker
97 
98  eventData.push_back(word);
99  wordCount++;
100  }
101 
102  // advancing by 4 32-bits words
103  rawDTData32 += 4;
104 
105  // counting the total number of group of 128 bits (=4*32) in the buffer
106  wordCountCheck++;
107  }
108 
109  // Setting the Event ID
110  runNumber = mySpy->getRunNo();
111  eID = EventID(runNumber, 1U, eventNumber);
112 
113  // eventDataSize = (Number Of Words)* (Word Size)
114  int eventDataSize = eventData.size() * dduWordLength;
115 
116  if (debug)
117  cout << " DDU ID = " << dduID << endl;
118 
119  FEDRawData& fedRawData = data->FEDData(dduID);
120  fedRawData.resize(eventDataSize);
121 
122  copy(reinterpret_cast<unsigned char*>(&eventData[0]),
123  reinterpret_cast<unsigned char*>(&eventData[0]) + eventDataSize,
124  fedRawData.data());
125 
126  mySpy->setlastPointer((char*)rawDTData32);
127 
128  return true;
129 }
130 
133  FEDRawDataCollection* fedcoll = nullptr;
134  fillRawData(e, fedcoll);
135  std::unique_ptr<FEDRawDataCollection> bare_product(fedcoll);
136  e.put(std::move(bare_product));
137 }
138 
140  twoNibble64* newWorld = reinterpret_cast<twoNibble64*>(&word);
141 
142  uint32_t msBits_tmp = newWorld->msBits;
143  newWorld->msBits = newWorld->lsBits;
144  newWorld->lsBits = msBits_tmp;
145 }
146 
147 uint64_t DTSpyReader::dmaUnpack(const uint32_t* dmaData, bool& isData) {
148  uint32_t unpackedData[2] = {0, 0};
149  // adjust 4 32-bits words into 2 32-bits words
150  unpackedData[0] |= dmaData[3] & 0x3ffff;
151  unpackedData[0] |= (dmaData[2] << 18) & 0xfffc0000;
152  unpackedData[1] |= (dmaData[2] >> 14) & 0x0f;
153  unpackedData[1] |= (dmaData[1] << 4) & 0x3ffff0;
154  unpackedData[1] |= (dmaData[0] << 22) & 0xffc00000;
155 
156  isData = (dmaData[0] >> 10) & 0x01;
157 
158  //printf ("Lower part: %x \n", unpackedData[0]);
159  //printf ("Upper part: %x \n", unpackedData[1]);
160 
161  // push_back to a 64 word
162  uint64_t dduWord = (uint64_t(unpackedData[1]) << 32) | unpackedData[0];
163 
164  return dduWord;
165 }
166 
168  bool it_is = false;
169  FEDHeader candidate(reinterpret_cast<const unsigned char*>(&word));
170  if (candidate.check()) {
171  // if ( candidate.check() && !dataTag) {
172  it_is = true;
173  dduID = candidate.sourceID();
174  eventNumber++;
175  }
176  return it_is;
177 }
178 
179 bool DTSpyReader::isTrailer(uint64_t word, bool dataTag, unsigned int wordCount) {
180  bool it_is = false;
181  FEDTrailer candidate(reinterpret_cast<const unsigned char*>(&word));
182  if (candidate.check()) {
183  // if ( candidate.check() && !dataTag) {
184  if (wordCount == candidate.fragmentLength())
185  it_is = true;
186  }
187  return it_is;
188 }
FEDNumbering.h
DTSpy
Definition: DTSpy.h:15
twoNibble64
Definition: DTFileReaderHelpers.h:32
filterCSVwithJSON.copy
copy
Definition: filterCSVwithJSON.py:36
DTSpyReader::dduID
int dduID
Definition: DTSpyReader.h:59
FEDRawDataCollection
Definition: FEDRawDataCollection.h:18
edm
HLT enums.
Definition: AlignableModifier.h:19
twoNibble64::msBits
uint32_t msBits
Definition: DTFileReaderHelpers.h:34
gather_cfg.cout
cout
Definition: gather_cfg.py:144
DTSpyReader::~DTSpyReader
~DTSpyReader() override
Destructor.
Definition: DTSpyReader.cc:50
DTFileReaderHelpers.h
DTSpyReader::produce
void produce(edm::Event &, edm::EventSetup const &) override
Definition: DTSpyReader.cc:131
DTSpyReader::DTSpyReader
DTSpyReader(const edm::ParameterSet &pset)
Constructor.
Definition: DTSpyReader.cc:31
edm::Handle< FEDRawDataCollection >
FEDRawData
Definition: FEDRawData.h:19
convertSQLiteXML.runNumber
runNumber
Definition: convertSQLiteXML.py:91
FEDTrailer::check
bool check() const
Check that the trailer is OK.
Definition: FEDTrailer.cc:45
word
uint64_t word
Definition: CTPPSTotemDataFormatter.cc:29
l1t_dqm_sourceclient-live_cfg.fedRawData
fedRawData
Definition: l1t_dqm_sourceclient-live_cfg.py:188
DTSpyReader::eventNumber
edm::EventNumber_t eventNumber
Definition: DTSpyReader.h:56
EventID.h
HLTBitAnalyser_cfi.isData
isData
Definition: HLTBitAnalyser_cfi.py:29
twoNibble64::lsBits
uint32_t lsBits
Definition: DTFileReaderHelpers.h:33
DTSpyReader::dduWordLength
static const int dduWordLength
Definition: DTSpyReader.h:61
EcalFEDMonitor_cfi.FEDRawDataCollection
FEDRawDataCollection
Definition: EcalFEDMonitor_cfi.py:6
mitigatedMETSequence_cff.U
U
Definition: mitigatedMETSequence_cff.py:36
DTSpy::getEventPointer
const char * getEventPointer()
Definition: DTSpy.cc:65
edm::ParameterSet
Definition: ParameterSet.h:47
FEDTrailer
Definition: FEDTrailer.h:14
Timestamp.h
DTSpyReader::swap
void swap(uint64_t &word)
swapping the lsBits with the msBits
Definition: DTSpyReader.cc:139
DTSpyReader::fillRawData
virtual int fillRawData(edm::Event &e, FEDRawDataCollection *&data)
Generate and fill FED raw data for a full event.
Definition: DTSpyReader.cc:52
FEDRawDataCollection.h
edm::EventSetup
Definition: EventSetup.h:58
DTSpyReader::dmaUnpack
uint64_t dmaUnpack(const uint32_t *dmaData, bool &isData)
pre-unpack the data if read via DMA
Definition: DTSpyReader.cc:147
DTSpy::getRunNo
int getRunNo()
Definition: DTSpy.cc:60
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
DTSpy::setlastPointer
void setlastPointer(char *data)
Definition: DTSpy.cc:73
DTSpyReader::isHeader
bool isHeader(uint64_t word, bool dataTag)
check for a 64 bits word to be a DDU header
Definition: DTSpyReader.cc:167
DTSpyReader::debug
bool debug
Definition: DTSpyReader.h:58
gctErrorAnalyzer_cfi.dataTag
dataTag
Definition: gctErrorAnalyzer_cfi.py:28
FEDHeader::check
bool check() const
Check that the header is OK.
Definition: FEDHeader.cc:44
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
DTSpyReader::mySpy
DTSpy * mySpy
Definition: DTSpyReader.h:53
FEDHeader::sourceID
uint16_t sourceID() const
Identifier of the FED.
Definition: FEDHeader.cc:19
DTSpyReader::isTrailer
bool isTrailer(uint64_t word, bool dataTag, unsigned int wordCount)
check for a 64 bits word to be a DDU trailer
Definition: DTSpyReader.cc:179
cond::uint64_t
unsigned long long uint64_t
Definition: Time.h:13
DTSpyReader::runNumber
edm::RunNumber_t runNumber
Definition: DTSpyReader.h:55
DTSpy::getNextBuffer
int getNextBuffer()
Definition: DTSpy.cc:29
DTCtcp::Connect
void Connect(const char *hostaddr, int port)
Definition: DTSpyHelper.cc:133
ParameterSet.h
edm::EventID
Definition: EventID.h:31
FEDHeader
Definition: FEDHeader.h:14
edm::Event
Definition: Event.h:73
FEDHeader.h
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
DTSpyReader.h
FEDTrailer::fragmentLength
uint32_t fragmentLength() const
The length of the event fragment counted in 64-bit words including header and trailer.
Definition: FEDTrailer.cc:13
FEDTrailer.h