CMS 3D CMS Logo

ScalersRawToDigi.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: EventFilter/ScalersRawToDigi
4 // Class: ScalersRawToDigi
5 //
12 //
13 // Original Author: William Badgett
14 // Created: Wed Nov 14 07:47:59 CDT 2006
15 //
16 
17 #include <memory>
18 
25 
26 // FEDRawData
29 
30 // Scalers classes
39 
41 {
42  public:
43  explicit ScalersRawToDigi(const edm::ParameterSet&);
44  ~ScalersRawToDigi() override;
45  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
46 
47  void produce(edm::Event&, const edm::EventSetup&) override;
48 
49  private:
52 
53 };
54 
55 // Constructor
57  inputTag_((char const *)"rawDataCollector")
58 {
59  produces<L1AcceptBunchCrossingCollection>();
60  produces<L1TriggerScalersCollection>();
61  produces<Level1TriggerScalersCollection>();
62  produces<LumiScalersCollection>();
63  produces<BeamSpotOnlineCollection>();
64  produces<DcsStatusCollection>();
65  if ( iConfig.exists("scalersInputTag") )
66  {
67  inputTag_ = iConfig.getParameter<edm::InputTag>("scalersInputTag");
68  }
69  fedToken_=consumes<FEDRawDataCollection>(inputTag_);
70 
71 }
72 
73 // Destructor
75 
78  desc.add<edm::InputTag>("scalersInputTag",edm::InputTag("rawDataCollector"));
79  descriptions.add("scalersRawToDigi",desc);
80 }
81 
82 // Method called to produce the data
84  const edm::EventSetup& iSetup)
85 {
86  using namespace edm;
87 
88  // Get a handle to the FED data collection
90  iEvent.getByToken(fedToken_, rawdata);
91 
92  auto pLumi = std::make_unique<LumiScalersCollection>();
93 
94  auto pOldTrigger = std::make_unique<L1TriggerScalersCollection>();
95 
96  auto pTrigger = std::make_unique<Level1TriggerScalersCollection>();
97 
98  auto pBunch = std::make_unique<L1AcceptBunchCrossingCollection>();
99 
100  auto pBeamSpotOnline = std::make_unique<BeamSpotOnlineCollection>();
101  auto pDcsStatus = std::make_unique<DcsStatusCollection>();
102 
104  const FEDRawData & fedData = rawdata->FEDData(ScalersRaw::SCALERS_FED_ID);
105  unsigned short int length = fedData.size();
106  if ( length > 0 )
107  {
108  int nWords = length / 8;
109  int nBytesExtra = 0;
110 
111  const ScalersEventRecordRaw_v6 * raw
112  = (struct ScalersEventRecordRaw_v6 *)fedData.data();
113  if ( ( raw->version == 1 ) || ( raw->version == 2 ) )
114  {
115  L1TriggerScalers oldTriggerScalers(fedData.data());
116  pOldTrigger->push_back(oldTriggerScalers);
117  nBytesExtra = length - sizeof(struct ScalersEventRecordRaw_v1);
118  }
119  else if ( raw->version >= 3 )
120  {
121  Level1TriggerScalers triggerScalers(fedData.data());
122  pTrigger->push_back(triggerScalers);
123  if ( raw->version >= 6 )
124  {
125  nBytesExtra = ScalersRaw::N_BX_v6 * sizeof(unsigned long long);
126  }
127  else
128  {
129  nBytesExtra = ScalersRaw::N_BX_v2 * sizeof(unsigned long long);
130  }
131  }
132 
133  LumiScalers lumiScalers(fedData.data());
134  pLumi->push_back(lumiScalers);
135 
136  if (( nBytesExtra >= 8 ) && (( nBytesExtra % 8 ) == 0 ))
137  {
138  unsigned long long * data =
139  (unsigned long long *)fedData.data();
140 
141  int nWordsExtra = nBytesExtra / 8;
142  for ( int i=0; i<nWordsExtra; i++)
143  {
144  int index = nWords - (nWordsExtra + 1) + i;
145  L1AcceptBunchCrossing bc(i,data[index]);
146  pBunch->push_back(bc);
147  }
148  }
149 
150  if ( raw->version >= 4 )
151  {
152  BeamSpotOnline beamSpotOnline(fedData.data());
153  pBeamSpotOnline->push_back(beamSpotOnline);
154 
155  DcsStatus dcsStatus(fedData.data());
156  pDcsStatus->push_back(dcsStatus);
157  }
158  }
159  iEvent.put(std::move(pOldTrigger));
160  iEvent.put(std::move(pTrigger));
161  iEvent.put(std::move(pLumi));
162  iEvent.put(std::move(pBunch));
163  iEvent.put(std::move(pBeamSpotOnline));
164  iEvent.put(std::move(pDcsStatus));
165 }
166 
167 // Define this as a plug-in
T getParameter(std::string const &) const
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
bool exists(std::string const &parameterName) const
checks if a parameter exists
edm::InputTag inputTag_
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
~ScalersRawToDigi() override
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
ScalersRawToDigi(const edm::ParameterSet &)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void produce(edm::Event &, const edm::EventSetup &) override
void add(std::string const &label, ParameterSetDescription const &psetDescription)
edm::EDGetTokenT< FEDRawDataCollection > fedToken_
HLT enums.
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
def move(src, dest)
Definition: eostools.py:511