CMS 3D CMS Logo

MuonShowerInformationProducer.cc
Go to the documentation of this file.
1 #include <string>
2 #include <vector>
3 
9 
16 
18 
20 public:
22  inputMuonCollection_(iConfig.getParameter<edm::InputTag>("muonCollection")),
23  inputTrackCollection_(iConfig.getParameter<edm::InputTag>("trackCollection"))
24  {
25  edm::ConsumesCollector iC = consumesCollector();
26  showerFiller_ = new MuonShowerInformationFiller(iConfig.getParameter<edm::ParameterSet>("ShowerInformationFillerParameters"),iC);
27 
28  muonToken_ = consumes<reco::MuonCollection>(inputMuonCollection_);
29 
30  produces<edm::ValueMap<reco::MuonShower> >().setBranchAlias("muonShowerInformation");
31  }
33  if( showerFiller_)
34  delete showerFiller_;
35  }
36 
37 private:
38  void produce(edm::Event&, const edm::EventSetup&) override;
42 
43 
44 
46 };
47 
48 void
50 {
52  iEvent.getByToken(muonToken_, muons);
53 
54  // reserve some space for output
55  std::vector<reco::MuonShower> showerInfoValues;
56  showerInfoValues.reserve(muons->size());
57 
58  for(reco::MuonCollection::const_iterator muon = muons->begin();
59  muon != muons->end(); ++muon)
60  {
61  // if (!muon->isGlobalMuon() && !muon->isStandAloneMuon()) continue;
62  showerInfoValues.push_back(showerFiller_->fillShowerInformation(*muon,iEvent,iSetup));
63  }
64 
65  // create and fill value map
66  auto outC = std::make_unique<edm::ValueMap<reco::MuonShower>>();
68  fillerC.insert(muons, showerInfoValues.begin(), showerInfoValues.end());
69  fillerC.fill();
70 
71  // put value map into event
72  iEvent.put(std::move(outC));
73 }
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
reco::MuonShower fillShowerInformation(const reco::Muon &muon, const edm::Event &, const edm::EventSetup &)
fill muon shower variables
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
MuonShowerInformationProducer(const edm::ParameterSet &iConfig)
MuonShowerInformationFiller * showerFiller_
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::EDGetTokenT< reco::MuonCollection > muonToken_
HLT enums.
def move(src, dest)
Definition: eostools.py:511
void produce(edm::Event &, const edm::EventSetup &) override