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
|
import FWCore.ParameterSet.Config as cms
hgceeDigitizer = cms.PSet(
NoiseGeneration_Method = cms.bool(True),
accumulatorType = cms.string('HGCDigiProducer'),
bxTime = cms.double(25),
digiCfg = cms.PSet(
cceParams = cms.PSet(
refToPSet_ = cms.string('HGCAL_cceParams_toUse')
),
chargeCollectionEfficiencies = cms.PSet(
refToPSet_ = cms.string('HGCAL_chargeCollectionEfficiencies')
),
doTimeSamples = cms.bool(False),
feCfg = cms.PSet(
adcNbits = cms.uint32(10),
adcPulse = cms.vdouble(
0.0, 0.017, 0.817, 0.163, 0.003,
0.0
),
adcSaturation_fC = cms.double(100),
adcThreshold_fC = cms.double(0.672),
fwVersion = cms.uint32(2),
jitterConstant_ns = cms.vdouble(0.0004, 0.0004, 0.0004),
jitterNoise_ns = cms.vdouble(25.0, 25.0, 25.0),
pulseAvgT = cms.vdouble(
0.0, 23.42298, 13.16733, 6.41062, 5.03946,
4.532
),
targetMIPvalue_ADC = cms.uint32(10),
tdcChargeDrainParameterisation = cms.vdouble(
-919.13, 365.36, -14.1, 0.2, -21.85,
49.39, 22.21, 0.8, -0.28, 27.14,
43.95, 3.89048
),
tdcForToAOnset_fC = cms.vdouble(12.0, 12.0, 12.0),
tdcNbits = cms.uint32(12),
tdcOnset_fC = cms.double(60),
tdcResolutionInPs = cms.double(0.001),
tdcSaturation_fC = cms.double(10000),
toaLSB_ns = cms.double(0.0244),
toaMode = cms.uint32(1)
),
ileakParam = cms.PSet(
refToPSet_ = cms.string('HGCAL_ileakParam_toUse')
),
keV2fC = cms.double(0.044259),
noise_fC = cms.PSet(
refToPSet_ = cms.string('HGCAL_noise_fC')
),
thresholdFollowsMIP = cms.bool(True)
),
digiCollection = cms.string('HGCDigisEE'),
digitizationType = cms.uint32(0),
eVPerEleHolePair = cms.double(3.62),
geometryType = cms.uint32(1),
hitCollection = cms.string('HGCHitsEE'),
makeDigiSimLinks = cms.bool(False),
maxSimHitsAccTime = cms.uint32(100),
premixStage1 = cms.bool(False),
premixStage1MaxCharge = cms.double(1000000.0),
premixStage1MinCharge = cms.double(0),
tofDelay = cms.double(5),
useAllChannels = cms.bool(True),
verbosity = cms.untracked.uint32(0)
)
|