1 |
dkralph |
1.1 |
#ifndef SELECTFAKES
|
2 |
|
|
#define SELECTFAKES
|
3 |
|
|
//
|
4 |
|
|
// System headers
|
5 |
|
|
//
|
6 |
|
|
#include <vector> // STL vector class
|
7 |
|
|
#include <iostream> // standard I/O
|
8 |
|
|
#include <iomanip> // functions to format standard I/O
|
9 |
|
|
#include <fstream> // functions for file I/O
|
10 |
|
|
#include <string> // C++ string class
|
11 |
|
|
#include <sstream> // class for parsing strings
|
12 |
|
|
#include <assert.h>
|
13 |
|
|
#include <stdlib.h>
|
14 |
|
|
#include <getopt.h>
|
15 |
|
|
using namespace std;
|
16 |
|
|
|
17 |
|
|
//
|
18 |
|
|
// ROOT headers
|
19 |
|
|
//
|
20 |
|
|
#include <TROOT.h> // access to gROOT, entry point to ROOT system
|
21 |
|
|
#include <TSystem.h> // interface to OS
|
22 |
|
|
#include <TFile.h> // file handle class
|
23 |
|
|
#include <TNtuple.h>
|
24 |
|
|
#include <TTree.h> // class to access ntuples
|
25 |
|
|
#include <TChain.h> //
|
26 |
|
|
#include <TBranch.h> // class to access branches in TTree
|
27 |
|
|
#include <TClonesArray.h> // ROOT array class
|
28 |
|
|
#include <TCanvas.h> // class for drawing
|
29 |
|
|
#include <TH1F.h> // 1D histograms
|
30 |
|
|
#include <TBenchmark.h> // class to track macro running statistics
|
31 |
|
|
#include <TLorentzVector.h> // 4-vector class
|
32 |
|
|
#include <TVector3.h> // 3D vector class
|
33 |
|
|
|
34 |
|
|
//
|
35 |
|
|
// ntuple format headers
|
36 |
|
|
//
|
37 |
|
|
#include "HiggsAnaDefs.hh"
|
38 |
|
|
#include "TGenInfo.hh"
|
39 |
|
|
#include "TEventInfo.hh"
|
40 |
|
|
#include "TElectron.hh"
|
41 |
|
|
#include "TMuon.hh"
|
42 |
|
|
#include "TJet.hh"
|
43 |
|
|
#include "RunLumiRangeMap.h"
|
44 |
|
|
#include "TPaletteAxis.h"
|
45 |
|
|
|
46 |
|
|
//
|
47 |
|
|
// utility headers
|
48 |
|
|
//
|
49 |
|
|
#include "ParseArgs.h"
|
50 |
|
|
#include "SampleWeight.h"
|
51 |
|
|
#include "Selection.h"
|
52 |
|
|
#include "seleEleFO.h"
|
53 |
|
|
#include "HZZCiCElectronSelection.h"
|
54 |
|
|
#include "HZZLikelihoodElectronSelection.h"
|
55 |
|
|
#include "HZZBDTElectronSelection.h"
|
56 |
|
|
#include "VBTFElectronSelection.h"
|
57 |
|
|
#include "SampleWeight.h"
|
58 |
|
|
#include "Angles.h"
|
59 |
|
|
#include "bdtiface.h"
|
60 |
|
|
|
61 |
|
|
#endif
|