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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
import FWCore.ParameterSet.Config as cms
b2gObjects = cms.VPSet(
cms.PSet(
pathNAME = cms.string("HLT_AK8PFJet400_TrimMass30"),
moduleNAME = cms.string("hltAK8SinglePFJet400TrimModMass30"),
label = cms.string("AK8 PF jet"),
xTITLE = cms.string("AK8 PF jet"),
etaBINNING = cms.vdouble(-3.,-2.5,-2.0,-1.5,-1.0,-0.5,0.,0.5,1.0,1.5,2.0,2.5,3.),
ptBINNING = cms.vdouble(0.,50.,100.,150.,200.,250.,300.,320.,340.,360.,380.,400.,420.,440.,460.,480.,500.,550.,600.,650.,700.,1000.),
phiBINNING = cms.vdouble(-3.2,-3.,-2.8,-2.6,-2.4,-2.2,-2.0,-1.8,-1.6,-1.4,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.,0.2,0.4,0.6,0.8,1.0,1.2,1.4,1.6,1.8,2.0,2.2,2.4,2.6,2.8,3.0,3.2),
massBINNING = cms.vdouble(0.,20.,40.,60.,70.,80.,90.,100.,110.,120.,130.,140.,150.,160.,170.,180.,190.,200.,210.),
dxyBINNING = cms.vdouble(),
dzBINNING = cms.vdouble(),
dimassBINNING = cms.vdouble(),
displayInPrimary_eta = cms.bool(True),
displayInPrimary_phi = cms.bool(True),
displayInPrimary_pt = cms.bool(True),
displayInPrimary_mass = cms.bool(True),
displayInPrimary_energy = cms.bool(False),
displayInPrimary_csv = cms.bool(False),
displayInPrimary_etaVSphi = cms.bool(True),
displayInPrimary_pt_HEP17 = cms.bool(True),
displayInPrimary_pt_HEM17 = cms.bool(True),
displayInPrimary_MR = cms.bool(False),
displayInPrimary_RSQ = cms.bool(False),
displayInPrimary_dxy = cms.bool(False),
displayInPrimary_dz = cms.bool(False),
displayInPrimary_dimass = cms.bool(False),
doPlot2D = cms.untracked.bool(True),
doPlotETA = cms.untracked.bool(True),
doPlotMASS = cms.untracked.bool(True),
doPlotENERGY = cms.untracked.bool(False),
doPlotHEP17 = cms.untracked.bool(True),
doPlotCSV = cms.untracked.bool(False),
doCALO = cms.untracked.bool(False),
doPF = cms.untracked.bool(False),
doPlotRazor = cms.untracked.bool(False),
doPlotDXY = cms.untracked.bool(False),
doPlotDZ = cms.untracked.bool(False),
doPlotDiMass = cms.untracked.bool(False),
),
cms.PSet(
pathNAME = cms.string("HLT_AK8PFHT850_TrimMass50"),
moduleNAME = cms.string("hltAK8PFHT850"),
label = cms.string("AK8 PF HT"),
xTITLE = cms.string("AK8 PF HT"),
etaBINNING = cms.vdouble(-3.,-2.5,-2.0,-1.5,-1.0,-0.5,0.,0.5,1.0,1.5,2.0,2.5,3.),
ptBINNING = cms.vdouble(0.,50.,100.,150.,200.,250.,300.,400.,500.,600.,650.,700.,750.,800.,820.,840.,860.,880.,900.,950.,1000.,1100.,1200.,1500.),
phiBINNING = cms.vdouble(-3.2,-3.,-2.8,-2.6,-2.4,-2.2,-2.0,-1.8,-1.6,-1.4,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.,0.2,0.4,0.6,0.8,1.0,1.2,1.4,1.6,1.8,2.0,2.2,2.4,2.6,2.8,3.0,3.2),
massBINNING = cms.vdouble(0.,20.,40.,60.,70.,80.,90.,100.,110.,120.,130.,140.,150.,160.,170.,180.,190.,200.,210.),
dxyBINNING = cms.vdouble(),
dzBINNING = cms.vdouble(),
dimassBINNING = cms.vdouble(),
displayInPrimary_eta = cms.bool(True),
displayInPrimary_phi = cms.bool(True),
displayInPrimary_pt = cms.bool(True),
displayInPrimary_mass = cms.bool(True),
displayInPrimary_energy = cms.bool(False),
displayInPrimary_csv = cms.bool(False),
displayInPrimary_etaVSphi = cms.bool(True),
displayInPrimary_pt_HEP17 = cms.bool(True),
displayInPrimary_pt_HEM17 = cms.bool(True),
displayInPrimary_MR = cms.bool(False),
displayInPrimary_RSQ = cms.bool(False),
displayInPrimary_dxy = cms.bool(False),
displayInPrimary_dz = cms.bool(False),
displayInPrimary_dimass = cms.bool(False),
doPlot2D = cms.untracked.bool(True),
doPlotETA = cms.untracked.bool(True),
doPlotMASS = cms.untracked.bool(True),
doPlotENERGY = cms.untracked.bool(False),
doPlotHEP17 = cms.untracked.bool(True),
doPlotCSV = cms.untracked.bool(False),
doCALO = cms.untracked.bool(False),
doPF = cms.untracked.bool(False),
doPlotRazor = cms.untracked.bool(False),
doPlotDXY = cms.untracked.bool(False),
doPlotDZ = cms.untracked.bool(False),
doPlotDiMass = cms.untracked.bool(False),
),
)
|