25 doFullCorruptBufferChecks_(
false),
26 doAPVEmulatorCheck_(
true)
30 <<
"[sistrip::RawToDigiModule::" << __func__ <<
"]"
31 <<
" Constructing object...";
35 int16_t appended_bytes = pset.
getParameter<
int>(
"AppendedBytes");
36 int16_t trigger_fed_id = pset.
getParameter<
int>(
"TriggerFedId");
37 bool legacy_unpacker = pset.
getParameter<
bool>(
"LegacyUnpacker");
38 bool use_daq_register = pset.
getParameter<
bool>(
"UseDaqRegister");
39 bool using_fed_key = pset.
getParameter<
bool>(
"UseFedKey");
40 bool unpack_bad_channels = pset.
getParameter<
bool>(
"UnpackBadChannels");
41 bool mark_missing_feds = pset.
getParameter<
bool>(
"MarkModulesOnMissingFeds");
50 uint32_t errorThreshold = pset.
getParameter<
unsigned int>(
"ErrorThreshold");
52 rawToDigi_ =
new sistrip::RawToDigiUnpacker( appended_bytes, fed_buffer_dump_freq, fed_event_dump_freq, trigger_fed_id, using_fed_key, unpack_bad_channels, mark_missing_feds, errorThreshold);
53 rawToDigi_->legacy(legacy_unpacker);
54 rawToDigi_->quiet(quiet);
55 rawToDigi_->useDaqRegister( use_daq_register );
56 rawToDigi_->extractCm(extractCm_);
57 rawToDigi_->doFullCorruptBufferChecks(doFullCorruptBufferChecks_);
58 rawToDigi_->doAPVEmulatorCheck(doAPVEmulatorCheck_);
60 produces< SiStripEventSummary >();
61 produces< edm::DetSetVector<SiStripRawDigi> >(
"ScopeMode");
62 produces< edm::DetSetVector<SiStripRawDigi> >(
"VirginRaw");
63 produces< edm::DetSetVector<SiStripRawDigi> >(
"ProcessedRaw");
64 produces< edm::DetSetVector<SiStripDigi> >(
"ZeroSuppressed");
65 produces<DetIdCollection>();
66 if ( extractCm_ ) produces< edm::DetSetVector<SiStripRawDigi> >(
"CommonMode");
75 <<
"[sistrip::RawToDigiModule::" << __func__ <<
"]"
76 <<
" Destructing object...";
96 event.getByToken(
token_, buffers );
114 std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > sm_dsv(sm);
115 std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > vr_dsv(vr);
116 std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > pr_dsv(pr);
117 std::auto_ptr< edm::DetSetVector<SiStripDigi> > zs_dsv(zs);
118 std::auto_ptr< DetIdCollection > det_ids(ids);
119 std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > cm_dsv(cm);
122 event.put( summary );
123 event.put( sm_dsv,
"ScopeMode" );
124 event.put( vr_dsv,
"VirginRaw" );
125 event.put( pr_dsv,
"ProcessedRaw" );
126 event.put( zs_dsv,
"ZeroSuppressed" );
127 event.put( det_ids );
128 if (
extractCm_ )
event.put( cm_dsv,
"CommonMode" );
144 std::stringstream
ss;
145 ss <<
"[sistrip::RawToDigiModule::" << __func__ <<
"]"
146 <<
" Updating cabling for first time..." << std::endl
147 <<
" Terse print out of FED cabling:" << std::endl;
149 LogTrace(
"SiStripRawToDigi") << ss.str();
154 std::stringstream sss;
155 sss <<
"[sistrip::RawToDigiModule::" << __func__ <<
"]"
156 <<
" Summary of FED cabling:" << std::endl;
158 LogTrace(
"SiStripRawToDigi") << sss.str();
void triggerFed(const FEDRawDataCollection &, SiStripEventSummary &, const uint32_t &event)
trigger info
T getParameter(std::string const &) const
EventNumber_t event() const
T getUntrackedParameter(std::string const &, T const &) const
RawToDigiModule(const edm::ParameterSet &)
void terse(std::stringstream &) const
edm::EDGetTokenT< FEDRawDataCollection > token_
virtual void produce(edm::Event &, const edm::EventSetup &) override
void updateCabling(const edm::EventSetup &)
void summary(std::stringstream &ss) const
LEFT FOR COMPATIBILITY. SHOULD BE REPLACED BY PRINTSUMMARY.
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
T const * product() const
virtual void beginRun(const edm::Run &, const edm::EventSetup &) override
void createDigis(const SiStripFedCabling &, const FEDRawDataCollection &, SiStripEventSummary &, RawDigis &scope_mode, RawDigis &virgin_raw, RawDigis &proc_raw, Digis &zero_suppr, DetIdCollection &, RawDigis &common_mode)
creates digis
volatile std::atomic< bool > shutdown_flag false
bool doFullCorruptBufferChecks_
edm::EDCollection< DetId > DetIdCollection
RawToDigiUnpacker * rawToDigi_
const SiStripFedCabling * cabling_