/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/Skimming/python/Skims_PA_cff.py
52 строки
1 KB
Fabio Cossutti
Restore PA skims, rename modules to avoid interferences with HI skims, update test data sequence adding ALCA and SKIM
31 окт 2018, 19:25
31 окт 2018, 19:25
011d0bd
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from Configuration.EventContent.EventContent_cff import FEVTEventContent skimFEVTContent = FEVTEventContent.clone() skimFEVTContent.outputCommands.append("drop *_MEtoEDMConverter_*_*") skimFEVTContent.outputCommands.append("drop *_*_*_SKIM") ##################### from Configuration.Skimming.PA_MinBiasSkim_cff import * minBiasPASkimPath = cms.Path( minBiasPASkimSequence ) SKIMStreamPAMinBias = cms.FilteredStream( responsible = 'HI PAG', name = 'PAMinBias', paths = (minBiasPASkimPath), content = skimFEVTContent.outputCommands, selectEvents = cms.untracked.PSet(), dataTier = cms.untracked.string('RAW-RECO') ) ##################### from Configuration.Skimming.PA_ZEESkim_cff import * zEEPASkimPath = cms.Path( zEEPASkimSequence ) SKIMStreamPAZEE = cms.FilteredStream( responsible = 'HI PAG', name = 'PAZEE', paths = (zEEPASkimPath), content = skimFEVTContent.outputCommands, selectEvents = cms.untracked.PSet(), dataTier = cms.untracked.string('RAW-RECO') ) ##################### from Configuration.Skimming.PA_ZMMSkim_cff import * zMMPASkimPath = cms.Path( zMMPASkimSequence ) SKIMStreamPAZMM = cms.FilteredStream( responsible = 'HI PAG', name = 'PAZMM', paths = (zMMPASkimPath), content = skimFEVTContent.outputCommands, selectEvents = cms.untracked.PSet(), dataTier = cms.untracked.string('RAW-RECO') ) #####################