CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
sistrip::RawToDigiModule Class Reference

#include <SiStripRawToDigiModule.h>

Inheritance diagram for sistrip::RawToDigiModule:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual void beginRun (const edm::Run &, const edm::EventSetup &) override
 
virtual void produce (edm::Event &, const edm::EventSetup &) override
 
 RawToDigiModule (const edm::ParameterSet &)
 
 ~RawToDigiModule ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void updateCabling (const edm::EventSetup &)
 

Private Attributes

const SiStripFedCablingcabling_
 
uint32_t cacheId_
 
bool doAPVEmulatorCheck_
 
bool doFullCorruptBufferChecks_
 
bool extractCm_
 
edm::InputTag productLabel_
 
RawToDigiUnpackerrawToDigi_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 25 of file SiStripRawToDigiModule.h.

Constructor & Destructor Documentation

sistrip::RawToDigiModule::RawToDigiModule ( const edm::ParameterSet pset)

Definition at line 21 of file SiStripRawToDigiModule.cc.

References doAPVEmulatorCheck_, doFullCorruptBufferChecks_, extractCm_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), edm::isDebugEnabled(), LogTrace, and rawToDigi_.

21  :
22  rawToDigi_(0),
23  productLabel_(pset.getParameter<edm::InputTag>("ProductLabel")),
24  cabling_(0),
25  cacheId_(0),
26  extractCm_(false),
29  {
30  if ( edm::isDebugEnabled() ) {
31  LogTrace("SiStripRawToDigi")
32  << "[sistrip::RawToDigiModule::" << __func__ << "]"
33  << " Constructing object...";
34  }
35 
36  int16_t appended_bytes = pset.getParameter<int>("AppendedBytes");
37  int16_t trigger_fed_id = pset.getParameter<int>("TriggerFedId");
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");
42 
43  int16_t fed_buffer_dump_freq = pset.getUntrackedParameter<int>("FedBufferDumpFreq",0);
44  int16_t fed_event_dump_freq = pset.getUntrackedParameter<int>("FedEventDumpFreq",0);
45  bool quiet = pset.getUntrackedParameter<bool>("Quiet",true);
46  extractCm_ = pset.getParameter<bool>("UnpackCommonModeValues");
47  doFullCorruptBufferChecks_ = pset.getParameter<bool>("DoAllCorruptBufferChecks");
48  doAPVEmulatorCheck_ = pset.getParameter<bool>("DoAPVEmulatorCheck");
49 
50  uint32_t errorThreshold = pset.getParameter<unsigned int>("ErrorThreshold");
51 
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_->quiet(quiet);
54  rawToDigi_->useDaqRegister( use_daq_register );
55  rawToDigi_->extractCm(extractCm_);
56  rawToDigi_->doFullCorruptBufferChecks(doFullCorruptBufferChecks_);
57  rawToDigi_->doAPVEmulatorCheck(doAPVEmulatorCheck_);
58 
59  produces< SiStripEventSummary >();
60  produces< edm::DetSetVector<SiStripRawDigi> >("ScopeMode");
61  produces< edm::DetSetVector<SiStripRawDigi> >("VirginRaw");
62  produces< edm::DetSetVector<SiStripRawDigi> >("ProcessedRaw");
63  produces< edm::DetSetVector<SiStripDigi> >("ZeroSuppressed");
64  produces<DetIdCollection>();
65  if ( extractCm_ ) produces< edm::DetSetVector<SiStripRawDigi> >("CommonMode");
66 
67  }
T getParameter(std::string const &) const
bool isDebugEnabled()
T getUntrackedParameter(std::string const &, T const &) const
#define LogTrace(id)
RawToDigiUnpacker * rawToDigi_
const SiStripFedCabling * cabling_
sistrip::RawToDigiModule::~RawToDigiModule ( )

Definition at line 69 of file SiStripRawToDigiModule.cc.

References cabling_, edm::isDebugEnabled(), LogTrace, and rawToDigi_.

69  {
70  if ( rawToDigi_ ) { delete rawToDigi_; }
71  if ( cabling_ ) { cabling_ = 0; }
72  if ( edm::isDebugEnabled() ) {
73  LogTrace("SiStripRawToDigi")
74  << "[sistrip::RawToDigiModule::" << __func__ << "]"
75  << " Destructing object...";
76  }
77  }
bool isDebugEnabled()
#define LogTrace(id)
RawToDigiUnpacker * rawToDigi_
const SiStripFedCabling * cabling_

Member Function Documentation

void sistrip::RawToDigiModule::beginRun ( const edm::Run run,
const edm::EventSetup setup 
)
overridevirtual

Reimplemented from edm::EDProducer.

Definition at line 79 of file SiStripRawToDigiModule.cc.

References updateCabling().

79  {
80  updateCabling( setup );
81  }
void updateCabling(const edm::EventSetup &)
void sistrip::RawToDigiModule::produce ( edm::Event event,
const edm::EventSetup setup 
)
overridevirtual

Retrieves cabling map from EventSetup and FEDRawDataCollection from Event, creates a DetSetVector of SiStrip(Raw)Digis, uses the SiStripRawToDigiUnpacker class to fill the DetSetVector, and attaches the container to the Event.

Implements edm::EDProducer.

Definition at line 89 of file SiStripRawToDigiModule.cc.

References cabling_, sistrip::RawToDigiUnpacker::createDigis(), edm::EventID::event(), extractCm_, edm::EventBase::id(), productLabel_, rawToDigi_, edmLumisInFiles::summary, sistrip::RawToDigiUnpacker::triggerFed(), and updateCabling().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

89  {
90 
91  updateCabling( setup );
92 
93  // Retrieve FED raw data (by label, which is "source" by default)
95  event.getByLabel( productLabel_, buffers );
96 
97  // Populate SiStripEventSummary object with "trigger FED" info
98  std::auto_ptr<SiStripEventSummary> summary( new SiStripEventSummary() );
99  rawToDigi_->triggerFed( *buffers, *summary, event.id().event() );
100 
101  // Create containers for digis
106  DetIdCollection* ids = new DetIdCollection();
108 
109  // Create digis
110  if ( rawToDigi_ ) { rawToDigi_->createDigis( *cabling_,*buffers,*summary,*sm,*vr,*pr,*zs,*ids,*cm ); }
111 
112  // Create auto_ptr's of digi products
113  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > sm_dsv(sm);
114  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > vr_dsv(vr);
115  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > pr_dsv(pr);
116  std::auto_ptr< edm::DetSetVector<SiStripDigi> > zs_dsv(zs);
117  std::auto_ptr< DetIdCollection > det_ids(ids);
118  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > cm_dsv(cm);
119 
120  // Add to event
121  event.put( summary );
122  event.put( sm_dsv, "ScopeMode" );
123  event.put( vr_dsv, "VirginRaw" );
124  event.put( pr_dsv, "ProcessedRaw" );
125  event.put( zs_dsv, "ZeroSuppressed" );
126  event.put( det_ids );
127  if ( extractCm_ ) event.put( cm_dsv, "CommonMode" );
128 
129  }
void triggerFed(const FEDRawDataCollection &, SiStripEventSummary &, const uint32_t &event)
trigger info
EventNumber_t event() const
Definition: EventID.h:44
void updateCabling(const edm::EventSetup &)
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
edm::EDCollection< DetId > DetIdCollection
RawToDigiUnpacker * rawToDigi_
const SiStripFedCabling * cabling_
void sistrip::RawToDigiModule::updateCabling ( const edm::EventSetup setup)
private

Definition at line 131 of file SiStripRawToDigiModule.cc.

References trackerHits::c, cabling_, cacheId_, edm::EventSetup::get(), edm::isDebugEnabled(), LogTrace, edm::ESHandle< class >::product(), SiStripFedCabling::summary(), and SiStripFedCabling::terse().

Referenced by beginRun(), and produce().

131  {
132 
133  uint32_t cache_id = setup.get<SiStripFedCablingRcd>().cacheIdentifier();
134 
135  if ( cacheId_ != cache_id ) {
136 
138  setup.get<SiStripFedCablingRcd>().get( c );
139  cabling_ = c.product();
140 
141  if ( edm::isDebugEnabled() ) {
142  if ( !cacheId_ ) {
143  std::stringstream ss;
144  ss << "[sistrip::RawToDigiModule::" << __func__ << "]"
145  << " Updating cabling for first time..." << std::endl
146  << " Terse print out of FED cabling:" << std::endl;
147  cabling_->terse(ss);
148  LogTrace("SiStripRawToDigi") << ss.str();
149  }
150  }
151 
152  if ( edm::isDebugEnabled() ) {
153  std::stringstream sss;
154  sss << "[sistrip::RawToDigiModule::" << __func__ << "]"
155  << " Summary of FED cabling:" << std::endl;
156  cabling_->summary(sss);
157  LogTrace("SiStripRawToDigi") << sss.str();
158  }
159  cacheId_ = cache_id;
160  }
161  }
bool isDebugEnabled()
void terse(std::stringstream &) const
void summary(std::stringstream &ss) const
LEFT FOR COMPATIBILITY. SHOULD BE REPLACED BY PRINTSUMMARY.
#define LogTrace(id)
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
const SiStripFedCabling * cabling_

Member Data Documentation

const SiStripFedCabling* sistrip::RawToDigiModule::cabling_
private

Definition at line 41 of file SiStripRawToDigiModule.h.

Referenced by produce(), updateCabling(), and ~RawToDigiModule().

uint32_t sistrip::RawToDigiModule::cacheId_
private

Definition at line 42 of file SiStripRawToDigiModule.h.

Referenced by updateCabling().

bool sistrip::RawToDigiModule::doAPVEmulatorCheck_
private

Definition at line 47 of file SiStripRawToDigiModule.h.

Referenced by RawToDigiModule().

bool sistrip::RawToDigiModule::doFullCorruptBufferChecks_
private

Definition at line 44 of file SiStripRawToDigiModule.h.

Referenced by RawToDigiModule().

bool sistrip::RawToDigiModule::extractCm_
private

Definition at line 43 of file SiStripRawToDigiModule.h.

Referenced by produce(), and RawToDigiModule().

edm::InputTag sistrip::RawToDigiModule::productLabel_
private

Definition at line 40 of file SiStripRawToDigiModule.h.

Referenced by produce().

RawToDigiUnpacker* sistrip::RawToDigiModule::rawToDigi_
private

Definition at line 39 of file SiStripRawToDigiModule.h.

Referenced by produce(), RawToDigiModule(), and ~RawToDigiModule().