ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/NonMCBackground/interface/select_fakes.h
Revision: 1.2
Committed: Tue Jun 12 22:04:07 2012 UTC (12 years, 11 months ago) by dkralph
Content type: text/plain
Branch: MAIN
CVS Tags: compiled, HEAD
Changes since 1.1: +7 -9 lines
Log Message:
*** empty log message ***

File Contents

# Content
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 "GlobalDataAndFuncs.h" */
52 #include "RunLumiRangeMap.h"
53 #include "MuonSelection.h"
54 #include "ElectronSelection.h"
55 #include "MathUtils.h"
56 #include "IsolationSelectionDefs.h"
57 #include "IsolationSelection.h"
58 #include "Selection.h"
59 #endif