-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeptonSelection.h
52 lines (45 loc) · 1.35 KB
/
LeptonSelection.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef LeptonSelection_h
#define LeptonSelection_h
#include <iostream>
using namespace std;
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <vector>
#include "TLorentzVector.h"
#include "TH1F.h"
#include "TH2F.h"
#include "TH3F.h"
#include "Lepton.h"
#include "OtherFunctions.h"
class Lep {
public:
Int_t ifid;
Lepton::FakeType fakeType;
Lepton::LooseTight looseTight;
Lepton::LeptonType leptonType;
TLorentzVector vLepton;
Bool_t etaPt,RelIsod0Chi2,DepositVeto,individual,RelIsod0;//fiducial;//muonid,pTcut,isIso;
Double_t LeptonRelIso,dxy,dz,D0,D0Error,D0Significance,Vxy, Vz;
Int_t numlep;
Double_t pt_cut_min, pt_cut_max, eta_cut_min, eta_cut, relIso_cut, relIsoMIN_cut, chiNdof_cut, chiNdofMIN_cut, dxy_cut, dxyMIN_cut, dz_cut;
Int_t casediscriminator,simpleselection;
Double_t LeptonchiNdof;
Lep();
~Lep();
void SetPt(Double_t minPt, Double_t maxPt);
void SetPt(Double_t minPt);
void SetEta(Double_t Eta);
void SetEta(Double_t minEta, Double_t Eta);
void SetRelIso(Double_t RelIso);
void SetRelIso(Double_t RelIsoMIN, Double_t RelIso);
void SetChiNdof(Double_t ChiNdof);
void SetChiNdof(Double_t ChiNdofMIN, Double_t ChiNdof);
void SetBSdxy(Double_t dxy);
void SetBSdxy(Double_t dxyMIN, Double_t dxy);
void SetBSdz(Double_t dz);
};
#endif