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 | Static Private Attributes
sistrip::SpyEventSummaryProducer Class Reference
Inheritance diagram for sistrip::SpyEventSummaryProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual void produce (edm::Event &event, const edm::EventSetup &) override
 
 SpyEventSummaryProducer (const edm::ParameterSet &config)
 
virtual ~SpyEventSummaryProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
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 ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void warnAboutUnsupportedRunType ()
 

Private Attributes

const edm::InputTag rawDataTag_
 
const sistrip::RunType runType_
 

Static Private Attributes

static const char * messageLabel_ = "SiStripSpyEventSummaryProducer"
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- 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::EDProducer
CurrentProcessingContext const * currentContext () const
 
- 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 33 of file SiStripSpyEventSummaryProducer.cc.

Constructor & Destructor Documentation

sistrip::SpyEventSummaryProducer::SpyEventSummaryProducer ( const edm::ParameterSet config)

Definition at line 52 of file SiStripSpyEventSummaryProducer.cc.

References warnAboutUnsupportedRunType().

53  : rawDataTag_(config.getParameter<edm::InputTag>("RawDataTag")),
54  runType_(sistrip::RunType(config.getParameter<uint32_t>("RunType")))
55  {
56  produces<SiStripEventSummary>();
58  }
T getParameter(std::string const &) const
sistrip::SpyEventSummaryProducer::~SpyEventSummaryProducer ( )
virtual

Definition at line 60 of file SiStripSpyEventSummaryProducer.cc.

60 {}

Member Function Documentation

void sistrip::SpyEventSummaryProducer::produce ( edm::Event event,
const edm::EventSetup  
)
overridevirtual

Implements edm::EDProducer.

Definition at line 62 of file SiStripSpyEventSummaryProducer.cc.

References FEDRawData::data(), alignCSCRings::e, sistrip::FED_ID_MAX, sistrip::FED_ID_MIN, FEDRawDataCollection::FEDData(), i, messageLabel_, rawDataTag_, runType_, FEDRawData::size(), warnAboutUnsupportedRunType(), and cms::Exception::what().

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

63  {
65 
66  //get the event number and Bx counter from the first valud FED buffer
68  event.getByLabel(rawDataTag_,rawDataHandle);
69  const FEDRawDataCollection& rawData = *rawDataHandle;
70  bool fedFound = false;
71  uint32_t fedEventNumber = 0;
72  uint32_t fedBxNumber = 0;
73  for (uint16_t fedId = sistrip::FED_ID_MIN; fedId <= sistrip::FED_ID_MAX; ++fedId) {
74  const FEDRawData& fedData = rawData.FEDData(fedId);
75  if (fedData.size() && fedData.data()) {
76  std::auto_ptr<sistrip::FEDBufferBase> pBuffer;
77  try {
78  pBuffer.reset(new sistrip::FEDBufferBase(fedData.data(),fedData.size()));
79  } catch (const cms::Exception& e) {
80  LogInfo(messageLabel_) << "Skipping FED " << fedId << " because of exception: " << e.what();
81  continue;
82  }
83  fedEventNumber = pBuffer->daqLvl1ID();
84  fedBxNumber = pBuffer->daqBXID();
85  fedFound = true;
86  break;
87  }
88  }
89  if (!fedFound) {
90  LogError(messageLabel_) << "No SiStrip FED data found in raw data.";
91  return;
92  }
93 
94  //create summary object
95  std::auto_ptr<SiStripEventSummary> pSummary(new SiStripEventSummary);
96  //set the trigger FED number to zero to indicate that it doesn't exist
97  pSummary->triggerFed(0);
98  //set the event number and Bx from the FED packets
99  pSummary->event(fedEventNumber);
100  pSummary->bx(fedBxNumber);
101  //create a fake trigger FED buffer to take comissioning parameters from
102  const int maxTriggerFedBufferSize = 84;
103  boost::scoped_array<uint32_t> fakeTriggerFedData(new uint32_t[maxTriggerFedBufferSize]);
104  for (uint8_t i=0; i<maxTriggerFedBufferSize; ++i) {
105  fakeTriggerFedData[i] = 0;
106  }
107  //set the FED readout mode to virgin raw
108  fakeTriggerFedData[15] = 1;
109  //set the spill number
110  fakeTriggerFedData[0] = 0;
111  //set the number of data senders
112  fakeTriggerFedData[20] = 1;
113  //set the run type
114  fakeTriggerFedData[10] = runType_;
115  //fill the summarry using trigger FED buffer with no data
116  pSummary->commissioningInfo(fakeTriggerFedData.get(),fedEventNumber);
117 
118  //store in event
119  event.put(pSummary);
120  }
virtual char const * what() const
Definition: Exception.cc:141
int i
Definition: DBlmapReader.cc:9
static const uint16_t FED_ID_MIN
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:49
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:29
static const uint16_t FED_ID_MAX
void sistrip::SpyEventSummaryProducer::warnAboutUnsupportedRunType ( )
private

Definition at line 122 of file SiStripSpyEventSummaryProducer.cc.

References sistrip::APV_LATENCY, sistrip::APV_TIMING, sistrip::CALIBRATION, sistrip::CALIBRATION_DECO, sistrip::CALIBRATION_SCAN, sistrip::CALIBRATION_SCAN_DECO, sistrip::DAQ_SCOPE_MODE, sistrip::FAST_CABLING, sistrip::FED_CABLING, sistrip::FED_TIMING, sistrip::FINE_DELAY, sistrip::FINE_DELAY_PLL, sistrip::FINE_DELAY_TTC, messageLabel_, sistrip::MULTI_MODE, sistrip::NOISE, sistrip::OPTO_SCAN, sistrip::PEDESTALS, sistrip::PEDS_FULL_NOISE, sistrip::PEDS_ONLY, sistrip::PHYSICS, sistrip::PHYSICS_ZS, sistrip::QUITE_FAST_CABLING, runType_, sistrip::UNDEFINED_RUN_TYPE, sistrip::UNKNOWN_RUN_TYPE, and sistrip::VPSP_SCAN.

Referenced by produce(), and SpyEventSummaryProducer().

123  {
124  switch(runType_) {
126  case sistrip::PHYSICS:
127  case sistrip::PHYSICS_ZS:
128  case sistrip::PEDESTALS:
129  case sistrip::MULTI_MODE:
130  case sistrip::PEDS_ONLY:
131  case sistrip::NOISE:
135  break;
141  case sistrip::OPTO_SCAN:
142  case sistrip::APV_TIMING:
143  case sistrip::FED_TIMING:
144  case sistrip::FINE_DELAY:
150  case sistrip::VPSP_SCAN:
151  LogWarning(messageLabel_) << "Unsupported run type: " << runType_ << ". Parameters need to be set from real trigger FED. Parameters will be set to 0.";
152  break;
153  }
154  }

Member Data Documentation

const char * sistrip::SpyEventSummaryProducer::messageLabel_ = "SiStripSpyEventSummaryProducer"
staticprivate

Definition at line 41 of file SiStripSpyEventSummaryProducer.cc.

Referenced by produce(), and warnAboutUnsupportedRunType().

const edm::InputTag sistrip::SpyEventSummaryProducer::rawDataTag_
private

Definition at line 42 of file SiStripSpyEventSummaryProducer.cc.

Referenced by produce().

const sistrip::RunType sistrip::SpyEventSummaryProducer::runType_
private

Definition at line 43 of file SiStripSpyEventSummaryProducer.cc.

Referenced by produce(), and warnAboutUnsupportedRunType().