CMS 3D CMS Logo

HLTGetDigi.cc
Go to the documentation of this file.
1 
10 // system include files
11 #include <memory>
12 #include <vector>
13 #include <map>
14 
20 
21 #include "HLTGetDigi.h"
22 
23 using namespace edm;
24 using namespace std;
25 
26 //
27 // constructors and destructor
28 //
30 {
31  EBdigiCollection_ = ps.getParameter<edm::InputTag>("EBdigiCollection");
32  EEdigiCollection_ = ps.getParameter<edm::InputTag>("EEdigiCollection");
33  ESdigiCollection_ = ps.getParameter<edm::InputTag>("ESdigiCollection");
34  HBHEdigiCollection_ = ps.getParameter<edm::InputTag>("HBHEdigiCollection");
35  HOdigiCollection_ = ps.getParameter<edm::InputTag>("HOdigiCollection");
36  HFdigiCollection_ = ps.getParameter<edm::InputTag>("HFdigiCollection");
37  PXLdigiCollection_ = ps.getParameter<edm::InputTag>("SiPixeldigiCollection");
38  SSTdigiCollection_ = ps.getParameter<edm::InputTag>("SiStripdigiCollection");
39  CSCStripdigiCollection_ = ps.getParameter<edm::InputTag>("CSCStripdigiCollection");
40  CSCWiredigiCollection_ = ps.getParameter<edm::InputTag>("CSCWiredigiCollection");
41  DTdigiCollection_ = ps.getParameter<edm::InputTag>("DTdigiCollection");
42  RPCdigiCollection_ = ps.getParameter<edm::InputTag>("RPCdigiCollection");
43 
44  GctCaloEmLabel_ = ps.getParameter<edm::InputTag>("L1CaloEmCollection");
45  GctCaloRegionLabel_ = ps.getParameter<edm::InputTag>("L1CaloRegionCollection");
46 
47  GctIsoEmLabel_ = ps.getParameter<edm::InputTag>("GctIsoEmCollection");
48  GctNonIsoEmLabel_ = ps.getParameter<edm::InputTag>("GctNonIsoEmCollection");
49 
50  GctCenJetLabel_ = ps.getParameter<edm::InputTag>("GctCenJetCollection");
51  GctForJetLabel_ = ps.getParameter<edm::InputTag>("GctForJetCollection");
52  GctTauJetLabel_ = ps.getParameter<edm::InputTag>("GctTauJetCollection");
53  GctJetCountsLabel_ = ps.getParameter<edm::InputTag>("GctJetCounts");
54 
55  GctEtHadLabel_ = ps.getParameter<edm::InputTag>("GctEtHadCollection");
56  GctEtMissLabel_ = ps.getParameter<edm::InputTag>("GctEtMissCollection");
57  GctEtTotalLabel_ = ps.getParameter<edm::InputTag>("GctEtTotalCollection");
58 
59  GtEvmRRLabel_ = ps.getParameter<edm::InputTag>("GtEvmReadoutRecord");
60  GtObjectMapLabel_ = ps.getParameter<edm::InputTag>("GtObjectMapRecord");
61  GtRRLabel_ = ps.getParameter<edm::InputTag>("GtReadoutRecord");
62 
63  GmtCandsLabel_ = ps.getParameter<edm::InputTag>("GmtCands");
64  GmtReadoutCollection_ = ps.getParameter<edm::InputTag>("GmtReadoutCollection");
65 
66  //--- Define which digis we want ---//
67  getEcalDigis_ = ps.getUntrackedParameter<bool>("getEcal",true) ;
68  getEcalESDigis_ = ps.getUntrackedParameter<bool>("getEcalES",true) ;
69  getHcalDigis_ = ps.getUntrackedParameter<bool>("getHcal",true) ;
70  getPixelDigis_ = ps.getUntrackedParameter<bool>("getPixels",true) ;
71  getStripDigis_ = ps.getUntrackedParameter<bool>("getStrips",true) ;
72  getCSCDigis_ = ps.getUntrackedParameter<bool>("getCSC",true) ;
73  getDTDigis_ = ps.getUntrackedParameter<bool>("getDT",true) ;
74  getRPCDigis_ = ps.getUntrackedParameter<bool>("getRPC",true) ;
75  getGctEmDigis_ = ps.getUntrackedParameter<bool>("getGctEm",true) ;
76  getGctJetDigis_ = ps.getUntrackedParameter<bool>("getGctJet",true) ;
77  getGctJetCounts_ = ps.getUntrackedParameter<bool>("getGctJetCounts",true) ;
78  getGctEtDigis_ = ps.getUntrackedParameter<bool>("getGctEt",true) ;
79  getL1Calo_ = ps.getUntrackedParameter<bool>("getL1Calo",true) ;
80  getGtEvmRR_ = ps.getUntrackedParameter<bool>("getGtEvmRR",true) ;
81  getGtObjectMap_ = ps.getUntrackedParameter<bool>("getGtObjectMap",true) ;
82  getGtRR_ = ps.getUntrackedParameter<bool>("getGtReadoutRecord",true) ;
83  getGmtCands_ = ps.getUntrackedParameter<bool>("getGmtCands",true) ;
84  getGmtRC_ = ps.getUntrackedParameter<bool>("getGmtReadout",true) ;
85 
86  //--- Declare consums ---//
87  if (getEcalDigis_) {
88  EBdigiToken_ = consumes<EBDigiCollection>(EBdigiCollection_);
89  EEdigiToken_ = consumes<EEDigiCollection>(EEdigiCollection_);
90  }
91  if (getEcalESDigis_) {
92  ESdigiToken_ = consumes<ESDigiCollection>(ESdigiCollection_);
93  }
94  if (getHcalDigis_) {
95  HBHEdigiToken_ = consumes<HBHEDigiCollection>(HBHEdigiCollection_);
96  HOdigiToken_ = consumes<HODigiCollection>(HOdigiCollection_);
97  HFdigiToken_ = consumes<HFDigiCollection>(HFdigiCollection_);
98  }
99  if (getPixelDigis_) {
100  PXLdigiToken_ = consumes<edm::DetSetVector<PixelDigi> >(PXLdigiCollection_);
101  }
102  if (getStripDigis_) {
103  SSTdigiToken_ = consumes<edm::DetSetVector<SiStripDigi> >(SSTdigiCollection_);
104  }
105  if (getCSCDigis_) {
106  CSCStripdigiToken_ = consumes<CSCStripDigiCollection>(CSCStripdigiCollection_);
107  CSCWiredigiToken_ = consumes<CSCWireDigiCollection>(CSCWiredigiCollection_);
108  }
109  if (getDTDigis_) {
110  DTdigiToken_ = consumes<DTDigiCollection>(DTdigiCollection_);
111  }
112  if (getRPCDigis_) {
113  RPCdigiToken_ = consumes<RPCDigiCollection>(RPCdigiCollection_);
114  }
115  if (getGctEmDigis_) {
116  GctIsoEmToken_ = consumes<L1GctEmCandCollection>(GctIsoEmLabel_);
117  GctNonIsoEmToken_ = consumes<L1GctEmCandCollection>(GctNonIsoEmLabel_);
118  }
119  if (getGctJetDigis_) {
120  GctCenJetToken_ = consumes<L1GctJetCandCollection>(GctCenJetLabel_);
121  GctForJetToken_ = consumes<L1GctJetCandCollection>(GctForJetLabel_);
122  GctTauJetToken_ = consumes<L1GctJetCandCollection>(GctTauJetLabel_);
123  }
124  if (getGctJetCounts_) {
125  GctJetCountsToken_ = consumes<L1GctJetCounts>(GctJetCountsLabel_);
126  }
127  if (getGctEtDigis_) {
128  GctEtHadToken_ = consumes<L1GctEtHad>(GctEtHadLabel_);
129  GctEtMissToken_ = consumes<L1GctEtMiss>(GctEtMissLabel_);
130  GctEtTotalToken_ = consumes<L1GctEtTotal>(GctEtTotalLabel_);
131  }
132  if (getL1Calo_) {
133  GctCaloEmToken_ = consumes<L1CaloEmCollection>(GctCaloEmLabel_);
134  GctCaloRegionToken_ = consumes<L1CaloRegionCollection>(GctCaloRegionLabel_);
135  }
136  if (getGtEvmRR_) {
137  GtEvmRRToken_ = consumes<L1GlobalTriggerEvmReadoutRecord>(GtEvmRRLabel_);
138  }
139  if (getGtObjectMap_) {
140  GtObjectMapToken_ = consumes<L1GlobalTriggerObjectMapRecord>(GtObjectMapLabel_);
141  }
142  if (getGtRR_) {
143  GtRRToken_ = consumes<L1GlobalTriggerReadoutRecord>(GtRRLabel_);
144  }
145  if (getGmtCands_) {
146  GmtCandsToken_ = consumes<std::vector<L1MuGMTCand> >(GmtCandsLabel_);
147  }
148  if (getGmtRC_) {
149  GmtReadoutToken_ = consumes<L1MuGMTReadoutCollection>(GmtReadoutCollection_);
150  }
151 
152 }
153 
154 HLTGetDigi::~HLTGetDigi() = default;
155 
156 void
159  desc.add<edm::InputTag>("EEdigiCollection",edm::InputTag("ecalDigis","eeDigis"));
160  desc.add<edm::InputTag>("HBHEdigiCollection",edm::InputTag("hcalDigis"));
161  desc.add<edm::InputTag>("GctIsoEmCollection",edm::InputTag("gctDigis","isoEm"));
162  desc.add<edm::InputTag>("ESdigiCollection",edm::InputTag("ecalPreshowerDigis"));
163  desc.add<edm::InputTag>("GctEtHadCollection",edm::InputTag("gctDigis"));
164  desc.add<edm::InputTag>("CSCStripdigiCollection",edm::InputTag("muonCSCDigis","MuonCSCStripDigi"));
165  desc.add<edm::InputTag>("GmtCands",edm::InputTag("gmtDigis"));
166  desc.add<edm::InputTag>("GctEtTotalCollection",edm::InputTag("gctDigis"));
167  desc.add<edm::InputTag>("SiStripdigiCollection",edm::InputTag("siStripDigis"));
168  desc.add<edm::InputTag>("GctJetCounts",edm::InputTag("gctDigis"));
169  desc.add<edm::InputTag>("DTdigiCollection",edm::InputTag("muonDTDigis"));
170  desc.add<edm::InputTag>("GctTauJetCollection ",edm::InputTag("gctDigis","tauJets"));
171  desc.add<edm::InputTag>("L1CaloRegionCollection",edm::InputTag("rctDigis"));
172  desc.add<edm::InputTag>("GtObjectMapRecord",edm::InputTag("gtDigis"));
173  desc.add<edm::InputTag>("GmtReadoutCollection",edm::InputTag("gmtDigis"));
174  desc.add<edm::InputTag>("HOdigiCollection",edm::InputTag("hcalDigis"));
175  desc.add<edm::InputTag>("RPCdigiCollection",edm::InputTag("muonRPCDigis"));
176  desc.add<edm::InputTag>("CSCWiredigiCollection",edm::InputTag("muonCSCDigis","MuonCSCWireDigi"));
177  desc.add<edm::InputTag>("GctForJetCollection",edm::InputTag("gctDigis","tauJets"));
178  desc.add<edm::InputTag>("HFdigiCollection",edm::InputTag("hcalDigis"));
179  desc.add<edm::InputTag>("SiPixeldigiCollection",edm::InputTag("siPixelDigis"));
180  desc.add<edm::InputTag>("GctNonIsoEmCollection",edm::InputTag("gctDigis","nonIsoEm"));
181  desc.add<edm::InputTag>("GtEvmReadoutRecord",edm::InputTag("gtDigis"));
182  desc.add<edm::InputTag>("L1CaloEmCollection",edm::InputTag("rctDigis"));
183  desc.add<edm::InputTag>("GctCenJetCollection",edm::InputTag("gctDigis","cenJets"));
184  desc.add<edm::InputTag>("GtReadoutRecord",edm::InputTag("gtDigis"));
185  desc.add<edm::InputTag>("GctEtMissCollection",edm::InputTag("gctDigis"));
186  desc.add<edm::InputTag>("EBdigiCollection",edm::InputTag("ecalDigis","ebDigis"));
187  desc.addUntracked<bool>("getGctEt",true);
188  desc.addUntracked<bool>("getGtReadoutRecord",true);
189  desc.addUntracked<bool>("getGtEvmRR",true);
190  desc.addUntracked<bool>("getGctEm",true);
191  desc.addUntracked<bool>("getPixels",true);
192  desc.addUntracked<bool>("getGctJet",true);
193  desc.addUntracked<bool>("getHcal",true);
194  desc.addUntracked<bool>("getGctJetCounts",true);
195  desc.addUntracked<bool>("getL1Calo",false);
196  desc.addUntracked<bool>("getStrips",true);
197  desc.addUntracked<bool>("getDT",true);
198  desc.addUntracked<bool>("getGtObjectMap",true);
199  desc.addUntracked<bool>("getGmtCands",true);
200  desc.addUntracked<bool>("getRPC",true);
201  desc.addUntracked<bool>("getEcal",true);
202  desc.addUntracked<bool>("getGmtReadout",true);
203  desc.addUntracked<bool>("getEcalES",true);
204  desc.addUntracked<bool>("getCSC",true);
205  descriptions.add("hltGetDigi",desc);
206 }
207 
208 //
209 // member functions
210 //
211 
212 // ------------ method called to produce the data ------------
213 void
215 {
216  using namespace edm;
217 
218  //--- L1 GCT and GT Digis ---//
219  edm::Handle<L1GctEtHad> GctEtHad ;
220  edm::Handle<L1GctEtMiss> GctEtMiss ;
221  edm::Handle<L1GctEtTotal> GctEtTotal ;
222 
223  const L1GctEtHad* etHad = nullptr ;
224  const L1GctEtMiss* etMiss = nullptr ;
225  const L1GctEtTotal* etTotal = nullptr ;
226 
227  if (getGctEtDigis_) {
228  iEvent.getByToken(GctEtHadToken_,GctEtHad) ;
229  iEvent.getByToken(GctEtMissToken_,GctEtMiss) ;
230  iEvent.getByToken(GctEtTotalToken_,GctEtTotal) ;
231  etHad = GctEtHad.product() ;
232  etMiss = GctEtMiss.product() ;
233  etTotal = GctEtTotal.product() ;
234 
235  LogDebug("DigiInfo") << "Value of L1GctEtHad::et(): " << etHad->et() ;
236  LogDebug("DigiInfo") << "Value of L1GctEtMiss::et(): " << etMiss->et() << ", phi(): " << etMiss->phi() ;
237  LogDebug("DigiInfo") << "Value of L1GctEtTotal::et(): " << etTotal->et() ;
238  }
239 
242 
243  const L1GctEmCandCollection* isoEMdigis = nullptr ;
244  const L1GctEmCandCollection* nonIsoEMdigis = nullptr ;
245  if (getGctEmDigis_) {
246  iEvent.getByToken(GctIsoEmToken_,GctIsoEM) ;
247  isoEMdigis = GctIsoEM.product() ;
248  iEvent.getByToken(GctNonIsoEmToken_,GctNonIsoEM) ;
249  nonIsoEMdigis = GctNonIsoEM.product() ;
250  LogDebug("DigiInfo") << "total # Gct Iso EM digis: " << isoEMdigis->size() ;
251  LogDebug("DigiInfo") << "total # Gct non-Iso EM digis: " << nonIsoEMdigis->size() ;
252  }
253 
257  edm::Handle<L1GctJetCounts> GctJetCounts ;
258 
259  const L1GctJetCandCollection* cenJetDigis = nullptr ;
260  const L1GctJetCandCollection* forJetDigis = nullptr ;
261  const L1GctJetCandCollection* tauJetDigis = nullptr ;
262  std::unique_ptr<L1GctJetCounts> newCounts( new L1GctJetCounts() ) ;
263  L1GctJetCounts* counts = newCounts.get() ;
264 
265  if (getGctJetDigis_) {
266  iEvent.getByToken(GctCenJetToken_,GctCenJets) ;
267  cenJetDigis = GctCenJets.product() ;
268  iEvent.getByToken(GctForJetToken_,GctForJets) ;
269  forJetDigis = GctForJets.product() ;
270  iEvent.getByToken(GctTauJetToken_,GctTauJets) ;
271  tauJetDigis = GctTauJets.product() ;
272  LogDebug("DigiInfo") << "total # Gct central Jet digis: " << cenJetDigis->size() ;
273  LogDebug("DigiInfo") << "total # Gct forward Jet digis: " << forJetDigis->size() ;
274  LogDebug("DigiInfo") << "total # Gct tau Jet digis: " << tauJetDigis->size() ;
275  }
276 
277  if (getGctJetCounts_) {
278  iEvent.getByToken(GctJetCountsToken_,GctJetCounts) ;
279  *counts = *GctJetCounts.product() ;
280  }
281 
283  edm::Handle<L1CaloRegionCollection> GctCaloRegion ;
284 
285  const L1CaloEmCollection* caloEm = nullptr ;
286  const L1CaloRegionCollection* caloRegion = nullptr ;
287 
288  if (getL1Calo_) {
289  iEvent.getByToken(GctCaloEmToken_,GctCaloEm) ;
290  iEvent.getByToken(GctCaloRegionToken_,GctCaloRegion) ;
291 
292  caloEm = GctCaloEm.product() ;
293  caloRegion = GctCaloRegion.product() ;
294 
295  LogDebug("DigiInfo") << "Calo EM size: " << caloEm->size() ;
296  LogDebug("DigiInfo") << "Calo region size: " << caloRegion->size() ;
297  }
298 
302 
304  iSetup.get< L1GtParametersRcd >().get( l1GtPar ) ;
305  int nBx = l1GtPar->gtTotalBxInEvent() ;
306 
307  std::unique_ptr<L1GlobalTriggerEvmReadoutRecord> newGtEvm( new L1GlobalTriggerEvmReadoutRecord(nBx) ) ;
308  std::unique_ptr<L1GlobalTriggerObjectMapRecord> newGtMap( new L1GlobalTriggerObjectMapRecord() ) ;
309  std::unique_ptr<L1GlobalTriggerReadoutRecord> newGtRR( new L1GlobalTriggerReadoutRecord(nBx) ) ;
310  L1GlobalTriggerEvmReadoutRecord* evm = newGtEvm.get() ;
311  L1GlobalTriggerObjectMapRecord* map = newGtMap.get() ;
312  L1GlobalTriggerReadoutRecord* rr = newGtRR.get() ;
313 
314  if (getGtEvmRR_) {
315  iEvent.getByToken(GtEvmRRToken_, gtEvmRR) ;
316  *evm = *gtEvmRR.product() ;
317  }
318  if (getGtObjectMap_) {
319  iEvent.getByToken(GtObjectMapToken_, gtMap) ;
320  *map = *gtMap.product() ;
321  }
322  if (getGtRR_) {
323  iEvent.getByToken(GtRRToken_, gtRR) ;
324  *rr = *gtRR.product() ;
325  }
326 
328  edm::Handle<L1MuGMTReadoutCollection> GmtMuCollection ;
329  std::unique_ptr<std::vector<L1MuGMTCand> > cands( new std::vector<L1MuGMTCand> ) ;
330  std::unique_ptr<L1MuGMTReadoutCollection> muCollection(new L1MuGMTReadoutCollection(nBx)) ;
331 
332  if (getGmtCands_) {
333  iEvent.getByToken(GmtCandsToken_,GmtCands) ;
334  *cands = *GmtCands.product() ;
335  }
336  if (getGmtRC_) {
337  iEvent.getByToken(GmtReadoutToken_,GmtMuCollection) ;
338  *muCollection = *GmtMuCollection.product() ;
339  std::vector<L1MuGMTExtendedCand> muons = muCollection->getRecord().getGMTCands() ;
340  LogDebug("DigiInfo") << "GMT muons present: " << muons.size() ;
341  }
342 
344  unique_ptr<DetSetVector<PixelDigi> > NewPixelDigi(new DetSetVector<PixelDigi> );
345  DetSetVector<PixelDigi>* tt = NewPixelDigi.get();
346  if (getPixelDigis_) {
347  iEvent.getByToken(PXLdigiToken_, input);
348  *tt = *input.product();
349  }
350 
352  unique_ptr<DetSetVector<SiStripDigi> > NewSiDigi(new DetSetVector<SiStripDigi> );
353  DetSetVector<SiStripDigi>* uu = NewSiDigi.get();
354  if (getStripDigis_) {
355  iEvent.getByToken(SSTdigiToken_, input2);
356  *uu = *input2.product();
357  }
358 
359  Handle<EBDigiCollection> EcalDigiEB;
360  Handle<EEDigiCollection> EcalDigiEE;
361  Handle<ESDigiCollection> EcalDigiES;
362  const EBDigiCollection* EBdigis = nullptr;
363  const EEDigiCollection* EEdigis = nullptr;
364  const ESDigiCollection* ESdigis = nullptr;
365 
366  if (getEcalDigis_) {
367  iEvent.getByToken( EBdigiToken_, EcalDigiEB );
368  EBdigis = EcalDigiEB.product();
369  LogDebug("DigiInfo") << "total # EBdigis: " << EBdigis->size() ;
370 
371  iEvent.getByToken( EEdigiToken_, EcalDigiEE );
372  EEdigis = EcalDigiEE.product();
373  LogDebug("DigiInfo") << "total # EEdigis: " << EEdigis->size() ;
374  }
375 
376  if (getEcalESDigis_) {
377  iEvent.getByToken( ESdigiToken_, EcalDigiES );
378  ESdigis = EcalDigiES.product();
379  LogDebug("DigiInfo") << "total # ESdigis: " << ESdigis->size() ;
380  }
381 
382  Handle<HBHEDigiCollection> HcalDigiHBHE ;
383  Handle<HODigiCollection> HcalDigiHO ;
384  Handle<HFDigiCollection> HcalDigiHF ;
385  const HBHEDigiCollection* HBHEdigis = nullptr ;
386  const HODigiCollection* HOdigis = nullptr ;
387  const HFDigiCollection* HFdigis = nullptr ;
388 
389  if (getHcalDigis_) {
390  iEvent.getByToken( HBHEdigiToken_, HcalDigiHBHE );
391  HBHEdigis = HcalDigiHBHE.product();
392  LogDebug("DigiInfo") << "total # HBHEdigis: " << HBHEdigis->size() ;
393 
394  iEvent.getByToken( HOdigiToken_, HcalDigiHO );
395  HOdigis = HcalDigiHO.product();
396  LogDebug("DigiInfo") << "total # HOdigis: " << HOdigis->size() ;
397 
398  iEvent.getByToken( HFdigiToken_, HcalDigiHF );
399  HFdigis = HcalDigiHF.product();
400  LogDebug("DigiInfo") << "total # HFdigis: " << HFdigis->size() ;
401  }
402 
403  Handle<CSCStripDigiCollection> CSCDigiStrip ;
404  Handle<CSCWireDigiCollection> CSCDigiWire ;
405 
406  if (getCSCDigis_) {
407  iEvent.getByToken( CSCStripdigiToken_, CSCDigiStrip );
408  iEvent.getByToken( CSCWiredigiToken_, CSCDigiWire );
409 
410  int numDigis = 0 ;
411  for (auto && iter : *CSCDigiStrip) {
412  for ( auto digiIter = iter.second.first;
413  digiIter != iter.second.second; digiIter++) numDigis++ ;
414  }
415  LogDebug("DigiInfo") << "total # CSCstripdigis: " << numDigis ;
416  numDigis = 0 ;
417  for (auto && iter : *CSCDigiWire) {
418  for ( auto digiIter = iter.second.first;
419  digiIter != iter.second.second; digiIter++) numDigis++ ;
420  }
421  LogDebug("DigiInfo") << "total # CSCwiredigis: " << numDigis ;
422  }
423 
424  Handle<DTDigiCollection> DTDigiHandle ;
425 
426  if (getDTDigis_) {
427  iEvent.getByToken( DTdigiToken_, DTDigiHandle );
428 
429  int numDigis = 0 ;
430  for (auto && iter : *DTDigiHandle) {
431  for ( auto digiIter = iter.second.first;
432  digiIter != iter.second.second; digiIter++) numDigis++ ;
433  }
434  LogDebug("DigiInfo") << "total # DTdigis: " << numDigis ;
435  }
436 
437  Handle<RPCDigiCollection> RPCDigiHandle ;
438 
439  if (getRPCDigis_) {
440  iEvent.getByToken( RPCdigiToken_, RPCDigiHandle );
441 
442  int numDigis = 0 ;
443  for (auto && iter : *RPCDigiHandle) {
444  for ( auto digiIter = iter.second.first;
445  digiIter != iter.second.second; digiIter++) numDigis++ ;
446  }
447  LogDebug("DigiInfo") << "total # RPCdigis: " << numDigis ;
448  }
449 
450  LogDebug("DigiInfo") << "***--------------- End of Event -----------------***" ;
451 
452 }
453 
454 
455 // declare this class as a framework plugin
#define LogDebug(id)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::vector< L1CaloEmCand > L1CaloEmCollection
unsigned et() const
get the Et
Definition: L1GctEtTotal.h:45
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
const int gtTotalBxInEvent() const
get / set the total Bx&#39;s in the event
#define nullptr
Persistable copy of missing Et measured at Level-1.
Definition: L1GctEtMiss.h:18
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: HLTGetDigi.cc:157
unsigned phi() const
get the Et
Definition: L1GctEtMiss.h:64
#define input2
Definition: AMPTWrapper.h:149
static std::string const input
Definition: EdmProvDump.cc:48
std::vector< L1GctJetCand > L1GctJetCandCollection
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
unsigned et() const
get the Et
Definition: L1GctEtHad.h:45
Persistable copy of total Et measured at Level-1.
Definition: L1GctEtTotal.h:18
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Persistable copy of total Ht measured at Level-1.
Definition: L1GctEtHad.h:18
T const * product() const
Definition: Handle.h:74
void add(std::string const &label, ParameterSetDescription const &psetDescription)
unsigned et() const
get the magnitude
Definition: L1GctEtMiss.h:58
HLT enums.
size_type size() const
T get() const
Definition: EventSetup.h:71
HLTGetDigi(const edm::ParameterSet &)
Definition: HLTGetDigi.cc:29
std::vector< L1CaloRegion > L1CaloRegionCollection
~HLTGetDigi() override
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: HLTGetDigi.cc:214
std::vector< L1GctEmCand > L1GctEmCandCollection