24 : calculate_crc_(config.getParameter<bool>(
"calculateCRC")),
25 fill_counters_(config.getParameter<bool>(
"fillCounters")),
26 bx_min_(config.getParameter<int>(
"bxMin")),
27 bx_max_(config.getParameter<int>(
"bxMax")),
31 produces<RPCDigiCollection>();
33 produces<RPCAMCLinkCounters>();
42 unsigned char const *uchars(reinterpret_cast<unsigned char const *>(&word));
43 for (
unsigned char const *uchar = uchars + 7; uchar >= uchars; --uchar) {
51 desc.
add<
bool>(
"calculateCRC",
true);
52 desc.
add<
bool>(
"fillCounters",
true);
53 desc.
add<
int>(
"bxMin", -2);
54 desc.
add<
int>(
"bxMax", 2);
55 descs.
add(
"rpcTwinMuxRawToDigi", desc);
62 for (
auto const &tm_link : link_map->getMap()) {
63 feds.insert(tm_link.first.getFED());
65 feds_.assign(feds.begin(), feds.end());
76 event.getByToken(
raw_token_, raw_data_collection);
78 std::set<std::pair<RPCDetId, RPCDigi> > rpc_digis;
82 for (
int fed :
feds_) {
87 std::uint16_t crc(0xffff);
89 FEDRawData const &raw_data = raw_data_collection->FEDData(fed);
98 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Handling FED " << fed <<
" with length " << nwords;
111 while (word < word_end) {
112 processBlock(fed, word, word_end, crc, *counters, rpc_digis);
118 word_end =
reinterpret_cast<std::uint64_t const *
>(raw_data.
data()) + nwords - 1;
119 for (; word < word_end; ++
word) {
123 FEDTrailer trailer(reinterpret_cast<unsigned char const *>(word_end));
124 if ((
unsigned int)(trailer.
crc()) != crc) {
128 edm::LogWarning(
"RPCTwinMuxRawToDigi") <<
"FED Trailer CRC doesn't match for FED id " << fed;
144 bool more_headers(
true);
145 for (; word < word_end && more_headers; ++
word) {
150 LogDebug(
"RPCTwinMuxRawToDigi") <<
"CDF Header " << std::hex << *word <<
std::dec;
151 FEDHeader header(reinterpret_cast<unsigned char const *>(word));
152 if (!header.
check()) {
156 edm::LogWarning(
"RPCTwinMuxRawToDigi") <<
"FED Header check failed for FED id " << fed;
165 <<
"FED Header Source ID " << header.
sourceID() <<
" does not match requested FED id " << fed;
171 more_headers =
false;
174 return !more_headers;
183 bool more_trailers(
true);
184 for (--word_end; word_end > word && more_trailers; --word_end) {
185 FEDTrailer trailer(reinterpret_cast<unsigned char const *>(word_end));
186 LogDebug(
"RPCTwinMuxRawToDigi") <<
"CDF Trailer " << std::hex << *word_end <<
std::dec <<
", length "
188 if (!trailer.
check()) {
192 edm::LogWarning(
"RPCTwinMuxRawToDigi") <<
"FED Trailer check failed for FED id " << fed;
201 <<
" does not match actual data size " << nwords <<
" for FED id " << fed;
208 more_trailers =
false;
213 return !more_trailers;
221 std::set<std::pair<RPCDetId, RPCDigi> > &digis)
const {
229 unsigned int n_amc(block_header.
getNAMC());
230 if (word + n_amc + 1 >= word_end) {
234 edm::LogWarning(
"RPCTwinMuxRawToDigi") <<
"Block can not be complete for FED " << fed;
239 std::vector<std::pair<unsigned int, unsigned int> > amc_size_map;
240 for (
unsigned int amc = 0;
amc < n_amc; ++
amc) {
241 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Block AMC " <<
amc;
254 <<
"BlockAMCContent is reporting an invalid "
255 <<
"Event Counter or Bunch Counter for FED " << fed <<
", AMC " << amc_content.
getAMCNumber();
259 for (std::pair<unsigned int, unsigned int>
const &amc_size : amc_size_map) {
260 processTwinMux(fed, amc_size.first, amc_size.second, word, word_end, crc, counters, digis);
263 if (word < word_end) {
276 unsigned int amc_number,
282 std::set<std::pair<RPCDetId, RPCDigi> > &digis)
const {
283 LogDebug(
"RPCTwinMuxRawToDigi") <<
"TwinMux AMC#" << amc_number <<
", size " <<
size;
291 edm::LogWarning(
"RPCTwinMuxRawToDigi") <<
"Invalid AMC Number " << amc_number <<
" for FED " << fed;
301 if (word + size >= word_end || size < 3) {
306 <<
"TwinMux Data can not be complete for FED " << fed <<
" AMC #" << amc_number;
334 <<
"AMC Number inconsistent in TwinMuxHeader vs BlockAMCContent: " << header.
getAMCNumber() <<
" vs "
350 LogDebug(
"RPCTwinMuxRawToDigi") <<
"BX range set to " << bx_min <<
", " << bx_max;
353 bool has_first_rpc_word(
false);
360 LogDebug(
"RPCTwinMuxRawToDigi") <<
"TwinMux data type " << std::hex << type <<
std::dec;
362 if (has_first_rpc_word) {
363 processRPCRecord(fed, amc_number, bx_counter, rpc_record, counters, digis, bx_min, bx_max, 0, 1);
366 rpc_record.
set(0, *word);
367 has_first_rpc_word =
true;
369 if (!has_first_rpc_word) {
370 edm::LogWarning(
"RPCTwinMuxRawToDigi") <<
"Received second RPC word without first";
372 rpc_record.
set(1, *word);
373 processRPCRecord(fed, amc_number, bx_counter, rpc_record, counters, digis, bx_min, bx_max, 0, 4);
374 has_first_rpc_word =
false;
378 if (has_first_rpc_word) {
379 processRPCRecord(fed, amc_number, bx_counter, rpc_record, counters, digis, bx_min, bx_max, 0, 1);
383 LogDebug(
"RPCTwinMuxRawToDigi") <<
"TwinMux Trailer " << std::hex << *word <<
std::dec;
392 unsigned int amc_number,
393 unsigned int bx_counter,
396 std::set<std::pair<RPCDetId, RPCDigi> > &digis,
400 unsigned int link_max)
const {
405 for (; link <= link_max; ++
link) {
406 tm_link.setAMCInput(link);
409 if (link_record.isError()) {
413 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Link in error for " << tm_link;
415 }
else if (!link_record.isAcknowledge()) {
419 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Link without acknowledge for " << tm_link;
423 if (!link_record.getPartitionData()) {
427 int bx(bx_offset - (
int)(link_record.getDelay()));
428 LogDebug(
"RPCTwinMuxRawToDigi") <<
"RPC BX " << bx <<
" for offset " << bx_offset;
434 RPCAMCLinkMap::map_type::const_iterator tm_link_it =
es_tm_link_map_->getMap().find(tm_link);
439 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Skipping unknown TwinMuxLink " << tm_link;
449 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Skipping invalid LinkBoard " << link_record.getLinkBoard() <<
" for record "
450 << link <<
" (" << std::hex << link_record.getRecord() <<
" in "
460 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Skipping invalid Connector " << link_record.getConnector() <<
" for record "
461 << link <<
" (" << std::hex << link_record.getRecord() <<
" in "
470 RPCLBLinkMap::map_type::const_iterator lb_link_it =
es_lb_link_map_->getMap().find(lb_link);
475 LogDebug(
"RPCTwinMuxRawToDigi") <<
"Could not find " << lb_link <<
" for record " << link <<
" (" << std::hex
476 << link_record.getRecord() <<
" in " << record.
getRecord()[0] <<
':'
481 if (bx < bx_min || bx > bx_max) {
492 unsigned int channel_offset(link_record.getPartition() ? 9 : 1);
493 std::uint8_t
data(link_record.getPartitionData());
495 for (
unsigned int channel = 0; channel < 8; ++channel) {
496 if (
data & (0x1 << channel)) {
497 unsigned int strip(feb_connector.
getStrip(channel + channel_offset));
499 digis.insert(std::pair<RPCDetId, RPCDigi>(det_id,
RPCDigi(
strip, bx)));
500 LogDebug(
"RPCTwinMuxRawToDigi") <<
"RPCDigi " << det_id.rawId() <<
", " <<
strip <<
", " <<
bx;
512 std::vector<RPCDigi> local_digis;
513 for (std::pair<RPCDetId, RPCDigi>
const &rpc_digi : digis) {
514 LogDebug(
"RPCTwinMuxRawToDigi") <<
"RPCDigi " << rpc_digi.first.rawId() <<
", " << rpc_digi.second.strip() <<
", "
515 << rpc_digi.second.bx();
516 if (rpc_digi.first != rpc_det_id) {
517 if (!local_digis.empty()) {
521 rpc_det_id = rpc_digi.first;
523 local_digis.push_back(rpc_digi.second);
525 if (!local_digis.empty()) {
529 event.put(
std::move(rpc_digi_collection));
static unsigned int const fed_amc13_amc_number_invalid_
unsigned int getStrip(unsigned int channel) const
static unsigned int const fed_trailer_crc_mismatch_
static unsigned int const input_connector_not_used_
RPCLinkRecord getRPCLinkRecord(unsigned int link) const
static unsigned int const amc_payload_incomplete_
static unsigned int const amc_event_
std::uint64_t const * getRecord() const
static unsigned int const fed_header_check_fail_
bool processCDFHeaders(int fed, std::uint64_t const *&word, std::uint64_t const *&word_end, std::uint16_t &crc, RPCAMCLinkCounters &counters) const
void beginRun(edm::Run const &run, edm::EventSetup const &setup) override
static int const max_connector_
static unsigned int const input_link_error_
#define DEFINE_FWK_MODULE(type)
static unsigned int const input_lb_invalid_
RPCLBLink & setConnector(int connector=wildcard_)
uint16_t crc() const
Cyclic Redundancy Code of the event fragment including header and trailer.
bool check() const
Check that the trailer is OK.
static unsigned int const amc_amc13_evc_bc_invalid_
bool processTwinMux(int fed, unsigned int amc_number, unsigned int size, std::uint64_t const *&word, std::uint64_t const *word_end, std::uint16_t &crc, RPCAMCLinkCounters &counters, std::set< std::pair< RPCDetId, RPCDigi > > &digis) const
static unsigned int const fed_trailer_length_mismatch_
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.
~RPCTwinMuxRawToDigi() override
edm::ESGetToken< RPCAMCLinkMap, RPCTwinMuxLinkMapRcd > es_tm_link_map_br_token_
static int const max_amcnumber_
RPCTwinMuxRawToDigi(edm::ParameterSet const &config)
static unsigned int const amc_link_invalid_
void processRPCRecord(int fed, unsigned int amc_number, unsigned int bx_counter, rpctwinmux::RPCRecord const &record, RPCAMCLinkCounters &counters, std::set< std::pair< RPCDetId, RPCDigi > > &digis, int bx_min, int bx_max, unsigned int link, unsigned int link_max) const
void set(unsigned int word, std::uint64_t const record)
caConstants::TupleMultiplicity const CAHitNtupletGeneratorKernelsGPU::HitToTuple const cms::cuda::AtomicPairCounter GPUCACell const *__restrict__ uint32_t const *__restrict__ gpuPixelDoublets::CellNeighborsVector const gpuPixelDoublets::CellTracksVector const GPUCACell::OuterHitOfCell const int32_t uint32_t CAHitNtupletGeneratorKernelsGPU::Counters * counters
unsigned int getType() const
unsigned int getAMCNumber() const
edm::EDGetTokenT< FEDRawDataCollection > raw_token_
MuonDigiCollection< RPCDetId, RPCDigi > RPCDigiCollection
bool processBlock(int fed, std::uint64_t const *&word, std::uint64_t const *word_end, std::uint16_t &crc, RPCAMCLinkCounters &counters, std::set< std::pair< RPCDetId, RPCDigi > > &digis) const
bool processCDFTrailers(int fed, unsigned int nwords, std::uint64_t const *&word, std::uint64_t const *&word_end, std::uint16_t &crc, RPCAMCLinkCounters &counters) const
edm::ESGetToken< RPCAMCLinkMap, RPCTwinMuxLinkMapRcd > es_tm_link_map_token_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
static unsigned int const rpc_first_type_
static unsigned int const fed_header_id_mismatch_
static unsigned int const amc_number_mismatch_
static unsigned int const fed_amc13_block_incomplete_
static unsigned int const input_event_
void add(unsigned int event, RPCAMCLink const &link, unsigned int count=1)
static unsigned int const fed_event_
edm::ESWatcher< RPCTwinMuxLinkMapRcd > es_tm_link_map_watcher_
static unsigned int const rpc_second_type_
static unsigned int const input_link_ack_fail_
edm::ESGetToken< RPCLBLinkMap, RPCLBLinkMapRcd > es_lb_link_map_token_
unsigned long long uint64_t
std::pair< const_iterator, const_iterator > Range
T getParameter(std::string const &) const
void add(std::string const &label, ParameterSetDescription const &psetDescription)
unsigned short compute_crc_8bit(unsigned short crc, unsigned char data)
bool check(const edm::EventSetup &iSetup)
unsigned int getSize() const
tuple config
parse the configuration file
char data[epos_bytes_allocation]
static void fillDescriptions(edm::ConfigurationDescriptions &descs)
void produce(edm::Event &event, edm::EventSetup const &setup) override
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
void putCounters(edm::Event &event, std::unique_ptr< RPCAMCLinkCounters > counters)
static void compute_crc_64bit(std::uint16_t &crc, std::uint64_t const &word)
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Log< level::Warning, false > LogWarning
edm::ESHandle< RPCLBLinkMap > es_lb_link_map_
RPCLBLink & setLinkBoard(int linkboard=wildcard_)
static int const wildcard_
edm::ESHandle< RPCAMCLinkMap > es_tm_link_map_
tuple size
Write out results.
static unsigned int const fed_trailer_check_fail_
RPCDetId getRPCDetId() const
void putRPCDigis(edm::Event &event, std::set< std::pair< RPCDetId, RPCDigi > > const &digis)
static int const max_linkboard_
static unsigned int const input_eod_
static unsigned int const input_connector_invalid_