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
|
import FWCore.ParameterSet.Config as cms
hltPhase2TowerMakerForAll = cms.EDProducer("CaloTowersCreator",
AllowMissingInputs = cms.bool(False),
EBGrid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
EBSumThreshold = cms.double(0.2),
EBThreshold = cms.double(0.07),
EBWeight = cms.double(1.0),
EBWeights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
EEGrid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
EESumThreshold = cms.double(0.45),
EEThreshold = cms.double(0.3),
EEWeight = cms.double(1.0),
EEWeights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
EcalRecHitSeveritiesToBeExcluded = cms.vstring(
'kTime',
'kWeird',
'kBad'
),
EcalSeveritiesToBeUsedInBadTowers = cms.vstring(),
EcutTower = cms.double(-1000.0),
HBGrid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
HBThreshold = cms.double(0.3),
HBThreshold1 = cms.double(0.1),
HBThreshold2 = cms.double(0.2),
HBWeight = cms.double(1.0),
HBWeights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
HEDGrid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
HEDThreshold = cms.double(0.2),
HEDThreshold1 = cms.double(0.1),
HEDWeight = cms.double(1.0),
HEDWeights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
HESGrid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
HESThreshold = cms.double(0.2),
HESThreshold1 = cms.double(0.1),
HESWeight = cms.double(1.0),
HESWeights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
HF1Grid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
HF1Threshold = cms.double(0.5),
HF1Weight = cms.double(1.0),
HF1Weights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
HF2Grid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
HF2Threshold = cms.double(0.85),
HF2Weight = cms.double(1.0),
HF2Weights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
HOGrid = cms.vdouble(-1.0, 1.0, 10.0, 100.0, 1000.0),
HOThreshold0 = cms.double(1.1),
HOThresholdMinus1 = cms.double(3.5),
HOThresholdMinus2 = cms.double(3.5),
HOThresholdPlus1 = cms.double(3.5),
HOThresholdPlus2 = cms.double(3.5),
HOWeight = cms.double(1.0),
HOWeights = cms.vdouble(1.0, 1.0, 1.0, 1.0, 1.0),
HcalAcceptSeverityLevel = cms.uint32(9),
HcalAcceptSeverityLevelForRejectedHit = cms.uint32(9999),
HcalPhase = cms.int32(1),
HcalThreshold = cms.double(-1000.0),
MomConstrMethod = cms.int32(1),
MomEBDepth = cms.double(0.3),
MomEEDepth = cms.double(0.0),
MomHBDepth = cms.double(0.2),
MomHEDepth = cms.double(0.4),
UseEcalRecoveredHits = cms.bool(False),
UseEtEBTreshold = cms.bool(False),
UseEtEETreshold = cms.bool(False),
UseHO = cms.bool(False),
UseHcalRecoveredHits = cms.bool(True),
UseRejectedHitsOnly = cms.bool(False),
UseRejectedRecoveredEcalHits = cms.bool(False),
UseRejectedRecoveredHcalHits = cms.bool(True),
UseSymEBTreshold = cms.bool(True),
UseSymEETreshold = cms.bool(True),
ecalInputs = cms.VInputTag("hltEcalRecHit:EcalRecHitsEB", "hltEcalRecHit:EcalRecHitsEE"),
hbheInput = cms.InputTag("hltHbhereco"),
hfInput = cms.InputTag("hltHfreco"),
hoInput = cms.InputTag("hltHoreco"),
missingHcalRescaleFactorForEcal = cms.double(0)
)
|