ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/NonMCBackground/interface/compute_fakes.h
Revision: 1.6
Committed: Tue Oct 23 11:18:08 2012 UTC (12 years, 6 months ago) by dkralph
Content type: text/plain
Branch: MAIN
CVS Tags: compiled
Changes since 1.5: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
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 #include <TGraphAsymmErrors.h>
34 #include <TEfficiency.h>
35
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 #include "fake_defs.h"
45 #include "Various.h"
46 #include "PlotHeaders.h"
47 #include "SelectionFuncs.h"
48
49 #endif