/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQMOffline/RecoB/python/dqmCollector_cff.py
20 строк
766 B
Nihar Ranjan Saha
Update dqmCollector_cff.py
12 янв 2022, 13:31
Не верифицирован
12 янв 2022, 13:31
b585c7a
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from DQMOffline.RecoB.dqmAnalyzer_cff import * #pf DATA collector bTagCollectorDATA = bTagHarvest.clone(ptRanges = [0.0]) # module execution bTagCollectorSequenceDATA = cms.Sequence(bTagCollectorDATA) #pf MC collector bTagCollectorMC = bTagHarvestMC.clone( flavPlots = "allbcl", #harvest all, b, c, dusg and ni histos ptRanges = [0.0], etaRanges = [0.0], ) # module execution bTagCollectorSequenceMC = cms.Sequence(bTagCollectorMC) #special sequence for fullsim, all histos havested by the DATA sequence in the dqm offline sequence bTagCollectorMCbcl = bTagCollectorMC.clone(flavPlots = "bcl") #harvest b, c, dusg and ni histos, all not harvested bTagCollectorSequenceMCbcl = cms.Sequence(bTagCollectorMCbcl)