CMS 3D CMS Logo

AlCaEcalHcalReadoutsProducer.cc
Go to the documentation of this file.
3 
5  tok_ho_ = consumes<HORecHitCollection>(iConfig.getParameter<edm::InputTag>("hoInput"));
6  tok_hf_ = consumes<HFRecHitCollection>(iConfig.getParameter<edm::InputTag>("hfInput"));
7  tok_hbhe_ = consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("hbheInput"));
8 
9  //register your products
10  produces<HBHERecHitCollection>("HBHERecHitCollection");
11  produces<HORecHitCollection>("HORecHitCollection");
12  produces<HFRecHitCollection>("HFRecHitCollection");
13 }
14 
16 
17 // ------------ method called to produce the data ------------
19  using namespace edm;
20  using namespace std;
21 
25 
26  iEvent.getByToken(tok_hbhe_, hbhe);
27  if (!hbhe.isValid()) {
28  LogDebug("") << "AlCaEcalHcalReadoutProducer: Error! can't get hbhe product!" << std::endl;
29  return;
30  }
31 
32  iEvent.getByToken(tok_ho_, ho);
33  if (!ho.isValid()) {
34  LogDebug("") << "AlCaEcalHcalReadoutProducer: Error! can't get ho product!" << std::endl;
35  }
36 
37  iEvent.getByToken(tok_hf_, hf);
38  if (!hf.isValid()) {
39  LogDebug("") << "AlCaEcalHcalReadoutProducer: Error! can't get hf product!" << std::endl;
40  }
41  //Create empty output collections
42 
43  auto miniHBHERecHitCollection = std::make_unique<HBHERecHitCollection>();
44  auto miniHORecHitCollection = std::make_unique<HORecHitCollection>();
45  auto miniHFRecHitCollection = std::make_unique<HFRecHitCollection>();
46 
47  const HBHERecHitCollection Hithbhe = *(hbhe.product());
48  for (HBHERecHitCollection::const_iterator hbheItr = Hithbhe.begin(); hbheItr != Hithbhe.end(); hbheItr++) {
49  miniHBHERecHitCollection->push_back(*hbheItr);
50  }
51  const HORecHitCollection Hitho = *(ho.product());
52  for (HORecHitCollection::const_iterator hoItr = Hitho.begin(); hoItr != Hitho.end(); hoItr++) {
53  miniHORecHitCollection->push_back(*hoItr);
54  }
55 
56  const HFRecHitCollection Hithf = *(hf.product());
57  for (HFRecHitCollection::const_iterator hfItr = Hithf.begin(); hfItr != Hithf.end(); hfItr++) {
58  miniHFRecHitCollection->push_back(*hfItr);
59  }
60 
61  //Put selected information in the event
62  iEvent.put(std::move(miniHBHERecHitCollection), "HBHERecHitCollection");
63  iEvent.put(std::move(miniHORecHitCollection), "HORecHitCollection");
64  iEvent.put(std::move(miniHFRecHitCollection), "HFRecHitCollection");
65 }
AlCaEcalHcalReadoutsProducer::~AlCaEcalHcalReadoutsProducer
~AlCaEcalHcalReadoutsProducer() override
Definition: AlCaEcalHcalReadoutsProducer.cc:15
edm::SortedCollection::const_iterator
std::vector< T >::const_iterator const_iterator
Definition: SortedCollection.h:80
MessageLogger.h
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::SortedCollection
Definition: SortedCollection.h:49
edm::Handle
Definition: AssociativeIterator.h:50
edm::SortedCollection::push_back
void push_back(T const &t)
Definition: SortedCollection.h:188
AlCaEcalHcalReadoutsProducer.h
AlCaEcalHcalReadoutsProducer::tok_hf_
edm::EDGetTokenT< HFRecHitCollection > tok_hf_
Definition: AlCaEcalHcalReadoutsProducer.h:48
photonIsolationHIProducer_cfi.hf
hf
Definition: photonIsolationHIProducer_cfi.py:9
edm::SortedCollection::begin
const_iterator begin() const
Definition: SortedCollection.h:262
AlCaEcalHcalReadoutsProducer::tok_ho_
edm::EDGetTokenT< HORecHitCollection > tok_ho_
Definition: AlCaEcalHcalReadoutsProducer.h:47
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:670
edm::ParameterSet
Definition: ParameterSet.h:36
edm::SortedCollection::end
const_iterator end() const
Definition: SortedCollection.h:267
iEvent
int iEvent
Definition: GenABIO.cc:224
photonIsolationHIProducer_cfi.ho
ho
Definition: photonIsolationHIProducer_cfi.py:10
edm::EventSetup
Definition: EventSetup.h:57
AlCaEcalHcalReadoutsProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: AlCaEcalHcalReadoutsProducer.cc:18
photonIsolationHIProducer_cfi.hbhe
hbhe
Definition: photonIsolationHIProducer_cfi.py:8
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
AlCaEcalHcalReadoutsProducer::tok_hbhe_
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_
Definition: AlCaEcalHcalReadoutsProducer.h:46
AlCaEcalHcalReadoutsProducer::AlCaEcalHcalReadoutsProducer
AlCaEcalHcalReadoutsProducer(const edm::ParameterSet &)
Definition: AlCaEcalHcalReadoutsProducer.cc:4
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15