18 |
|
// ROOT headers |
19 |
|
// |
20 |
|
#include <TROOT.h> // access to gROOT, entry point to ROOT system |
21 |
< |
#include <TTree.h> |
21 |
> |
#include <TTree.h> |
22 |
> |
#include <TFile.h> |
23 |
|
#include <TChain.h> // |
24 |
|
#include <TBranch.h> // class to access branches in TTree |
25 |
|
#include <TClonesArray.h> // ROOT array class |
49 |
|
// |
50 |
|
// defines |
51 |
|
// |
52 |
+ |
#define K_BDT_LOOSE 0 |
53 |
+ |
#define K_BDT_MED 1 |
54 |
+ |
#define K_BDT_TIGHT 2 |
55 |
+ |
|
56 |
|
#define EVTFAIL_JSON 0 |
57 |
|
#define EVTFAIL_TRIGGER 1 |
58 |
|
#define EVTFAIL_Z1 2 |
62 |
|
#define EVTFAIL_IP 6 |
63 |
|
#define EVTFAIL_KINEMATICS 7 |
64 |
|
|
65 |
+ |
|
66 |
|
//i: 9cut: 0.275effB: 0.45364effS: 0.895138nsig: 344158ntot: 384475 |
67 |
|
#define PFISO_ELE_TIGHT_EB_HIGHPT 0.275 |
68 |
|
//i: 2cut: 0.45effB: 0.765236effS: 0.949037nsig: 364881ntot: 384475 |
107 |
|
#define PFISO_MU_TIGHT_EE_LOWPT 0.05 |
108 |
|
|
109 |
|
|
110 |
+ |
//#define THEIR_EVENTS |
111 |
|
|
112 |
|
|
106 |
– |
// Si's numbers |
107 |
– |
/* #define PFISO_EB_HIGHPT 0.15 */ |
108 |
– |
/* #define PFISO_EB_LOWPT 0.18 */ |
109 |
– |
/* #define PFISO_EE_HIGHPT 0.1 */ |
110 |
– |
/* #define PFISO_EE_LOWPT 0.1 */ |
111 |
– |
|
112 |
– |
//#define THEIR_EVENTS |
113 |
|
|
114 |
|
void initRunLumiRangeMap(); |
115 |
|
|
134 |
|
double eventweight, // weight |
135 |
|
TTree * passtuple, // output ntuple |
136 |
|
LabVectors * l); |
137 |
+ |
|
138 |
|
#endif |