1 |
//Efficiencies 95% 90% 85% 80% 70% 60%
|
2 |
double vbtf_misshits[] = {1, 1, 1, 0, 0, 0};
|
3 |
double vbtf_convdist[] = {-999, 0.02, 0.02, 0.02, 0.02, 0.02};
|
4 |
double vbtf_convdcot[] = {-999, 0.02, 0.02, 0.02, 0.02, 0.02};
|
5 |
|
6 |
double vbtf_eb_combreliso[] = {0.15, 0.10, 0.09, 0.07, 0.04, 0.03};
|
7 |
double vbtf_eb_sigieie[] = {0.01, 0.01, 0.01, 0.01, 0.01, 0.01};
|
8 |
double vbtf_eb_dphi[] = {0.8, 0.8, 0.06, 0.06, 0.03, 0.025};
|
9 |
double vbtf_eb_deta[] = {0.007, 0.007, 0.006, 0.004, 0.004, 0.004};
|
10 |
double vbtf_eb_hoe[] = {0.15, 0.12, 0.04, 0.04, 0.025, 0.025};
|
11 |
|
12 |
double vbtf_ee_combreliso[] = {0.1, 0.07, 0.06, 0.06, 0.03, 0.02};
|
13 |
double vbtf_ee_sigieie[] = {0.03, 0.03, 0.03, 0.03, 0.03, 0.03};
|
14 |
double vbtf_ee_dphi[] = {0.7, 0.7, 0.04, 0.03, 0.02, 0.02};
|
15 |
double vbtf_ee_deta[] = {0.01, 0.009, 0.007, 0.007, 0.005, 0.005};
|
16 |
double vbtf_ee_hoe[] = {0.07, 0.05, 0.025, 0.025, 0.025, 0.025};
|
17 |
|
18 |
eidVBTF.cutdeta_eb = vector<double>(&vbtf_eb_deta[0], &vbtf_eb_deta[NCATEGORIES_VBTF] );
|
19 |
eidVBTF.cutdphi_eb = vector<double>(&vbtf_eb_dphi[0], &vbtf_eb_dphi[NCATEGORIES_VBTF] );
|
20 |
eidVBTF.cuthoe_eb = vector<double>(&vbtf_eb_hoe[0], &vbtf_eb_hoe[NCATEGORIES_VBTF] );
|
21 |
eidVBTF.cutsigieie_eb = vector<double>(&vbtf_eb_sigieie[0], &vbtf_eb_sigieie[NCATEGORIES_VBTF] );
|
22 |
eidVBTF.cutmisshits_eb = vector<double>(&vbtf_misshits[0], &vbtf_misshits[NCATEGORIES_VBTF] );
|
23 |
eidVBTF.cutconvdist_eb = vector<double>(&vbtf_convdist[0], &vbtf_convdist[NCATEGORIES_VBTF] );
|
24 |
eidVBTF.cutconvdcot_eb = vector<double>(&vbtf_convdcot[0], &vbtf_convdcot[NCATEGORIES_VBTF] );
|
25 |
|
26 |
eidVBTF.cutdeta_ee = vector<double>(&vbtf_ee_deta[0], &vbtf_ee_deta[NCATEGORIES_VBTF] );
|
27 |
eidVBTF.cutdphi_ee = vector<double>(&vbtf_ee_dphi[0], &vbtf_ee_dphi[NCATEGORIES_VBTF] );
|
28 |
eidVBTF.cuthoe_ee = vector<double>(&vbtf_ee_hoe[0], &vbtf_ee_hoe[NCATEGORIES_VBTF] );
|
29 |
eidVBTF.cutsigieie_ee = vector<double>(&vbtf_ee_sigieie[0], &vbtf_ee_sigieie[NCATEGORIES_VBTF] );
|
30 |
eidVBTF.cutmisshits_ee = vector<double>(&vbtf_misshits[0], &vbtf_misshits[NCATEGORIES_VBTF] );
|
31 |
eidVBTF.cutconvdist_ee = vector<double>(&vbtf_convdist[0], &vbtf_convdist[NCATEGORIES_VBTF] );
|
32 |
eidVBTF.cutconvdcot_ee = vector<double>(&vbtf_convdcot[0], &vbtf_convdcot[NCATEGORIES_VBTF] ); |