CMS 3D CMS Logo

L1TRawToDigi.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: EventFilter/L1TRawToDigi
4 // Class: L1TRawToDigi
5 //
13 //
14 // Original Author: Matthias Wolf
15 // Created: Mon, 10 Feb 2014 14:29:40 GMT
16 //
17 //
18 
19 // system include files
20 #include <iostream>
21 #include <iomanip>
22 #include <memory>
23 
24 // user include files
31 
36 
39 
40 #include "PackingSetupFactory.h"
41 
42 namespace l1t {
44  public:
45  explicit L1TRawToDigi(const edm::ParameterSet&);
46  ~L1TRawToDigi();
47 
48  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
49 
50  private:
51  virtual void produce(edm::Event&, const edm::EventSetup&) override;
52 
53  virtual void beginRun(edm::Run const&, edm::EventSetup const&) override {};
54  virtual void endRun(edm::Run const&, edm::EventSetup const&) override {};
55  virtual void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {};
56  virtual void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {};
57 
58  // ----------member data ---------------------------
60  std::vector<int> fedIds_;
61  unsigned int minFeds_;
62  unsigned int fwId_;
64 
65  std::unique_ptr<PackingSetup> prov_;
66 
67  // header and trailer sizes in chars
74 
75  bool ctp7_mode_;
76  bool mtf7_mode_;
77  bool debug_;
78  int warnsa_;
79  int warnsb_;
80  };
81 }
82 
83 std::ostream & operator<<(std::ostream& o, const l1t::BlockHeader& h) {
84  o << "L1T Block Header " << h.getID() << " with size " << h.getSize();
85  return o;
86 };
87 
88 namespace l1t {
90  fedIds_(config.getParameter<std::vector<int>>("FedIds")),
91  minFeds_(config.getParameter<unsigned int>("MinFeds")),
92  fwId_(config.getParameter<unsigned int>("FWId")),
93  fwOverride_(config.getParameter<bool>("FWOverride")),
94  ctp7_mode_(config.getUntrackedParameter<bool>("CTP7")),
95  mtf7_mode_(config.getUntrackedParameter<bool>("MTF7"))
96  {
97  fedData_ = consumes<FEDRawDataCollection>(config.getParameter<edm::InputTag>("InputLabel"));
98 
99  if (ctp7_mode_ and mtf7_mode_) {
100  throw cms::Exception("L1TRawToDigi") << "Can only use one unpacking mode concurrently!";
101  }
102 
104  prov_->registerProducts(*this);
105 
106  slinkHeaderSize_ = config.getUntrackedParameter<int>("lenSlinkHeader");
107  slinkTrailerSize_ = config.getUntrackedParameter<int>("lenSlinkTrailer");
108  amcHeaderSize_ = config.getUntrackedParameter<int>("lenAMCHeader");
109  amcTrailerSize_ = config.getUntrackedParameter<int>("lenAMCTrailer");
110  amc13HeaderSize_ = config.getUntrackedParameter<int>("lenAMC13Header");
111  amc13TrailerSize_ = config.getUntrackedParameter<int>("lenAMC13Trailer");
112 
113  debug_ = config.getUntrackedParameter<bool>("debug");
114  warnsa_ = 0;
115  warnsb_ = 0;
116  }
117 
118 
120  {
121  }
122 
123 
124  //
125  // member functions
126  //
127 
128  // ------------ method called to produce the data ------------
129  void
131  {
132  using namespace edm;
133 
134  std::unique_ptr<UnpackerCollections> coll = prov_->getCollections(event);
135 
137  event.getByToken(fedData_, feds);
138 
139  if (!feds.isValid()) {
140  LogError("L1T") << "Cannot unpack: no FEDRawDataCollection found";
141  return;
142  }
143 
144  unsigned valid_count = 0;
145  for (const auto& fedId: fedIds_) {
146  const FEDRawData& l1tRcd = feds->FEDData(fedId);
147 
148  LogDebug("L1T") << "Found FEDRawDataCollection with ID " << fedId << " and size " << l1tRcd.size();
149 
151  if (l1tRcd.size() > 0) {
152  LogError("L1T") << "Cannot unpack: invalid L1T raw data (size = "
153  << l1tRcd.size() << ") for ID " << fedId << ". Returning empty collections!";
154  } else if (warnsa_ < 5){
155  warnsa_++;
156  LogInfo("L1T") << "During unpacking, encountered empty L1T raw data (size = "
157  << l1tRcd.size() << ") for FED ID " << fedId << ".";
158  }
159  continue;
160  } else {
161  valid_count++;
162  }
163 
164  const unsigned char *data = l1tRcd.data();
165  FEDHeader header(data);
166 
167  if (header.check()) {
168  LogDebug("L1T") << "Found SLink header:"
169  << " Trigger type " << header.triggerType()
170  << " L1 event ID " << header.lvl1ID()
171  << " BX Number " << header.bxID()
172  << " FED source " << header.sourceID()
173  << " FED version " << header.version();
174  } else {
175  LogWarning("L1T") << "Did not find a SLink header!";
176  }
177 
178  FEDTrailer trailer(data + (l1tRcd.size() - slinkTrailerSize_));
179 
180  if (trailer.check()) {
181  LogDebug("L1T") << "Found SLink trailer:"
182  << " Length " << trailer.lenght()
183  << " CRC " << trailer.crc()
184  << " Status " << trailer.evtStatus()
185  << " Throttling bits " << trailer.ttsBits();
186  } else {
187  LogWarning("L1T") << "Did not find a SLink trailer!";
188  }
189 
190  // FIXME Hard-coded firmware version for first 74x MC campaigns.
191  // Will account for differences in the AMC payload, MP7 payload,
192  // and unpacker setup.
193  bool legacy_mc = fwOverride_ && ((fwId_ >> 24) == 0xff);
194 
195  amc13::Packet packet;
196  if (!packet.parse(
197  (const uint64_t*) data,
198  (const uint64_t*) (data + slinkHeaderSize_),
199  (l1tRcd.size() - slinkHeaderSize_ - slinkTrailerSize_) / 8,
200  header.lvl1ID(),
201  header.bxID(),
202  legacy_mc,
203  mtf7_mode_)) {
204  LogError("L1T")
205  << "Could not extract AMC13 Packet.";
206  return;
207  }
208 
209  for (auto& amc: packet.payload()) {
210  if (amc.size() == 0)
211  continue;
212 
213  auto payload64 = amc.data();
214  const uint32_t * start = (const uint32_t*) payload64.get();
215  // Want to have payload size in 32 bit words, but AMC measures
216  // it in 64 bit words → factor 2.
217  const uint32_t * end = start + (amc.size() * 2);
218 
219  std::unique_ptr<Payload> payload;
220  if (ctp7_mode_) {
221  LogDebug("L1T") << "Using CTP7 mode";
222  payload.reset(new CTP7Payload(start, end));
223  } else if (mtf7_mode_) {
224  LogDebug("L1T") << "Using MTF7 mode";
225  payload.reset(new MTF7Payload(start, end));
226  } else {
227  LogDebug("L1T") << "Using MP7 mode";
228  payload.reset(new MP7Payload(start, end, legacy_mc));
229  }
230  unsigned fw = payload->getAlgorithmFWVersion();
231 
232  // Let parameterset value override FW version
233  if (fwOverride_)
234  fw = fwId_;
235 
236  unsigned board = amc.blockHeader().getBoardID();
237  unsigned amc_no = amc.blockHeader().getAMCNumber();
238 
239  auto unpackers = prov_->getUnpackers(fedId, board, amc_no, fw);
240 
241  // getBlock() returns a non-null unique_ptr on success
242  std::unique_ptr<Block> block;
243  while ((block = payload->getBlock()).get()) {
244  if (debug_) {
245  std::cout << ">>> block to unpack <<<" << std::endl
246  << "hdr: " << std::hex << std::setw(8) << std::setfill('0') << block->header().raw() << std::dec
247  << " (ID " << block->header().getID() << ", size " << block->header().getSize()
248  << ", CapID 0x" << std::hex << std::setw(2) << std::setfill('0') << block->header().getCapID()
249  << ")" << std::dec << std::endl;
250  for (const auto& word: block->payload()) {
251  if (debug_)
252  std::cout << "data: " << std::hex << std::setw(8) << std::setfill('0') << word << std::dec << std::endl;
253  }
254  }
255 
256  auto unpacker = unpackers.find(block->header().getID());
257 
258  block->amc(amc.header());
259 
260  if (unpacker == unpackers.end()) {
261  LogDebug("L1T") << "Cannot find an unpacker for"
262  << "\n\tblock: ID " << block->header().getID() << ", size " << block->header().getSize()
263  << "\n\tAMC: # " << amc_no << ", board ID 0x" << std::hex << board << std::dec
264  << "\n\tFED ID " << fedId << ", and FW ID " << fw;
265  // TODO Handle error
266  } else if (!unpacker->second->unpack(*block, coll.get())) {
267  LogDebug("L1T") << "Error unpacking data for block ID "
268  << block->header().getID() << ", AMC # " << amc_no
269  << ", board ID " << board << ", FED ID " << fedId
270  << ", and FW ID " << fw << "!";
271  // TODO Handle error
272  }
273  }
274  }
275  }
276  if (valid_count < minFeds_){
277  if (warnsb_ < 5){
278  warnsb_++;
279  LogWarning("L1T") << "Unpacked " << valid_count << " non-empty FED IDs but minimum is set to " << minFeds_ << "\n";
280  }
281  }
282  }
283 
284  // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
285  void
288  // These parameters are part of the L1T/HLT interface, avoid changing if possible:
289  desc.add<std::vector<int>>("FedIds", {})->setComment("required parameter: default value is invalid");
290  desc.add<std::string>("Setup", "")->setComment("required parameter: default value is invalid");
291  // These parameters have well defined default values and are not currently
292  // part of the L1T/HLT interface. They can be cleaned up or updated at will:
293  desc.add<unsigned int>("FWId",0)->setComment("Ignored unless FWOverride is true. Calo Stage1: 32 bits: if the first eight bits are 0xff, will read the 74x MC format.\n");
294  desc.add<bool>("FWOverride", false)->setComment("Firmware version should be taken as FWId parameters");
295  desc.addUntracked<bool>("CTP7", false);
296  desc.addUntracked<bool>("MTF7", false);
297  desc.add<edm::InputTag>("InputLabel",edm::InputTag("rawDataCollector"));
298  desc.addUntracked<int>("lenSlinkHeader", 8);
299  desc.addUntracked<int>("lenSlinkTrailer", 8);
300  desc.addUntracked<int>("lenAMCHeader", 8);
301  desc.addUntracked<int>("lenAMCTrailer", 0);
302  desc.addUntracked<int>("lenAMC13Header", 8);
303  desc.addUntracked<int>("lenAMC13Trailer", 8);
304  desc.addUntracked<bool>("debug", false)->setComment("turn on verbose output");
305  desc.add<unsigned int>("MinFeds", 0)->setComment("optional parameter: warn if less than MinFeds non-empty FED ids unpacked.");
306  descriptions.add("l1tRawToDigi", desc);
307  }
308 }
309 
310 using namespace l1t;
311 //define this as a plug-in
#define LogDebug(id)
virtual void produce(edm::Event &, const edm::EventSetup &) override
Definition: start.py:1
std::vector< amc::Packet > payload() const
Definition: AMC13Spec.h:80
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
bool check()
Definition: FEDTrailer.cc:64
int version()
Version identifier of the FED data format.
Definition: FEDHeader.cc:32
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
unsigned int getID() const
Definition: Block.h:22
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
int evtStatus()
Event fragment status information.
Definition: FEDTrailer.cc:27
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:1
delete x;
Definition: CaloConfig.h:22
Definition: config.py:1
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
L1TRawToDigi(const edm::ParameterSet &)
Definition: L1TRawToDigi.cc:89
int sourceID()
Identifier of the FED.
Definition: FEDHeader.cc:28
payload
payload postfix for testing
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
std::vector< int > fedIds_
Definition: L1TRawToDigi.cc:60
#define end
Definition: vmac.h:37
ParameterDescriptionBase * add(U const &iLabel, T const &value)
bool isValid() const
Definition: HandleBase.h:74
std::unique_ptr< PackingSetup > make(const std::string &) const
int ttsBits()
Current value of the Trigger Throttling System bitsAQ).
Definition: FEDTrailer.cc:32
std::ostream & operator<<(std::ostream &os, const l1t::CaloParamsHelper &p)
bool check()
Check that the header is OK.
Definition: FEDHeader.cc:64
JetCorrectorParametersCollection coll
Definition: classes.h:10
unsigned long long uint64_t
Definition: Time.h:15
int lenght()
The length of the event fragment counted in 64-bit words including header and trailer.
Definition: FEDTrailer.cc:17
bool parse(const uint64_t *start, const uint64_t *data, unsigned int size, unsigned int lv1, unsigned int bx, bool legacy_mc=false, bool mtf7_mode=false)
Definition: AMC13Spec.cc:70
int bxID()
The bunch crossing number.
Definition: FEDHeader.cc:24
virtual void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &) override
Definition: L1TRawToDigi.cc:55
unsigned int fwId_
Definition: L1TRawToDigi.cc:62
void add(std::string const &label, ParameterSetDescription const &psetDescription)
static const PackingSetupFactory * get()
unsigned int minFeds_
Definition: L1TRawToDigi.cc:61
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
HLT enums.
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
std::unique_ptr< PackingSetup > prov_
Definition: L1TRawToDigi.cc:65
edm::EDGetTokenT< FEDRawDataCollection > fedData_
Definition: L1TRawToDigi.cc:56
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
unsigned int getSize() const
Definition: Block.h:23
int crc()
Cyclic Redundancy Code of the event fragment including header and trailer.
Definition: FEDTrailer.cc:22
virtual void endRun(edm::Run const &, edm::EventSetup const &) override
Definition: L1TRawToDigi.cc:54
int lvl1ID()
Level-1 event number generated by the TTC system.
Definition: FEDHeader.cc:20
Definition: AMCSpec.h:8
virtual void endLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &) override
Definition: L1TRawToDigi.cc:56
int triggerType()
Event Trigger type identifier.
Definition: FEDHeader.cc:16
Definition: event.py:1
Definition: Run.h:42
virtual void beginRun(edm::Run const &, edm::EventSetup const &) override
Definition: L1TRawToDigi.cc:53