CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripSpyEventSummaryProducer.cc
Go to the documentation of this file.
1 //Class to produce a dummy SiStripEventSummary object so that spy channel data can be used with commissioning software.
2 //Run types which need additional parameters from the trigger FED buffer or DAQ registers are not supported.
3 //If an unsupported run type is used, an error message will be printed and parameters will be set to zero.
4 //Author: Nick Cripps
5 //Date: 10/05/2010
6 
23 #include <memory>
24 #include <string>
25 #include "boost/scoped_array.hpp"
26 #include "boost/cstdint.hpp"
27 
28 using edm::LogError;
29 using edm::LogWarning;
30 using edm::LogInfo;
31 
32 namespace sistrip {
33 
35  {
36  public:
38  virtual ~SpyEventSummaryProducer();
39  virtual void produce(edm::Event& event, const edm::EventSetup&) override;
40  private:
42  static const char* messageLabel_;
46  };
47 
48 }
49 
50 namespace sistrip {
51 
52  const char* SpyEventSummaryProducer::messageLabel_ = "SiStripSpyEventSummaryProducer";
53 
55  : rawDataTag_(config.getParameter<edm::InputTag>("RawDataTag")),
56  runType_(sistrip::RunType(config.getParameter<uint32_t>("RunType")))
57  {
58  rawDataToken_ = consumes<FEDRawDataCollection>(rawDataTag_);
59  produces<SiStripEventSummary>();
61  }
62 
64 
66  {
68 
69  //get the event number and Bx counter from the first valud FED buffer
71  // event.getByLabel(rawDataTag_,rawDataHandle);
72  event.getByToken(rawDataToken_,rawDataHandle);
73  const FEDRawDataCollection& rawData = *rawDataHandle;
74  bool fedFound = false;
75  uint32_t fedEventNumber = 0;
76  uint32_t fedBxNumber = 0;
77  for (uint16_t fedId = sistrip::FED_ID_MIN; fedId <= sistrip::FED_ID_MAX; ++fedId) {
78  const FEDRawData& fedData = rawData.FEDData(fedId);
79  if (fedData.size() && fedData.data()) {
80  std::auto_ptr<sistrip::FEDBufferBase> pBuffer;
81  try {
82  pBuffer.reset(new sistrip::FEDBufferBase(fedData.data(),fedData.size()));
83  } catch (const cms::Exception& e) {
84  LogInfo(messageLabel_) << "Skipping FED " << fedId << " because of exception: " << e.what();
85  continue;
86  }
87  fedEventNumber = pBuffer->daqLvl1ID();
88  fedBxNumber = pBuffer->daqBXID();
89  fedFound = true;
90  break;
91  }
92  }
93  if (!fedFound) {
94  LogError(messageLabel_) << "No SiStrip FED data found in raw data.";
95  return;
96  }
97 
98  //create summary object
99  std::auto_ptr<SiStripEventSummary> pSummary(new SiStripEventSummary);
100  //set the trigger FED number to zero to indicate that it doesn't exist
101  pSummary->triggerFed(0);
102  //set the event number and Bx from the FED packets
103  pSummary->event(fedEventNumber);
104  pSummary->bx(fedBxNumber);
105  //create a fake trigger FED buffer to take comissioning parameters from
106  const int maxTriggerFedBufferSize = 84;
107  boost::scoped_array<uint32_t> fakeTriggerFedData(new uint32_t[maxTriggerFedBufferSize]);
108  for (uint8_t i=0; i<maxTriggerFedBufferSize; ++i) {
109  fakeTriggerFedData[i] = 0;
110  }
111  //set the FED readout mode to virgin raw
112  fakeTriggerFedData[15] = 1;
113  //set the spill number
114  fakeTriggerFedData[0] = 0;
115  //set the number of data senders
116  fakeTriggerFedData[20] = 1;
117  //set the run type
118  fakeTriggerFedData[10] = runType_;
119  //fill the summarry using trigger FED buffer with no data
120  pSummary->commissioningInfo(fakeTriggerFedData.get(),fedEventNumber);
121 
122  //store in event
123  event.put(pSummary);
124  }
125 
127  {
128  switch(runType_) {
130  case sistrip::PHYSICS:
131  case sistrip::PHYSICS_ZS:
132  case sistrip::PEDESTALS:
133  case sistrip::MULTI_MODE:
134  case sistrip::PEDS_ONLY:
135  case sistrip::NOISE:
139  break;
145  case sistrip::OPTO_SCAN:
146  case sistrip::APV_TIMING:
147  case sistrip::FED_TIMING:
148  case sistrip::FINE_DELAY:
154  case sistrip::VPSP_SCAN:
155  LogWarning(messageLabel_) << "Unsupported run type: " << runType_ << ". Parameters need to be set from real trigger FED. Parameters will be set to 0.";
156  break;
157  }
158  }
159 
160 }
161 
virtual char const * what() const
Definition: Exception.cc:141
int i
Definition: DBlmapReader.cc:9
static const uint16_t FED_ID_MIN
virtual void produce(edm::Event &event, const edm::EventSetup &) override
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
Constants and enumerated type for sistrip::RunType.
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
sistrip::SpyEventSummaryProducer SiStripSpyEventSummaryProducer
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
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
SpyEventSummaryProducer(const edm::ParameterSet &config)
edm::EDGetTokenT< FEDRawDataCollection > rawDataToken_
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
static const uint16_t FED_ID_MAX