CMS 3D CMS Logo

PhotonMVANtuplizer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: RecoEgamma/PhotonIdentification
4 // Class: PhotonMVANtuplizer
5 //
13 //
14 // Original Author: Jonas REMBSER
15 // Created: Thu, 22 Mar 2018 14:54:24 GMT
16 //
17 //
18 
36 
37 #include <TTree.h>
38 #include <TFile.h>
39 #include <Math/VectorUtil.h>
40 
41 //
42 // class declaration
43 //
44 
45 class PhotonMVANtuplizer : public edm::one::EDAnalyzer<edm::one::SharedResources> {
46 public:
47  explicit PhotonMVANtuplizer(const edm::ParameterSet&);
48 
49  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
50 
51 private:
52  void analyze(const edm::Event&, const edm::EventSetup&) override;
53 
54  // ----------member data ---------------------------
55 
56  // other
57  TTree* tree_;
58 
59  // global variables
61  int genNpu_;
62  int vtxN_;
63 
64  // photon variables
65  double pT_, eta_;
66  std::vector<float> energyMatrix_;
67 
68  // photon genMatch variable
71 
72  // ID decisions objects
73  const std::vector<std::string> phoMapTags_;
74  std::vector<edm::EDGetTokenT<edm::ValueMap<bool>>> phoMapTokens_;
75  const std::vector<std::string> phoMapBranchNames_;
76  const size_t nPhoMaps_;
77 
78  // MVA values and categories (optional)
79  const std::vector<std::string> valMapTags_;
80  std::vector<edm::EDGetTokenT<edm::ValueMap<float>>> valMapTokens_;
81  const std::vector<std::string> valMapBranchNames_;
82  const size_t nValMaps_;
83 
84  const std::vector<std::string> mvaCatTags_;
85  std::vector<edm::EDGetTokenT<edm::ValueMap<int>>> mvaCatTokens_;
86  const std::vector<std::string> mvaCatBranchNames_;
87  const size_t nCats_;
88 
89  // config
90  const bool isMC_;
91  const double ptThreshold_;
92  const double deltaR_;
93 
94  // Tokens
101 
103 
104  // to hold ID decisions and categories
105  std::vector<int> mvaPasses_;
106  std::vector<float> mvaValues_;
107  std::vector<int> mvaCats_;
108 
109  // To get the auxiliary MVA variables
111 
112  // To manage the variables which are parsed from the text file
114 
115  const int nVars_;
116  std::vector<float> vars_;
117 
118  const bool doEnergyMatrix_;
119  const int energyMatrixSize_;
120 };
121 
126 };
127 
128 namespace {
129 
130  int matchToTruth(const reco::Photon& ph, const edm::View<reco::GenParticle>& genParticles, double deltaR) {
131  // Find the closest status 1 gen photon to the reco photon
132  double dR = 999;
133  reco::GenParticle const* closestPhoton = &genParticles[0];
134  for (auto& particle : genParticles) {
135  // Drop everything that is not photon or not status 1
136  if (abs(particle.pdgId()) != 22 || particle.status() != 1)
137  continue;
138 
139  double dRtmp = ROOT::Math::VectorUtil::DeltaR(ph.p4(), particle.p4());
140  if (dRtmp < dR) {
141  dR = dRtmp;
142  closestPhoton = &particle;
143  }
144  }
145  // See if the closest photon (if it exists) is close enough.
146  // If not, no match found.
147  if (dR < deltaR) {
148  if (closestPhoton->isPromptFinalState())
149  return TRUE_PROMPT_PHOTON;
150  else
151  return TRUE_NON_PROMPT_PHOTON;
152  }
153  return FAKE_PHOTON;
154  }
155 
156 }; // namespace
157 
158 // constructor
160  : phoMapTags_(iConfig.getParameter<std::vector<std::string>>("phoMVAs")),
161  phoMapBranchNames_(iConfig.getParameter<std::vector<std::string>>("phoMVALabels")),
162  nPhoMaps_(phoMapBranchNames_.size()),
163  valMapTags_(iConfig.getParameter<std::vector<std::string>>("phoMVAValMaps")),
164  valMapBranchNames_(iConfig.getParameter<std::vector<std::string>>("phoMVAValMapLabels")),
165  nValMaps_(valMapBranchNames_.size()),
166  mvaCatTags_(iConfig.getParameter<std::vector<std::string>>("phoMVACats")),
167  mvaCatBranchNames_(iConfig.getParameter<std::vector<std::string>>("phoMVACatLabels")),
168  nCats_(mvaCatBranchNames_.size()),
169  isMC_(iConfig.getParameter<bool>("isMC")),
170  ptThreshold_(iConfig.getParameter<double>("ptThreshold")),
171  deltaR_(iConfig.getParameter<double>("deltaR")),
172  src_(consumes<edm::View<reco::Photon>>(iConfig.getParameter<edm::InputTag>("src"))),
173  vertices_(consumes<std::vector<reco::Vertex>>(iConfig.getParameter<edm::InputTag>("vertices"))),
174  pileup_(consumes<std::vector<PileupSummaryInfo>>(iConfig.getParameter<edm::InputTag>("pileup"))),
175  genParticles_(consumes<edm::View<reco::GenParticle>>(iConfig.getParameter<edm::InputTag>("genParticles"))),
176  ebRecHits_(consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("ebReducedRecHitCollection"))),
177  eeRecHits_(consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("eeReducedRecHitCollection"))),
178  ecalClusterToolsESGetTokens_{consumesCollector()},
179  mvaPasses_(nPhoMaps_),
180  mvaValues_(nValMaps_),
181  mvaCats_(nCats_),
182  variableHelper_(consumesCollector()),
183  mvaVarMngr_(iConfig.getParameter<std::string>("variableDefinition"), MVAVariableHelper::indexMap()),
184  nVars_(mvaVarMngr_.getNVars()),
185  vars_(nVars_),
186  doEnergyMatrix_(iConfig.getParameter<bool>("doEnergyMatrix")),
187  energyMatrixSize_(iConfig.getParameter<int>("energyMatrixSize")) {
188  // phoMaps
189  for (auto const& tag : phoMapTags_) {
190  phoMapTokens_.push_back(consumes<edm::ValueMap<bool>>(edm::InputTag(tag)));
191  }
192  // valMaps
193  for (auto const& tag : valMapTags_) {
194  valMapTokens_.push_back(consumes<edm::ValueMap<float>>(edm::InputTag(tag)));
195  }
196  // categories
197  for (auto const& tag : mvaCatTags_) {
198  mvaCatTokens_.push_back(consumes<edm::ValueMap<int>>(edm::InputTag(tag)));
199  }
200 
201  // Book tree
202  usesResource(TFileService::kSharedResource);
204  tree_ = fs->make<TTree>("tree", "tree");
205 
206  tree_->Branch("nEvent", &nEvent_);
207  tree_->Branch("nRun", &nRun_);
208  tree_->Branch("nLumi", &nLumi_);
209  if (isMC_) {
210  tree_->Branch("genNpu", &genNpu_);
211  tree_->Branch("matchedToGenPh", &matchedToGenPh_);
212  }
213  tree_->Branch("vtxN", &vtxN_);
214  tree_->Branch("pT", &pT_);
215  tree_->Branch("eta", &eta_);
216 
217  if (doEnergyMatrix_)
218  tree_->Branch("energyMatrix", &energyMatrix_);
219 
220  for (int i = 0; i < nVars_; ++i) {
221  tree_->Branch(mvaVarMngr_.getName(i).c_str(), &vars_[i]);
222  }
223 
224  // IDs
225  for (size_t k = 0; k < nValMaps_; ++k) {
226  tree_->Branch(valMapBranchNames_[k].c_str(), &mvaValues_[k]);
227  }
228 
229  for (size_t k = 0; k < nPhoMaps_; ++k) {
230  tree_->Branch(phoMapBranchNames_[k].c_str(), &mvaPasses_[k]);
231  }
232 
233  for (size_t k = 0; k < nCats_; ++k) {
234  tree_->Branch(mvaCatBranchNames_[k].c_str(), &mvaCats_[k]);
235  }
236 }
237 
238 // ------------ method called for each event ------------
240  // Fill global event info
241  nEvent_ = iEvent.id().event();
242  nRun_ = iEvent.id().run();
243  nLumi_ = iEvent.luminosityBlock();
244 
245  // Get Handles
246  auto src = iEvent.getHandle(src_);
247  auto vertices = iEvent.getHandle(vertices_);
248  auto pileup = iEvent.getHandle(pileup_);
249  auto genParticles = iEvent.getHandle(genParticles_);
250 
251  vtxN_ = vertices->size();
252 
253  // initialize cluster tools
254  std::unique_ptr<noZS::EcalClusterLazyTools> lazyTools;
255  if (doEnergyMatrix_) {
256  // Configure Lazy Tools, which will compute 5x5 quantities
257  lazyTools = std::make_unique<noZS::EcalClusterLazyTools>(
259  }
260 
261  // Fill with true number of pileup
262  if (isMC_) {
263  for (const auto& pu : *pileup) {
264  int bx = pu.getBunchCrossing();
265  if (bx == 0) {
266  genNpu_ = pu.getPU_NumInteractions();
267  break;
268  }
269  }
270  }
271 
272  // Get MVA decisions
274  for (size_t k = 0; k < nPhoMaps_; ++k) {
275  iEvent.getByToken(phoMapTokens_[k], decisions[k]);
276  }
277 
278  // Get MVA values
280  for (size_t k = 0; k < nValMaps_; ++k) {
281  iEvent.getByToken(valMapTokens_[k], values[k]);
282  }
283 
284  // Get MVA categories
286  for (size_t k = 0; k < nCats_; ++k) {
287  iEvent.getByToken(mvaCatTokens_[k], mvaCats[k]);
288  }
289 
290  std::vector<float> extraVariables = variableHelper_.getAuxVariables(iEvent);
291 
292  for (auto const& pho : src->ptrs()) {
293  if (pho->pt() < ptThreshold_)
294  continue;
295 
296  pT_ = pho->pt();
297  eta_ = pho->eta();
298 
299  // Fill the energy matrix around the seed
300  if (doEnergyMatrix_) {
301  const auto& seed = *(pho->superCluster()->seed());
302  energyMatrix_ = lazyTools->energyMatrix(seed, energyMatrixSize_);
303  }
304 
305  // variables from the text file
306  for (int iVar = 0; iVar < nVars_; ++iVar) {
307  vars_[iVar] = mvaVarMngr_.getValue(iVar, *pho, extraVariables);
308  }
309 
310  if (isMC_)
311  matchedToGenPh_ = matchToTruth(*pho, *genParticles, deltaR_);
312 
313  //
314  // Look up and save the ID decisions
315  //
316  for (size_t k = 0; k < nPhoMaps_; ++k)
317  mvaPasses_[k] = static_cast<int>((*decisions[k])[pho]);
318  for (size_t k = 0; k < nValMaps_; ++k)
319  mvaValues_[k] = (*values[k])[pho];
320  for (size_t k = 0; k < nCats_; ++k)
321  mvaCats_[k] = (*mvaCats[k])[pho];
322 
323  tree_->Fill();
324  }
325 }
326 
327 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
330  desc.add<edm::InputTag>("src", edm::InputTag("slimmedPhotons"));
331  desc.add<edm::InputTag>("vertices", edm::InputTag("offlineSlimmedPrimaryVertices"));
332  desc.add<edm::InputTag>("pileup", edm::InputTag("slimmedAddPileupInfo"));
333  desc.add<edm::InputTag>("genParticles", edm::InputTag("prunedGenParticles"));
334  desc.add<edm::InputTag>("ebReducedRecHitCollection", edm::InputTag("reducedEgamma", "reducedEBRecHits"));
335  desc.add<edm::InputTag>("eeReducedRecHitCollection", edm::InputTag("reducedEgamma", "reducedEERecHits"));
336  desc.add<std::vector<std::string>>("phoMVAs", {});
337  desc.add<std::vector<std::string>>("phoMVALabels", {});
338  desc.add<std::vector<std::string>>("phoMVAValMaps", {});
339  desc.add<std::vector<std::string>>("phoMVAValMapLabels", {});
340  desc.add<std::vector<std::string>>("phoMVACats", {});
341  desc.add<std::vector<std::string>>("phoMVACatLabels", {});
342  desc.add<bool>("doEnergyMatrix", false);
343  desc.add<int>("energyMatrixSize", 2)->setComment("extension of crystals in each direction away from the seed");
344  desc.add<bool>("isMC", true);
345  desc.add<double>("ptThreshold", 15.0);
346  desc.add<double>("deltaR", 0.1);
347  desc.add<std::string>("variableDefinition");
348  descriptions.addDefault(desc);
349 }
350 
351 //define this as a plug-in
PhotonMVANtuplizer::nRun_
int nRun_
Definition: PhotonMVANtuplizer.cc:60
PhotonMVANtuplizer::mvaPasses_
std::vector< int > mvaPasses_
Definition: PhotonMVANtuplizer.cc:105
PileupSummaryInfo.h
PhotonMVANtuplizer::pT_
double pT_
Definition: PhotonMVANtuplizer.cc:65
electrons_cff.bool
bool
Definition: electrons_cff.py:366
EDAnalyzer.h
mps_fire.i
i
Definition: mps_fire.py:428
PhotonMVANtuplizer::ecalClusterToolsESGetTokens_
const EcalClusterLazyTools::ESGetTokens ecalClusterToolsESGetTokens_
Definition: PhotonMVANtuplizer.cc:102
genParticles2HepMC_cfi.genParticles
genParticles
Definition: genParticles2HepMC_cfi.py:4
PhotonMVANtuplizer::genNpu_
int genNpu_
Definition: PhotonMVANtuplizer.cc:61
MVAVariableManager::getValue
float getValue(int index, const ParticleType &particle, const std::vector< float > &auxVariables) const
Definition: MVAVariableManager.h:50
PhotonMVANtuplizer::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: PhotonMVANtuplizer.cc:239
sistrip::View
View
Definition: ConstantsForView.h:26
reco::GenParticle
Definition: GenParticle.h:21
edm::EDGetTokenT
Definition: EDGetToken.h:33
PhotonMVANtuplizer::pileup_
const edm::EDGetTokenT< std::vector< PileupSummaryInfo > > pileup_
Definition: PhotonMVANtuplizer.cc:97
edm
HLT enums.
Definition: AlignableModifier.h:19
TRUE_PROMPT_PHOTON
Definition: PhotonMVANtuplizer.cc:124
Photon.h
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89281
l1GtPatternGenerator_cfi.bx
bx
Definition: l1GtPatternGenerator_cfi.py:18
reco::Photon::p4
const LorentzVector & p4(P4type type) const
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
PhotonMVANtuplizer::nLumi_
int nLumi_
Definition: PhotonMVANtuplizer.cc:60
PhotonMVANtuplizer::vertices_
const edm::EDGetTokenT< std::vector< reco::Vertex > > vertices_
Definition: PhotonMVANtuplizer.cc:96
edm::SortedCollection< EcalRecHit >
edm::EDConsumerBase::consumesCollector
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
Definition: EDConsumerBase.cc:47
EcalClusterLazyTools.h
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
edm::one::EDAnalyzer
Definition: EDAnalyzer.h:30
PhotonMVANtuplizer::isMC_
const bool isMC_
Definition: PhotonMVANtuplizer.cc:90
edm::Handle
Definition: AssociativeIterator.h:50
GenParticle
Definition: GenParticle.py:1
MVAVariableHelper.h
fileCollector.seed
seed
Definition: fileCollector.py:127
TRUE_NON_PROMPT_PHOTON
Definition: PhotonMVANtuplizer.cc:125
FAKE_PHOTON
Definition: PhotonMVANtuplizer.cc:123
MakerMacros.h
Photon.h
PhotonMVANtuplizer::mvaVarMngr_
MVAVariableManager< reco::Photon > mvaVarMngr_
Definition: PhotonMVANtuplizer.cc:113
PhotonMVANtuplizer::energyMatrix_
std::vector< float > energyMatrix_
Definition: PhotonMVANtuplizer.cc:66
PhotonMVANtuplizer::vars_
std::vector< float > vars_
Definition: PhotonMVANtuplizer.cc:116
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
GlobalPosition_Frontier_DevDB_cff.tag
tag
Definition: GlobalPosition_Frontier_DevDB_cff.py:11
Service.h
mixOne_premix_on_sim_cfi.pileup
pileup
Definition: mixOne_premix_on_sim_cfi.py:42
contentValuesCheck.values
values
Definition: contentValuesCheck.py:38
MVAVariableManager.h
PhotonMVANtuplizer::energyMatrixSize_
const int energyMatrixSize_
Definition: PhotonMVANtuplizer.cc:119
PhotonMVANtuplizer::mvaCats_
std::vector< int > mvaCats_
Definition: PhotonMVANtuplizer.cc:107
PhotonMVANtuplizer::valMapBranchNames_
const std::vector< std::string > valMapBranchNames_
Definition: PhotonMVANtuplizer.cc:81
PhotonMVANtuplizer::nVars_
const int nVars_
Definition: PhotonMVANtuplizer.cc:115
PhotonMVANtuplizer::mvaCatTokens_
std::vector< edm::EDGetTokenT< edm::ValueMap< int > > > mvaCatTokens_
Definition: PhotonMVANtuplizer.cc:85
PhotonMVANtuplizer::PhotonMVANtuplizer
PhotonMVANtuplizer(const edm::ParameterSet &)
Definition: PhotonMVANtuplizer.cc:159
dqmdumpme.k
k
Definition: dqmdumpme.py:60
EcalClusterLazyToolsBase::ESGetTokens
Definition: EcalClusterLazyTools.h:55
EDGetToken.h
PhotonMVANtuplizer::nValMaps_
const size_t nValMaps_
Definition: PhotonMVANtuplizer.cc:82
PhotonMVANtuplizer::phoMapBranchNames_
const std::vector< std::string > phoMapBranchNames_
Definition: PhotonMVANtuplizer.cc:75
PbPb_ZMuSkimMuonDPG_cff.deltaR
deltaR
Definition: PbPb_ZMuSkimMuonDPG_cff.py:63
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
Vertex.h
PhotonMVANtuplizer::valMapTokens_
std::vector< edm::EDGetTokenT< edm::ValueMap< float > > > valMapTokens_
Definition: PhotonMVANtuplizer.cc:80
TFileService.h
edm::View
Definition: CaloClusterFwd.h:14
PhotonMVANtuplizer::vtxN_
int vtxN_
Definition: PhotonMVANtuplizer.cc:62
PhotonMVANtuplizer::phoMapTokens_
std::vector< edm::EDGetTokenT< edm::ValueMap< bool > > > phoMapTokens_
Definition: PhotonMVANtuplizer.cc:74
edm::ParameterSet
Definition: ParameterSet.h:47
TrackRefitter_38T_cff.src
src
Definition: TrackRefitter_38T_cff.py:24
PhotonMVANtuplizer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: PhotonMVANtuplizer.cc:328
MVAVariableHelper::indexMap
static std::unordered_map< std::string, int > indexMap()
Definition: MVAVariableHelper.h:22
Event.h
PhotonMVANtuplizer::ebRecHits_
const edm::EDGetTokenT< EcalRecHitCollection > ebRecHits_
Definition: PhotonMVANtuplizer.cc:99
PhotonMVANtuplizer::mvaCatTags_
const std::vector< std::string > mvaCatTags_
Definition: PhotonMVANtuplizer.cc:84
Photon
Definition: Photon.py:1
edm::Service< TFileService >
iEvent
int iEvent
Definition: GenABIO.cc:224
trackerHitRTTI::vector
Definition: trackerHitRTTI.h:21
PhotonMVANtuplizer
Definition: PhotonMVANtuplizer.cc:45
PhotonMVANtuplizer::genParticles_
const edm::EDGetTokenT< edm::View< reco::GenParticle > > genParticles_
Definition: PhotonMVANtuplizer.cc:98
PhotonMVANtuplizer::doEnergyMatrix_
const bool doEnergyMatrix_
Definition: PhotonMVANtuplizer.cc:118
edm::EventSetup
Definition: EventSetup.h:58
electronAnalyzer_cfi.DeltaR
DeltaR
Definition: electronAnalyzer_cfi.py:33
MVAVariableHelper::getAuxVariables
const std::vector< float > getAuxVariables(const edm::Event &iEvent) const
Definition: MVAVariableHelper.h:18
PhotonMVANtuplizer::phoMapTags_
const std::vector< std::string > phoMapTags_
Definition: PhotonMVANtuplizer.cc:73
PhotonMVANtuplizer::nEvent_
int nEvent_
Definition: PhotonMVANtuplizer.cc:60
PhotonMVANtuplizer::matchedGenIdx_
int matchedGenIdx_
Definition: PhotonMVANtuplizer.cc:70
EcalClusterLazyToolsBase::ESGetTokens::get
ESData get(edm::EventSetup const &eventSetup) const
Definition: EcalClusterLazyTools.h:64
InputTag.h
VertexFwd.h
reco::Photon
Definition: Photon.h:21
PhotonMatchType
PhotonMatchType
Definition: PhotonMVANtuplizer.cc:122
PhotonMVANtuplizer::variableHelper_
const MVAVariableHelper variableHelper_
Definition: PhotonMVANtuplizer.cc:110
nVars_
constexpr int nVars_
Definition: PhotonIDValueMapProducer.cc:122
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
std
Definition: JetResolutionObject.h:76
MVAVariableManager< reco::Photon >
HltBtagValidation_cff.Vertex
Vertex
Definition: HltBtagValidation_cff.py:32
PhotonMVANtuplizer::ptThreshold_
const double ptThreshold_
Definition: PhotonMVANtuplizer.cc:91
PhotonMVANtuplizer::deltaR_
const double deltaR_
Definition: PhotonMVANtuplizer.cc:92
Frameworkfwd.h
edm::ValueMap
Definition: ValueMap.h:107
TFileService::kSharedResource
static const std::string kSharedResource
Definition: TFileService.h:76
PhotonMVANtuplizer::nPhoMaps_
const size_t nPhoMaps_
Definition: PhotonMVANtuplizer.cc:76
muons2muons_cfi.pu
pu
Definition: muons2muons_cfi.py:31
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
HGC3DClusterGenMatchSelector_cfi.dR
dR
Definition: HGC3DClusterGenMatchSelector_cfi.py:7
ParameterSet.h
PhotonMVANtuplizer::matchedToGenPh_
int matchedToGenPh_
Definition: PhotonMVANtuplizer.cc:69
PhotonMVANtuplizer::src_
const edm::EDGetTokenT< edm::View< reco::Photon > > src_
Definition: PhotonMVANtuplizer.cc:95
PhotonMVANtuplizer::eeRecHits_
const edm::EDGetTokenT< EcalRecHitCollection > eeRecHits_
Definition: PhotonMVANtuplizer.cc:100
edm::Event
Definition: Event.h:73
edm::ConfigurationDescriptions::addDefault
void addDefault(ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:99
PhotonMVANtuplizer::valMapTags_
const std::vector< std::string > valMapTags_
Definition: PhotonMVANtuplizer.cc:79
PhotonMVANtuplizer::nCats_
const size_t nCats_
Definition: PhotonMVANtuplizer.cc:87
PhotonMVANtuplizer::tree_
TTree * tree_
Definition: PhotonMVANtuplizer.cc:57
PhotonMVANtuplizer::eta_
double eta_
Definition: PhotonMVANtuplizer.cc:65
MVAVariableHelper
Definition: MVAVariableHelper.h:12
edm::InputTag
Definition: InputTag.h:15
reco::GenParticle::isPromptFinalState
bool isPromptFinalState() const
Definition: GenParticle.h:51
PileupSummaryInfo
Definition: PileupSummaryInfo.h:22
TFileService::make
T * make(const Args &... args) const
make new ROOT object
Definition: TFileService.h:64
PhotonMVANtuplizer::mvaValues_
std::vector< float > mvaValues_
Definition: PhotonMVANtuplizer.cc:106
PhotonMVANtuplizer::mvaCatBranchNames_
const std::vector< std::string > mvaCatBranchNames_
Definition: PhotonMVANtuplizer.cc:86
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443
pwdgSkimBPark_cfi.vertices
vertices
Definition: pwdgSkimBPark_cfi.py:7