67 std::unique_ptr<PackingSetup>
prov_;
88 o <<
"L1T Block Header " << h.
getID() <<
" with size " << h.
getSize();
95 minFeds_(config.getParameter<unsigned
int>(
"MinFeds")),
96 fwId_(config.getParameter<unsigned
int>(
"FWId")),
105 throw cms::Exception(
"L1TRawToDigi") <<
"Can only use one unpacking mode concurrently!";
109 prov_->registerProducts(*
this);
139 std::unique_ptr<UnpackerCollections>
coll =
prov_->getCollections(event);
145 LogError(
"L1T") <<
"Cannot unpack: no FEDRawDataCollection found";
149 unsigned valid_count = 0;
153 LogDebug(
"L1T") <<
"Found FEDRawDataCollection with ID " <<
fedId <<
" and size " << l1tRcd.
size();
156 if (l1tRcd.
size() > 0) {
157 LogError(
"L1T") <<
"Cannot unpack: invalid L1T raw data (size = " 158 << l1tRcd.
size() <<
") for ID " <<
fedId <<
". Returning empty collections!";
161 LogInfo(
"L1T") <<
"During unpacking, encountered empty L1T raw data (size = " 162 << l1tRcd.
size() <<
") for FED ID " <<
fedId <<
".";
169 const unsigned char *
data = l1tRcd.
data();
172 if (header.
check()) {
173 LogDebug(
"L1T") <<
"Found SLink header:" 175 <<
" L1 event ID " << header.
lvl1ID()
176 <<
" BX Number " << header.
bxID()
177 <<
" FED source " << header.
sourceID()
178 <<
" FED version " << header.
version();
180 LogWarning(
"L1T") <<
"Did not find a SLink header!";
185 if (trailer.
check()) {
186 LogDebug(
"L1T") <<
"Found SLink trailer:" 188 <<
" CRC " << trailer.
crc()
190 <<
" Throttling bits " << trailer.
ttsBits();
192 LogWarning(
"L1T") <<
"Did not find a SLink trailer!";
210 <<
"Could not extract AMC13 Packet.";
218 auto payload64 =
amc.data();
219 const uint32_t *
start = (
const uint32_t*) payload64.get();
222 const uint32_t *
end = start + (
amc.size() * 2);
224 std::unique_ptr<Payload>
payload;
226 LogDebug(
"L1T") <<
"Using CTP7 mode";
230 LogDebug(
"L1T") <<
"Using MTF7 mode";
233 LogDebug(
"L1T") <<
"Using MP7 mode";
234 payload.reset(
new MP7Payload(start, end, legacy_mc));
236 unsigned fw = payload->getAlgorithmFWVersion();
242 unsigned board =
amc.blockHeader().getBoardID();
243 unsigned amc_no =
amc.blockHeader().getAMCNumber();
245 auto unpackers =
prov_->getUnpackers(
fedId, board, amc_no, fw);
248 std::unique_ptr<Block>
block;
249 while ((block = payload->getBlock()).
get()) {
253 unsigned bxId = header.
bxID();
254 unsigned unpackTMT = ( !
tmtCheck_ || ( ( tmtId - 1 ) == ( ( bxId - 1 + 3 ) % 9 ) ) );
257 if( !isCaloL2TMT || unpackTMT ) {
259 std::cout <<
">>> block to unpack <<<" << std::endl
260 <<
"hdr: " << std::hex << std::setw(8) << std::setfill(
'0') << block->header().raw() <<
std::dec 261 <<
" (ID " << block->header().getID() <<
", size " << block->header().getSize()
262 <<
", CapID 0x" << std::hex << std::setw(2) << std::setfill(
'0') << block->header().getCapID()
264 for (
const auto& word: block->payload()) {
266 std::cout <<
"data: " << std::hex << std::setw(8) << std::setfill(
'0') << word <<
std::dec << std::endl;
270 auto unpacker = unpackers.find(block->header().getID());
272 block->amc(
amc.header());
274 if (unpacker == unpackers.end()) {
275 LogDebug(
"L1T") <<
"Cannot find an unpacker for" 276 <<
"\n\tblock: ID " << block->header().getID() <<
", size " << block->header().getSize()
277 <<
"\n\tAMC: # " << amc_no <<
", board ID 0x" << std::hex << board <<
std::dec 278 <<
"\n\tFED ID " <<
fedId <<
", and FW ID " << fw;
280 }
else if (!unpacker->second->unpack(*block, coll.get())) {
281 LogDebug(
"L1T") <<
"Error unpacking data for block ID " 282 << block->header().getID() <<
", AMC # " << amc_no
283 <<
", board ID " << board <<
", FED ID " <<
fedId 284 <<
", and FW ID " << fw <<
"!";
294 LogWarning(
"L1T") <<
"Unpacked " << valid_count <<
" non-empty FED IDs but minimum is set to " <<
minFeds_ <<
"\n";
304 desc.
add<std::vector<int>>(
"FedIds", {})->setComment(
"required parameter: default value is invalid");
305 desc.
add<
std::string>(
"Setup",
"")->setComment(
"required parameter: default value is invalid");
308 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");
309 desc.
add<
bool>(
"FWOverride",
false)->setComment(
"Firmware version should be taken as FWId parameters");
310 desc.
add<
bool>(
"TMTCheck",
true)->setComment(
"Flag for turning on/off Calo Layer 2 TMT node check");
320 desc.
addUntracked<
bool>(
"debug",
false)->setComment(
"turn on verbose output");
321 desc.
add<
unsigned int>(
"MinFeds", 0)->setComment(
"optional parameter: warn if less than MinFeds non-empty FED ids unpacked.");
322 descriptions.
add(
"l1tRawToDigi", desc);
void produce(edm::Event &, const edm::EventSetup &) override
std::vector< amc::Packet > payload() const
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
#define DEFINE_FWK_MODULE(type)
void endRun(edm::Run const &, edm::EventSetup const &) override
void beginRun(edm::Run const &, edm::EventSetup const &) override
def setup(process, global_tag, zero_tesla=False)
uint16_t crc() const
Cyclic Redundancy Code of the event fragment including header and trailer.
bool check() const
Check that the trailer is OK.
size_t size() const
Lenght of the data buffer in bytes.
uint32_t fragmentLength() const
The length of the event fragment counted in 64-bit words including header and trailer.
L1TRawToDigi(const edm::ParameterSet &)
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
const unsigned int offsetBoardId
std::vector< int > fedIds_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
std::unique_ptr< PackingSetup > make(const std::string &) const
const unsigned int amcSlotNum
std::ostream & operator<<(std::ostream &os, const l1t::CaloParamsHelper &p)
uint8_t ttsBits() const
Current value of the Trigger Throttling System bits.
void endLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &) override
unsigned long long uint64_t
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)
uint8_t evtStatus() const
Event fragment status information.
void add(std::string const &label, ParameterSetDescription const &psetDescription)
static const PackingSetupFactory * get()
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
char data[epos_bytes_allocation]
void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &) override
std::unique_ptr< PackingSetup > prov_
edm::EDGetTokenT< FEDRawDataCollection > fedData_
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.