4 #ifdef SiStripMonitorHardware_BuildEventMatchingCode
7 #include "boost/cstdint.hpp"
34 virtual ~SpyEventMatcherModule();
42 static const char* messageLabel_;
43 const bool filterNonMatchingEvents_;
47 std::auto_ptr<SpyEventMatcher> spyEventMatcher_;
48 std::auto_ptr<SpyUtilities> utils_;
55 const char* SpyEventMatcherModule::messageLabel_ =
"SiStripSpyDataMergeModule";
58 : filterNonMatchingEvents_( config.getParameter<bool>(
"FilterNonMatchingEvents") ),
59 doMerge_( config.getParameter<bool>(
"MergeData") ),
60 primaryStreamRawDataTag_( config.getParameter<edm::InputTag>(
"PrimaryEventRawDataTag") ),
61 spyEventMatcher_(new SpyEventMatcher(config)),
62 utils_(new SpyUtilities)
64 primaryStreamRawDataToken_ = consumes<FEDRawDataCollection>(primaryStreamRawDataTag_);
66 produces<FEDRawDataCollection>(
"RawSpyData");
67 produces< std::vector<uint32_t> >(
"SpyTotalEventCount");
68 produces< std::vector<uint32_t> >(
"SpyL1ACount");
69 produces< std::vector<uint32_t> >(
"SpyAPVAddress");
70 produces< edm::DetSetVector<SiStripRawDigi> >(
"SpyScope");
71 produces< edm::DetSetVector<SiStripRawDigi> >(
"SpyPayload");
72 produces< edm::DetSetVector<SiStripRawDigi> >(
"SpyReordered");
73 produces< edm::DetSetVector<SiStripRawDigi> >(
"SpyVirginRaw");
77 SpyEventMatcherModule::~SpyEventMatcherModule()
83 spyEventMatcher_->initialize();
89 uint8_t apvAddress = 0;
92 findL1IDandAPVAddress(event,cabling,eventId,apvAddress);
94 LogError(messageLabel_) << e.
what();
95 return ( filterNonMatchingEvents_ ?
false :
true );
97 const SpyEventMatcher::SpyEventList* matches = spyEventMatcher_->matchesForEvent(eventId,apvAddress);
100 copyData(eventId,apvAddress,matches,event,cabling);
104 return ( filterNonMatchingEvents_ ?
false :
true );
108 void SpyEventMatcherModule::findL1IDandAPVAddress(
const edm::Event& event,
const SiStripFedCabling& cabling, uint32_t& l1ID, uint8_t& apvAddress)
const
111 event.getByToken(primaryStreamRawDataToken_,fedRawDataHandle);
113 for (
auto iFedId = cabling.
fedIds().begin(); iFedId != cabling.
fedIds().end(); ++iFedId) {
115 if ( (!data.
data()) || (!data.
size()) ) {
116 LogDebug(messageLabel_) <<
"Failed to get FED data for FED ID " << *iFedId;
119 std::auto_ptr<FEDBuffer> buffer;
121 buffer.reset(
new FEDBuffer(data.
data(),data.
size()));
123 LogDebug(messageLabel_) <<
"Failed to build FED buffer for FED ID " << *iFedId <<
". Exception was " << e.
what();
126 if (!buffer->doChecks()) {
127 LogDebug(messageLabel_) <<
"Buffer check failed for FED ID " << *iFedId;
130 l1ID = buffer->daqLvl1ID();
131 apvAddress = buffer->trackerSpecialHeader().apveAddress();
132 if (apvAddress != 0) {
138 const FEDFullDebugHeader* header =
dynamic_cast<const FEDFullDebugHeader*
>(buffer->feHeader());
140 for (
auto iConn = connections.begin(); iConn != connections.end(); ++iConn) {
141 if (!iConn->isConnected()) {
144 if ( !buffer->channelGood(iConn->fedCh()) ) {
147 apvAddress = header->feUnitMajorityAddress(iConn->fedCh()/
FEDCH_PER_FEUNIT);
154 throw cms::Exception(messageLabel_) <<
"Failed to get L1ID/APV address from any FED";
157 void SpyEventMatcherModule::copyData(
const uint32_t eventId,
const uint8_t apvAddress,
const SpyEventMatcher::SpyEventList* matches,
edm::Event& event,
160 SpyEventMatcher::SpyDataCollections matchedCollections;
161 spyEventMatcher_->getMatchedCollections(eventId,apvAddress,matches,cabling,matchedCollections);
162 if (matchedCollections.rawData.get()) event.
put(matchedCollections.rawData,
"RawSpyData");
163 if (matchedCollections.totalEventCounters.get()) event.
put(matchedCollections.totalEventCounters,
"SpyTotalEventCount");
164 if (matchedCollections.l1aCounters.get()) event.
put(matchedCollections.l1aCounters,
"SpyL1ACount");
165 if (matchedCollections.apvAddresses.get()) event.
put(matchedCollections.apvAddresses,
"SpyAPVAddress");
166 if (matchedCollections.scopeDigis.get()) event.
put(matchedCollections.scopeDigis,
"SpyScope");
167 if (matchedCollections.payloadDigis.get()) event.
put(matchedCollections.payloadDigis,
"SpyPayload");
168 if (matchedCollections.reorderedDigis.get()) event.
put(matchedCollections.reorderedDigis,
"SpyReordered");
169 if (matchedCollections.virginRawDigis.get()) event.
put(matchedCollections.virginRawDigis,
"SpyVirginRaw");
175 typedef sistrip::SpyEventMatcherModule SiStripSpyEventMatcherModule;
178 #endif //SiStripMonitorHardware_BuildEventMatchingCode
virtual char const * what() const
#define DEFINE_FWK_MODULE(type)
size_t size() const
Lenght of the data buffer in bytes.
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
FedsConstIterRange fedIds() const
std::set< EventID > SpyEventList
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
static const uint16_t FEDCH_PER_FEUNIT
ConnsConstIterRange fedConnections(uint16_t fed_id) const
Contains cabling info at the device level, including DetId, APV pair numbers, hardware addresses...
char data[epos_bytes_allocation]
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.