CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripRawToDigiModule.cc
Go to the documentation of this file.
1 
4 
16 #include <cstdlib>
17 
18 namespace sistrip {
19 
21  rawToDigi_(0),
22  cabling_(0),
23  cacheId_(0),
24  extractCm_(false),
25  doFullCorruptBufferChecks_(false),
26  doAPVEmulatorCheck_(true)
27  {
28  if ( edm::isDebugEnabled() ) {
29  LogTrace("SiStripRawToDigi")
30  << "[sistrip::RawToDigiModule::" << __func__ << "]"
31  << " Constructing object...";
32  }
33 
34  token_ = consumes<FEDRawDataCollection>(pset.getParameter<edm::InputTag>("ProductLabel"));
35  int16_t appended_bytes = pset.getParameter<int>("AppendedBytes");
36  int16_t trigger_fed_id = pset.getParameter<int>("TriggerFedId");
37  bool use_daq_register = pset.getParameter<bool>("UseDaqRegister");
38  bool using_fed_key = pset.getParameter<bool>("UseFedKey");
39  bool unpack_bad_channels = pset.getParameter<bool>("UnpackBadChannels");
40  bool mark_missing_feds = pset.getParameter<bool>("MarkModulesOnMissingFeds");
41 
42  int16_t fed_buffer_dump_freq = pset.getUntrackedParameter<int>("FedBufferDumpFreq",0);
43  int16_t fed_event_dump_freq = pset.getUntrackedParameter<int>("FedEventDumpFreq",0);
44  bool quiet = pset.getUntrackedParameter<bool>("Quiet",true);
45  extractCm_ = pset.getParameter<bool>("UnpackCommonModeValues");
46  doFullCorruptBufferChecks_ = pset.getParameter<bool>("DoAllCorruptBufferChecks");
47  doAPVEmulatorCheck_ = pset.getParameter<bool>("DoAPVEmulatorCheck");
48 
49  uint32_t errorThreshold = pset.getParameter<unsigned int>("ErrorThreshold");
50 
51  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);
52  rawToDigi_->quiet(quiet);
53  rawToDigi_->useDaqRegister( use_daq_register );
54  rawToDigi_->extractCm(extractCm_);
55  rawToDigi_->doFullCorruptBufferChecks(doFullCorruptBufferChecks_);
56  rawToDigi_->doAPVEmulatorCheck(doAPVEmulatorCheck_);
57 
58  produces< SiStripEventSummary >();
59  produces< edm::DetSetVector<SiStripRawDigi> >("ScopeMode");
60  produces< edm::DetSetVector<SiStripRawDigi> >("VirginRaw");
61  produces< edm::DetSetVector<SiStripRawDigi> >("ProcessedRaw");
62  produces< edm::DetSetVector<SiStripDigi> >("ZeroSuppressed");
63  produces<DetIdCollection>();
64  if ( extractCm_ ) produces< edm::DetSetVector<SiStripRawDigi> >("CommonMode");
65 
66  }
67 
69  if ( rawToDigi_ ) { delete rawToDigi_; }
70  if ( cabling_ ) { cabling_ = 0; }
71  if ( edm::isDebugEnabled() ) {
72  LogTrace("SiStripRawToDigi")
73  << "[sistrip::RawToDigiModule::" << __func__ << "]"
74  << " Destructing object...";
75  }
76  }
77 
79  updateCabling( setup );
80  }
81 
89 
90  updateCabling( setup );
91 
92  // Retrieve FED raw data (by label, which is "source" by default)
94  event.getByToken( token_, buffers );
95 
96  // Populate SiStripEventSummary object with "trigger FED" info
97  std::auto_ptr<SiStripEventSummary> summary( new SiStripEventSummary() );
98  rawToDigi_->triggerFed( *buffers, *summary, event.id().event() );
99 
100  // Create containers for digis
105  DetIdCollection* ids = new DetIdCollection();
107 
108  // Create digis
109  if ( rawToDigi_ ) { rawToDigi_->createDigis( *cabling_,*buffers,*summary,*sm,*vr,*pr,*zs,*ids,*cm ); }
110 
111  // Create auto_ptr's of digi products
112  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > sm_dsv(sm);
113  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > vr_dsv(vr);
114  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > pr_dsv(pr);
115  std::auto_ptr< edm::DetSetVector<SiStripDigi> > zs_dsv(zs);
116  std::auto_ptr< DetIdCollection > det_ids(ids);
117  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > cm_dsv(cm);
118 
119  // Add to event
120  event.put( summary );
121  event.put( sm_dsv, "ScopeMode" );
122  event.put( vr_dsv, "VirginRaw" );
123  event.put( pr_dsv, "ProcessedRaw" );
124  event.put( zs_dsv, "ZeroSuppressed" );
125  event.put( det_ids );
126  if ( extractCm_ ) event.put( cm_dsv, "CommonMode" );
127 
128  }
129 
131 
132  uint32_t cache_id = setup.get<SiStripFedCablingRcd>().cacheIdentifier();
133 
134  if ( cacheId_ != cache_id ) {
135 
137  setup.get<SiStripFedCablingRcd>().get( c );
138  cabling_ = c.product();
139 
140  if ( edm::isDebugEnabled() ) {
141  if ( !cacheId_ ) {
142  std::stringstream ss;
143  ss << "[sistrip::RawToDigiModule::" << __func__ << "]"
144  << " Updating cabling for first time..." << std::endl
145  << " Terse print out of FED cabling:" << std::endl;
146  cabling_->terse(ss);
147  LogTrace("SiStripRawToDigi") << ss.str();
148  }
149  }
150 
151  if ( edm::isDebugEnabled() ) {
152  std::stringstream sss;
153  sss << "[sistrip::RawToDigiModule::" << __func__ << "]"
154  << " Summary of FED cabling:" << std::endl;
155  cabling_->summary(sss);
156  LogTrace("SiStripRawToDigi") << sss.str();
157  }
158  cacheId_ = cache_id;
159  }
160  }
161 
162 }
163 
void triggerFed(const FEDRawDataCollection &, SiStripEventSummary &, const uint32_t &event)
trigger info
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:44
bool isDebugEnabled()
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
#define LogTrace(id)
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
virtual void beginRun(const edm::Run &, const edm::EventSetup &) override
edm::EventID id() const
Definition: EventBase.h:56
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
edm::EDCollection< DetId > DetIdCollection
RawToDigiUnpacker * rawToDigi_
const SiStripFedCabling * cabling_
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
Definition: Run.h:41