1 import FWCore.ParameterSet.Config
as cms
3 _barrelAlgo = cms.PSet(
4 algoName = cms.string(
"MTDRecHitAlgo"),
5 thresholdToKeep = cms.double(1.),
6 calibrationConstant = cms.double(0.03125),
10 _endcapAlgo = cms.PSet(
11 algoName = cms.string(
"MTDRecHitAlgo"),
12 thresholdToKeep = cms.double(0.0425),
13 calibrationConstant = cms.double(0.085),
16 from Configuration.Eras.Modifier_phase2_etlV4_cff
import phase2_etlV4
17 phase2_etlV4.toModify(_endcapAlgo, thresholdToKeep = 0.005, calibrationConstant = 0.015 )
19 mtdRecHits = cms.EDProducer(
23 barrelUncalibratedRecHits = cms.InputTag(
'mtdUncalibratedRecHits:FTLBarrel'),
24 endcapUncalibratedRecHits = cms.InputTag(
'mtdUncalibratedRecHits:FTLEndcap'),
25 BarrelHitsName = cms.string(
'FTLBarrel'),
26 EndcapHitsName = cms.string(
'FTLEndcap'),