/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalFastTime/FTLRecProducers/python/mtdRecHits_cfi.py
27 строк
903 B
Massimo Casarsa
Squashed commit of the following:
27 окт 2025, 11:57
27 окт 2025, 11:57
0350e43
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms _barrelAlgo = cms.PSet( algoName = cms.string("MTDRecHitAlgo"), thresholdToKeep = cms.double(1.), # [MeV] calibrationConstant = cms.double(1.) ) _endcapAlgo = cms.PSet( algoName = cms.string("MTDRecHitAlgo"), thresholdToKeep = cms.double(0.0425), # MeV calibrationConstant = cms.double(0.085), # MeV/MIP ) from Configuration.Eras.Modifier_phase2_etlV4_cff import phase2_etlV4 phase2_etlV4.toModify(_endcapAlgo, thresholdToKeep = 0.005, calibrationConstant = 0.015 ) mtdRecHits = cms.EDProducer( "MTDRecHitProducer", barrel = _barrelAlgo, endcap = _endcapAlgo, barrelUncalibratedRecHits = cms.InputTag('mtdUncalibratedRecHits:FTLBarrel'), endcapUncalibratedRecHits = cms.InputTag('mtdUncalibratedRecHits:FTLEndcap'), BarrelHitsName = cms.string('FTLBarrel'), EndcapHitsName = cms.string('FTLEndcap'), )