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 |
|
|
18 |
– |
#include "SimDataFormats/HepMCProduct/interface/HepMCProduct.h" |
19 |
– |
|
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 |
|
|
19 |
+ |
#include "SimDataFormats/HepMCProduct/interface/HepMCProduct.h" |
20 |
+ |
|
21 |
|
#include "SimDataFormats/Track/interface/SimTrack.h" |
22 |
|
#include "SimDataFormats/Track/interface/SimTrackContainer.h" |
23 |
|
#include "SimDataFormats/Vertex/interface/SimVertex.h" |
32 |
|
#include "../interface/TRootSignalEvent.h" |
33 |
|
#include "../interface/TRootTopTop.h" |
34 |
|
#include "../interface/TRootParticle.h" |
35 |
+ |
#include "../interface/TRootMCParticle.h" |
36 |
|
#include "../interface/TRootMCPhoton.h" |
37 |
|
#include "../interface/TRootJet.h" |
38 |
|
|
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); |
58 |
< |
|
58 |
> |
|
59 |
|
private: |
60 |
|
|
61 |
|
int verbosity_; |
69 |
|
bool doMuonMC_; |
70 |
|
double muonMC_etaMax_; |
71 |
|
double muonMC_ptMin_; |
72 |
+ |
bool doJetMC_; |
73 |
+ |
double jetMC_etaMax_; |
74 |
+ |
double jetMC_ptMin_; |
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 |