1 |
dkralph |
1.1 |
#ifndef COMPUTEFAKES
|
2 |
|
|
#define COMPUTEFAKES
|
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 |
dkralph |
1.2 |
#include <TGraphAsymmErrors.h>
|
34 |
|
|
#include <TEfficiency.h>
|
35 |
dkralph |
1.1 |
|
36 |
|
|
//
|
37 |
|
|
// utility headers
|
38 |
|
|
//
|
39 |
|
|
#include "ParseArgs.h"
|
40 |
|
|
#include "SampleWeight.h"
|
41 |
|
|
#include "Angles.h"
|
42 |
|
|
#include "CPlot.h"
|
43 |
|
|
#include "FOArgs.h"
|
44 |
dkralph |
1.3 |
#include "fake_defs.h"
|
45 |
dkralph |
1.4 |
#include "Various.h"
|
46 |
dkralph |
1.1 |
|
47 |
|
|
#endif
|