CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuPFIsoEmbedder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: MuPFIsoEmbedder
4 // Class: MuPFIsoEmbedder
5 //
13 //
14 // Original Author: Michail Bachtis,32 3-B16,+41227675567,
15 // Created: Thu Jun 9 01:36:17 CEST 2011
16 // $Id: MuPFIsoEmbedder.cc,v 1.3 2013/02/25 21:46:26 chrjones Exp $
17 //
18 //
19 
20 
21 // system include files
22 #include <memory>
23 
24 // user include files
27 
30 
35 
36 //
37 // class declaration
38 //
39 
41  public:
42  explicit MuPFIsoEmbedder(const edm::ParameterSet&);
44 
45  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
46 
47  private:
48  virtual void produce(edm::Event&, const edm::EventSetup&);
49 
50 
51  // ----------member data ---------------------------
53 
55 
56 };
57 
58 
59 
60 
61 //
63  muons_(iConfig.getParameter<edm::InputTag>("src"))
64 {
65 
66  //decide what to read
67  //Define a map between the isolation and the PSet for the PFHelper
68  std::map<std::string,edm::ParameterSet> psetMap;
69 
70  //First declare what isolation you are going to read
71  std::vector<std::string> isolationLabels;
72  isolationLabels.push_back("pfIsolationR03");
73  isolationLabels.push_back("pfIsoMeanDRProfileR03");
74  isolationLabels.push_back("pfIsoSumDRProfileR03");
75  isolationLabels.push_back("pfIsolationR04");
76  isolationLabels.push_back("pfIsoMeanDRProfileR04");
77  isolationLabels.push_back("pfIsoSumDRProfileR04");
78 
79  //Fill the label,pet map and initialize MuPFIsoHelper
80  for( std::vector<std::string>::const_iterator label = isolationLabels.begin();label != isolationLabels.end();++label)
81  psetMap[*label] =iConfig.getParameter<edm::ParameterSet >(*label);
82 
83  helper_ = new MuPFIsoHelper(psetMap);
84 
85  produces<reco::MuonCollection>();
86 }
87 
88 
90 {
91 
92  // do anything here that needs to be done at desctruction time
93  // (e.g. close files, deallocate resources etc.)
94 
95 }
96 
97 
98 //
99 // member functions
100 //
101 
102 // ------------ method called to produce the data ------------
103 void
105 {
106  using namespace edm;
107  using namespace reco;
108 
109 
110  helper_->beginEvent(iEvent);
111 
113  iEvent.getByLabel(muons_,muons);
114 
115 
116  std::auto_ptr<MuonCollection> out(new MuonCollection);
117 
118  for(unsigned int i=0;i<muons->size();++i) {
119  MuonRef muonRef(muons,i);
120  Muon muon = muons->at(i);
121  helper_->embedPFIsolation(muon,muonRef);
122  out->push_back(muon);
123  }
124 
125  iEvent.put(out);
126 }
127 
128 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
129 void
131  //The following says we do not know what parameters are allowed so do no validation
132  // Please change this to state exactly what you do use, even if it is no parameters
134  desc.setUnknown();
135  descriptions.addDefault(desc);
136 }
137 
138 //define this as a plug-in
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::vector< Muon > MuonCollection
collection of Muon objects
Definition: MuonFwd.h:9
int iEvent
Definition: GenABIO.cc:243
void addDefault(ParameterSetDescription const &psetDescription)
MuPFIsoEmbedder(const edm::ParameterSet &)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
tuple out
Definition: dbtoconf.py:99
MuPFIsoHelper * helper_
int embedPFIsolation(reco::Muon &, reco::MuonRef &)
virtual void produce(edm::Event &, const edm::EventSetup &)
void beginEvent(const edm::Event &iEvent)
tuple muons
Definition: patZpeak.py:38
edm::InputTag muons_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)