CMS 3D CMS Logo

mtdRecHits_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 _barrelAlgo = cms.PSet(
4  algoName = cms.string("MTDRecHitAlgo"),
5  thresholdToKeep = cms.double(1.), # MeV
6  calibrationConstant = cms.double(0.026041667), # MeV/pC
7 )
8 
9 
10 _endcapAlgo = cms.PSet(
11  algoName = cms.string("MTDRecHitAlgo"),
12  thresholdToKeep = cms.double(0.0425), # MeV
13  calibrationConstant = cms.double(0.085), # MeV/MIP
14 )
15 
16 
17 mtdRecHits = cms.EDProducer(
18  "MTDRecHitProducer",
19  barrel = _barrelAlgo,
20  endcap = _endcapAlgo,
21  barrelUncalibratedRecHits = cms.InputTag('mtdUncalibratedRecHits:FTLBarrel'),
22  endcapUncalibratedRecHits = cms.InputTag('mtdUncalibratedRecHits:FTLEndcap'),
23  BarrelHitsName = cms.string('FTLBarrel'),
24  EndcapHitsName = cms.string('FTLEndcap'),
25 )