7 |
|
#include <iostream> |
8 |
|
|
9 |
|
// user include files |
10 |
– |
#include "FWCore/Framework/interface/Frameworkfwd.h" |
11 |
– |
#include "FWCore/Framework/interface/EDAnalyzer.h" |
10 |
|
#include "FWCore/Framework/interface/Event.h" |
13 |
– |
//#include "FWCore/Framework/interface/Handle.h" |
14 |
– |
#include "FWCore/Framework/interface/MakerMacros.h" |
11 |
|
#include "FWCore/ParameterSet/interface/ParameterSet.h" |
12 |
|
#include "FWCore/Framework/interface/ESHandle.h" |
13 |
|
|
14 |
|
#include "DataFormats/JetReco/interface/GenJet.h" |
15 |
< |
#include "DataFormats/JetReco/interface/GenJetCollection.h" |
15 |
> |
#include "DataFormats/METReco/interface/GenMET.h" |
16 |
|
#include "DataFormats/HepMCCandidate/interface/GenParticle.h" |
17 |
|
#include "DataFormats/HepMCCandidate/interface/GenParticleFwd.h" |
18 |
|
|
50 |
|
void DrawMCTree(const edm::Event& iEvent, const edm::EventSetup& iSetup, const edm::ParameterSet& config, const edm::ParameterSet& producersNames); |
51 |
|
void PDFInfo(const edm::Event& iEvent, TRootEvent* rootEvent); |
52 |
|
void ProcessMCParticle(const edm::Event& iEvent, TClonesArray* rootMCParticles); |
53 |
< |
void ProcessMCJets(const edm::Event& iEvent, TClonesArray* rootMCJets); |
53 |
> |
void ProcessGenJets(const edm::Event& iEvent, TClonesArray* rootGenJets); |
54 |
> |
void ProcessGenMETs(const edm::Event& iEvent, TClonesArray* rootGenMETs); |
55 |
|
void ProcessConvertedPhoton(const edm::Event& iEvent, TClonesArray* rootMCPhotons); |
56 |
|
void ProcessMuMuGammaEvent(const edm::Event& iEvent, TRootSignalEvent* rootSignalEvent); |
57 |
|
void ProcessTopTopEvent(const edm::Event& iEvent, TClonesArray* rootMCTopTop); |
72 |
|
bool doJetMC_; |
73 |
|
double jetMC_etaMax_; |
74 |
|
double jetMC_ptMin_; |
78 |
– |
bool doUnstablePartsMC_; |
75 |
|
bool doMETMC_; |
76 |
+ |
bool doUnstablePartsMC_; |
77 |
|
|
78 |
|
std::string signalGenerator_; |
79 |
|
edm::InputTag genParticlesProducer_; |
80 |
|
edm::InputTag genJetsProducer_; |
81 |
+ |
edm::InputTag genMETsProducer_; |
82 |
|
}; |
83 |
|
|
84 |
|
#endif |