1 |
#ifndef __TOP_TREE_W_JET_PARTON_H__
|
2 |
#define __TOP_TREE_W_JET_PARTON_H__
|
3 |
|
4 |
//-------------------------------------------------------------------------------
|
5 |
// Header file
|
6 |
//
|
7 |
// $Author: J.Speck
|
8 |
// Modif Dgele
|
9 |
//
|
10 |
//-------------------------------------------------------------------------------
|
11 |
|
12 |
#include "Vec.h"
|
13 |
#include "SimDataFormats/HepMCProduct/interface/HepMCProduct.h"
|
14 |
|
15 |
#include "MiniTreeFormat/TTbar/interface/WJetsEvtMC.h"
|
16 |
#include <DataFormats/HepMCCandidate/interface/GenParticleCandidate.h>
|
17 |
#include <DataFormats/Candidate/interface/Candidate.h>
|
18 |
#include "DataFormats/HepMCCandidate/interface/GenParticle.h"
|
19 |
|
20 |
|
21 |
using namespace TopTree;
|
22 |
|
23 |
class WJetParton{
|
24 |
|
25 |
public:
|
26 |
|
27 |
WJetParton();
|
28 |
~WJetParton();
|
29 |
|
30 |
void GetWJetPartonTruth(edm::Handle<reco::GenParticleCollection> genParticles, double weight, TopTree::WJetsEvtMC * mcWJP);
|
31 |
void PrintList(edm::Handle<reco::GenParticleCollection>, int);
|
32 |
|
33 |
|
34 |
//void GetWJetPartonTruth(edm::Handle<reco::CandidateCollection> genParticles, double weight, TopTree::WJetPartonEvt * mcWJP);
|
35 |
//void PrintList(edm::Handle<reco::CandidateCollection>, int);
|
36 |
|
37 |
|
38 |
|
39 |
|
40 |
private:
|
41 |
|
42 |
|
43 |
|
44 |
|
45 |
};
|
46 |
|
47 |
#endif //__TOP_TREE_W_JET_PARTON_H__
|