#include <RPCUnpackingModule.h>
Public Member Functions | |
void | beginRun (edm::Run &run, const edm::EventSetup &es) |
void | produce (edm::Event &ev, const edm::EventSetup &es) |
RPCUnpackingModule (const edm::ParameterSet &pset) | |
Constructor. | |
virtual | ~RPCUnpackingModule () |
Destructor. | |
Private Attributes | |
edm::InputTag | dataLabel_ |
bool | doSynchro_ |
unsigned long | eventCounter_ |
const RPCReadOutMapping * | theCabling |
RPCReadOutMappingWithFastSearch | theReadoutMappingSearch |
edm::ESWatcher< RPCEMapRcd > | theRecordWatcher |
unpacking RPC raw data
Definition at line 19 of file RPCUnpackingModule.h.
RPCUnpackingModule::RPCUnpackingModule | ( | const edm::ParameterSet & | pset | ) |
Constructor.
Definition at line 39 of file RPCUnpackingModule.cc.
References doSynchro_.
: dataLabel_(pset.getParameter<edm::InputTag>("InputLabel")), doSynchro_(pset.getParameter<bool>("doSynchro")), eventCounter_(0), theCabling(0) { produces<RPCDigiCollection>(); produces<RPCRawDataCounts>(); if (doSynchro_) produces<RPCRawSynchro::ProdItem>(); }
RPCUnpackingModule::~RPCUnpackingModule | ( | ) | [virtual] |
Destructor.
Definition at line 50 of file RPCUnpackingModule.cc.
References theCabling.
{ delete theCabling; }
void RPCUnpackingModule::beginRun | ( | edm::Run & | run, |
const edm::EventSetup & | es | ||
) | [virtual] |
Reimplemented from edm::EDProducer.
Definition at line 55 of file RPCUnpackingModule.cc.
References edm::ESWatcher< T >::check(), edm::EventSetup::get(), RPCReadOutMappingWithFastSearch::init(), LogTrace, theCabling, theReadoutMappingSearch, theRecordWatcher, and RPCReadOutMapping::version().
{ if (theRecordWatcher.check(es)) { LogTrace("") << "record has CHANGED!!, (re)initialise readout map!"; delete theCabling; ESTransientHandle<RPCEMap> readoutMapping; es.get<RPCEMapRcd>().get(readoutMapping); theCabling = readoutMapping->convert(); theReadoutMappingSearch.init(theCabling); LogTrace("") <<" READOUT MAP VERSION: " << theCabling->version() << endl; } }
void RPCUnpackingModule::produce | ( | edm::Event & | ev, |
const edm::EventSetup & | es | ||
) | [virtual] |
Retrieves a RPCDigiCollection from the Event, creates a FEDRawDataCollection (EDProduct) using the DigiToRaw converter, and attaches it to the Event.
Implements edm::EDProducer.
Definition at line 69 of file RPCUnpackingModule.cc.
References FEDHeader::bxID(), FEDTrailer::check(), FEDHeader::check(), rpcrawtodigi::EventRecords::complete(), FEDTrailer::crc(), FEDRawData::data(), dataLabel_, debug, doSynchro_, event(), eventCounter_, FEDTrailer::evtStatus(), edm::Event::getByLabel(), instance, FEDTrailer::lenght(), LogDebug, LogTrace, FEDHeader::lvl1ID(), FEDNumbering::MAXRPCFEDID, FEDNumbering::MINRPCFEDID, FEDHeader::moreHeaders(), FEDTrailer::moreTrailers(), reco::print(), rpcrawtodigi::DataRecord::print(), edm::Event::put(), record, RPCRecordFormatter::recordUnpack(), FEDRawData::size(), FEDHeader::sourceID(), ntuplemaker::status, theCabling, theReadoutMappingSearch, FEDHeader::triggerType(), FEDTrailer::ttsBits(), rpcrawtodigi::DataRecord::type(), and FEDHeader::version().
{ static bool debug = edm::MessageDrop::instance()->debugEnabled; eventCounter_++; if (debug) LogDebug ("RPCUnpacker::produce") <<"Beginning To Unpack Event: "<<eventCounter_; Handle<FEDRawDataCollection> allFEDRawData; ev.getByLabel(dataLabel_,allFEDRawData); std::auto_ptr<RPCDigiCollection> producedRPCDigis(new RPCDigiCollection); std::auto_ptr<RPCRawDataCounts> producedRawDataCounts(new RPCRawDataCounts); std::auto_ptr<RPCRawSynchro::ProdItem> producedRawSynchoCounts; if (doSynchro_) producedRawSynchoCounts.reset(new RPCRawSynchro::ProdItem); int status = 0; for (int fedId= FEDNumbering::MINRPCFEDID; fedId<=FEDNumbering::MAXRPCFEDID; ++fedId){ const FEDRawData & rawData = allFEDRawData->FEDData(fedId); RPCRecordFormatter interpreter = theCabling ? RPCRecordFormatter(fedId,&theReadoutMappingSearch) : RPCRecordFormatter(fedId,0); int triggerBX =0; int nWords = rawData.size()/sizeof(Word64); if (nWords==0) continue; // // check headers // const Word64* header = reinterpret_cast<const Word64* >(rawData.data()); header--; bool moreHeaders = true; while (moreHeaders) { header++; FEDHeader fedHeader( reinterpret_cast<const unsigned char*>(header)); if (!fedHeader.check()) { producedRawDataCounts->addReadoutError(fedId, ReadoutError(ReadoutError::HeaderCheckFail)); if (debug) LogTrace("") <<" ** PROBLEM **, header.check() failed, break"; break; } if ( fedHeader.sourceID() != fedId) { producedRawDataCounts->addReadoutError(fedId, ReadoutError(ReadoutError::InconsitentFedId)); if (debug) LogTrace ("") <<" ** PROBLEM **, fedHeader.sourceID() != fedId" << "fedId = " << fedId<<" sourceID="<<fedHeader.sourceID(); } triggerBX = fedHeader.bxID(); moreHeaders = fedHeader.moreHeaders(); if (debug) { stringstream str; str <<" header: "<< *reinterpret_cast<const bitset<64>*> (header) << endl; str <<" header triggerType: " << fedHeader.triggerType()<<endl; str <<" header lvl1ID: " << fedHeader.lvl1ID() << endl; str <<" header bxID: " << fedHeader.bxID() << endl; str <<" header sourceID: " << fedHeader.sourceID() << endl; str <<" header version: " << fedHeader.version() << endl; LogTrace("") << str.str(); } } // // check trailers // const Word64* trailer=reinterpret_cast<const Word64* >(rawData.data())+(nWords-1); trailer++; bool moreTrailers = true; while (moreTrailers) { trailer--; FEDTrailer fedTrailer(reinterpret_cast<const unsigned char*>(trailer)); if ( !fedTrailer.check()) { producedRawDataCounts->addReadoutError(fedId, ReadoutError(ReadoutError::TrailerCheckFail)); if (debug) LogTrace("") <<" ** PROBLEM **, trailer.check() failed, break"; break; } if ( fedTrailer.lenght()!= nWords) { producedRawDataCounts->addReadoutError(fedId, ReadoutError(ReadoutError::InconsistentDataSize)); if (debug) LogTrace("")<<" ** PROBLEM **, fedTrailer.lenght()!= nWords, break"; break; } moreTrailers = fedTrailer.moreTrailers(); if (debug) { ostringstream str; str <<" trailer: "<< *reinterpret_cast<const bitset<64>*> (trailer) << endl; str <<" trailer lenght: "<<fedTrailer.lenght()<<endl; str <<" trailer crc: "<<fedTrailer.crc()<<endl; str <<" trailer evtStatus: "<<fedTrailer.evtStatus()<<endl; str <<" trailer ttsBits: "<<fedTrailer.ttsBits()<<endl; LogTrace("") << str.str(); } } // // data records // if (debug) { ostringstream str; for (const Word64* word = header+1; word != trailer; word++) { str<<" data: "<<*reinterpret_cast<const bitset<64>*>(word) << endl; } LogTrace("") << str.str(); } // if (triggerBX != 51) continue; // if (triggerBX != 2316) continue; EventRecords event(triggerBX); for (const Word64* word = header+1; word != trailer; word++) { for( int iRecord=1; iRecord<=4; iRecord++){ const DataRecord::Data* pRecord = reinterpret_cast<const DataRecord::Data* >(word+1)-iRecord; DataRecord record(*pRecord); event.add(record); if (debug) { std::ostringstream str; str <<"record: "<<record.print()<<" hex: "<<hex<<*pRecord<<dec; str <<" type:"<<record.type()<<DataRecord::print(record); if (event.complete()) { str<< " --> dccId: "<<fedId << " rmb: " <<event.recordSLD().rmb() << " lnk: "<<event.recordSLD().tbLinkInputNumber() << " lb: "<<event.recordCD().lbInLink() << " part: "<<event.recordCD().partitionNumber() << " data: "<<event.recordCD().partitionData() << " eod: "<<event.recordCD().eod(); } LogTrace("") << str.str(); } producedRawDataCounts->addDccRecord(fedId, record); int statusTMP = 0; if (event.complete() ) statusTMP= interpreter.recordUnpack( event, producedRPCDigis.get(), producedRawDataCounts.get(), producedRawSynchoCounts.get()); if (statusTMP != 0) status = statusTMP; } } } if (status && debug) LogTrace("")<<" RPCUnpackingModule - There was unpacking PROBLEM in this event"<<endl; if (debug) LogTrace("") << DebugDigisPrintout()(producedRPCDigis.get()) << endl; ev.put(producedRPCDigis); ev.put(producedRawDataCounts); if (doSynchro_) ev.put(producedRawSynchoCounts); }
edm::InputTag RPCUnpackingModule::dataLabel_ [private] |
Definition at line 36 of file RPCUnpackingModule.h.
Referenced by produce().
bool RPCUnpackingModule::doSynchro_ [private] |
Definition at line 37 of file RPCUnpackingModule.h.
Referenced by produce(), and RPCUnpackingModule().
unsigned long RPCUnpackingModule::eventCounter_ [private] |
Definition at line 38 of file RPCUnpackingModule.h.
Referenced by produce().
const RPCReadOutMapping* RPCUnpackingModule::theCabling [private] |
Definition at line 41 of file RPCUnpackingModule.h.
Referenced by beginRun(), produce(), and ~RPCUnpackingModule().
Definition at line 42 of file RPCUnpackingModule.h.
Referenced by beginRun(), and produce().
Definition at line 40 of file RPCUnpackingModule.h.
Referenced by beginRun().