CMS 3D CMS Logo

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