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
|
import FWCore.ParameterSet.Config as cms
from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants
hltHGCalUncalibRecHitL1Seeded = cms.EDProducer("HGCalUncalibRecHitProducer",
HGCEEConfig = cms.PSet(
adcNbits = cms.uint32(10),
adcSaturation = cms.double(100),
fCPerMIP = cms.vdouble(HGCAL_reco_constants.fcPerMip[0:3]),
isSiFE = cms.bool(True),
tdcNbits = cms.uint32(12),
tdcOnset = cms.double(60),
tdcSaturation = cms.double(10000),
toaLSB_ns = cms.double(0.0244),
tofDelay = cms.double(-9)
),
HGCEEdigiCollection = cms.InputTag("hltHgcalDigisL1Seeded","EE"),
HGCEEhitCollection = cms.string('HGCEEUncalibRecHits'),
HGCHEBConfig = cms.PSet(
adcNbits = cms.uint32(10),
adcSaturation = cms.double(68.75),
fCPerMIP = cms.vdouble(1.0, 1.0, 1.0),
isSiFE = cms.bool(True),
tdcNbits = cms.uint32(12),
tdcOnset = cms.double(55),
tdcSaturation = cms.double(1000),
toaLSB_ns = cms.double(0.0244),
tofDelay = cms.double(-14)
),
HGCHEBdigiCollection = cms.InputTag("hltHgcalDigisL1Seeded","HEback"),
HGCHEBhitCollection = cms.string('HGCHEBUncalibRecHits'),
HGCHEFConfig = cms.PSet(
adcNbits = cms.uint32(10),
adcSaturation = cms.double(100),
fCPerMIP = cms.vdouble(HGCAL_reco_constants.fcPerMip[3:6]),
isSiFE = cms.bool(True),
tdcNbits = cms.uint32(12),
tdcOnset = cms.double(60),
tdcSaturation = cms.double(10000),
toaLSB_ns = cms.double(0.0244),
tofDelay = cms.double(-11)
),
HGCHEFdigiCollection = cms.InputTag("hltHgcalDigisL1Seeded","HEfront"),
HGCHEFhitCollection = cms.string('HGCHEFUncalibRecHits'),
HGCHFNoseConfig = cms.PSet(
adcNbits = cms.uint32(10),
adcSaturation = cms.double(100),
fCPerMIP = cms.vdouble(1.25, 2.57, 3.88),
isSiFE = cms.bool(False),
tdcNbits = cms.uint32(12),
tdcOnset = cms.double(60),
tdcSaturation = cms.double(10000),
toaLSB_ns = cms.double(0.0244),
tofDelay = cms.double(-33)
),
HGCHFNosedigiCollection = cms.InputTag("hfnoseDigis","HFNose"),
HGCHFNosehitCollection = cms.string('HGCHFNoseUncalibRecHits'),
computeLocalTime = cms.bool(False),
algo = cms.string('HGCalUncalibRecHitWorkerWeights')
)
from Configuration.ProcessModifiers.ticl_v5_cff import ticl_v5
ticl_v5.toModify(hltHGCalUncalibRecHitL1Seeded, computeLocalTime = cms.bool(True))
|