34 using namespace rpcrawtodigi;
40 : dataLabel_(pset.getParameter<edm::
InputTag>(
"InputLabel")),
41 doSynchro_(pset.getParameter<bool>(
"doSynchro")),
45 produces<RPCDigiCollection>();
46 produces<RPCRawDataCounts>();
47 if (
doSynchro_) produces<RPCRawSynchro::ProdItem>();
60 LogTrace(
"") <<
"record has CHANGED!!, (re)initialise readout map!";
83 std::auto_ptr<RPCRawSynchro::ProdItem> producedRawSynchoCounts;
89 const FEDRawData & rawData = allFEDRawData->FEDData(fedId);
94 if (nWords==0)
continue;
99 const Word64* header =
reinterpret_cast<const Word64*
>(rawData.
data()); header--;
100 bool moreHeaders =
true;
101 while (moreHeaders) {
103 FEDHeader fedHeader( reinterpret_cast<const unsigned char*>(header));
104 if (!fedHeader.
check()) {
105 producedRawDataCounts->addReadoutError(fedId,
ReadoutError(ReadoutError::HeaderCheckFail));
106 if (debug)
LogTrace(
"") <<
" ** PROBLEM **, header.check() failed, break";
109 if ( fedHeader.
sourceID() != fedId) {
110 producedRawDataCounts->addReadoutError(fedId,
ReadoutError(ReadoutError::InconsitentFedId));
111 if (debug)
LogTrace (
"") <<
" ** PROBLEM **, fedHeader.sourceID() != fedId"
112 <<
"fedId = " << fedId<<
" sourceID="<<fedHeader.
sourceID();
114 triggerBX = fedHeader.
bxID();
118 str <<
" header: "<< *
reinterpret_cast<const bitset<64>*
> (header) << endl;
119 str <<
" header triggerType: " << fedHeader.
triggerType()<<endl;
120 str <<
" header lvl1ID: " << fedHeader.
lvl1ID() << endl;
121 str <<
" header bxID: " << fedHeader.
bxID() << endl;
122 str <<
" header sourceID: " << fedHeader.
sourceID() << endl;
123 str <<
" header version: " << fedHeader.
version() << endl;
131 const Word64* trailer=
reinterpret_cast<const Word64*
>(rawData.
data())+(nWords-1); trailer++;
132 bool moreTrailers =
true;
133 while (moreTrailers) {
135 FEDTrailer fedTrailer(reinterpret_cast<const unsigned char*>(trailer));
136 if ( !fedTrailer.
check()) {
137 producedRawDataCounts->addReadoutError(fedId,
ReadoutError(ReadoutError::TrailerCheckFail));
138 if (debug)
LogTrace(
"") <<
" ** PROBLEM **, trailer.check() failed, break";
141 if ( fedTrailer.
lenght()!= nWords) {
142 producedRawDataCounts->addReadoutError(fedId,
ReadoutError(ReadoutError::InconsistentDataSize));
143 if (debug)
LogTrace(
"")<<
" ** PROBLEM **, fedTrailer.lenght()!= nWords, break";
149 str <<
" trailer: "<< *
reinterpret_cast<const bitset<64>*
> (trailer) << endl;
150 str <<
" trailer lenght: "<<fedTrailer.
lenght()<<endl;
151 str <<
" trailer crc: "<<fedTrailer.
crc()<<endl;
152 str <<
" trailer evtStatus: "<<fedTrailer.
evtStatus()<<endl;
153 str <<
" trailer ttsBits: "<<fedTrailer.
ttsBits()<<endl;
163 for (
const Word64* word = header+1; word != trailer; word++) {
164 str<<
" data: "<<*
reinterpret_cast<const bitset<64>*
>(word) << endl;
171 for (
const Word64* word = header+1; word != trailer; word++) {
172 for(
int iRecord=1; iRecord<=4; iRecord++){
177 std::ostringstream str;
178 str <<
"record: "<<record.
print()<<
" hex: "<<hex<<*pRecord<<dec;
181 str<<
" --> dccId: "<<fedId
182 <<
" rmb: " <<
event.recordSLD().rmb()
183 <<
" lnk: "<<
event.recordSLD().tbLinkInputNumber()
184 <<
" lb: "<<
event.recordCD().lbInLink()
185 <<
" part: "<<
event.recordCD().partitionNumber()
186 <<
" data: "<<
event.recordCD().partitionData()
187 <<
" eod: "<<
event.recordCD().eod();
191 producedRawDataCounts->addDccRecord(fedId, record);
195 producedRPCDigis.get(), producedRawDataCounts.get(), producedRawSynchoCounts.get());
196 if (statusTMP != 0) status = statusTMP;
200 if (status && debug)
LogTrace(
"")<<
" RPCUnpackingModule - There was unpacking PROBLEM in this event"<<endl;
202 ev.
put(producedRPCDigis);
203 ev.
put(producedRawDataCounts);
RPCReadOutMappingWithFastSearch theReadoutMappingSearch
bool getByToken(EDGetToken token, Handle< PROD > &result) const
std::vector< std::pair< LinkBoardElectronicIndex, int > > ProdItem
std::string print(const Track &, edm::Verbosity=edm::Concise)
Track print utility.
int evtStatus()
Event fragment status information.
static MessageDrop * instance()
void init(const RPCReadOutMapping *arm)
takes ownership of map
size_t size() const
Lenght of the data buffer in bytes.
RPCUnpackingModule(const edm::ParameterSet &pset)
Constructor.
const std::string & version() const
version as string
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
void produce(edm::Event &ev, const edm::EventSetup &es) override
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
const RPCReadOutMapping * theCabling
virtual ~RPCUnpackingModule()
Destructor.
int ttsBits()
Current value of the Trigger Throttling System bitsAQ).
unsigned long long uint64_t
int lenght()
The length of the event fragment counted in 64-bit words including header and trailer.
void beginRun(const edm::Run &run, const edm::EventSetup &es) override
bool check(const edm::EventSetup &iSetup)
edm::EDGetTokenT< FEDRawDataCollection > fedToken_
std::string print() const
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
int crc()
Cyclic Redundancy Code of the event fragment including header and trailer.
DataRecordType type() const
unsigned long eventCounter_
edm::ESWatcher< RPCEMapRcd > theRecordWatcher