1 |
#ifndef __TOP_TREE_Z_JET_PARTON_H__
|
2 |
#define __TOP_TREE_Z_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/ZJetsEvtMC.h"
|
16 |
#include <DataFormats/HepMCCandidate/interface/GenParticleCandidate.h>
|
17 |
#include <DataFormats/Candidate/interface/Candidate.h>
|
18 |
#include "DataFormats/HepMCCandidate/interface/GenParticle.h"
|
19 |
|
20 |
using namespace TopTree;
|
21 |
|
22 |
class ZJetParton{
|
23 |
|
24 |
public:
|
25 |
|
26 |
ZJetParton();
|
27 |
~ZJetParton();
|
28 |
|
29 |
void GetZJetPartonTruth(edm::Handle<reco::GenParticleCollection> genParticles, double weight, TopTree::ZJetsEvtMC * mcZJP);
|
30 |
void PrintList(edm::Handle<reco::GenParticleCollection>, int);
|
31 |
|
32 |
private:
|
33 |
|
34 |
};
|
35 |
|
36 |
#endif //__TOP_TREE_Z_JET_PARTON_H__
|