/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoHGCal/TICL/python/customiseTICLForDumper.py
12 строк
494 B
Felice Pantaleo
Update TICL dumper configuration and superclustering sample dumping
21 апр 2026, 17:55
21 апр 2026, 17:55
c90ffe1
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from RecoHGCal.TICL.ticlDumper_cff import ticlDumper def customiseTICLForDumper(process, histoName="histo.root"): process.ticlDumper = ticlDumper.clone() process.TFileService = cms.Service("TFileService", fileName=cms.string(histoName) ) process.FEVTDEBUGHLToutput_step = cms.EndPath( process.FEVTDEBUGHLToutput + process.ticlDumper) return process