File indexing completed on 2023-03-17 10:49:07
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.EventContent.EventContent_cff import FEVTEventContent
0004
0005 skimFEVTContent = FEVTEventContent.clone()
0006 skimFEVTContent.outputCommands.append("drop *_MEtoEDMConverter_*_*")
0007 skimFEVTContent.outputCommands.append("drop *_*_*_SKIM")
0008
0009
0010
0011
0012
0013 from Configuration.Skimming.PA_MinBiasSkim_cff import *
0014 minBiasPASkimPath = cms.Path( minBiasPASkimSequence )
0015 SKIMStreamPAMinBias = cms.FilteredStream(
0016 responsible = 'HI PAG',
0017 name = 'PAMinBias',
0018 paths = (minBiasPASkimPath),
0019 content = skimFEVTContent.outputCommands,
0020 selectEvents = cms.untracked.PSet(),
0021 dataTier = cms.untracked.string('RAW-RECO')
0022 )
0023
0024
0025
0026
0027 from Configuration.Skimming.PA_ZEESkim_cff import *
0028 zEEPASkimPath = cms.Path( zEEPASkimSequence )
0029 SKIMStreamPAZEE = cms.FilteredStream(
0030 responsible = 'HI PAG',
0031 name = 'PAZEE',
0032 paths = (zEEPASkimPath),
0033 content = skimFEVTContent.outputCommands,
0034 selectEvents = cms.untracked.PSet(),
0035 dataTier = cms.untracked.string('RAW-RECO')
0036 )
0037
0038
0039
0040
0041 from Configuration.Skimming.PA_ZMMSkim_cff import *
0042 zMMPASkimPath = cms.Path( zMMPASkimSequence )
0043 SKIMStreamPAZMM = cms.FilteredStream(
0044 responsible = 'HI PAG',
0045 name = 'PAZMM',
0046 paths = (zMMPASkimPath),
0047 content = skimFEVTContent.outputCommands,
0048 selectEvents = cms.untracked.PSet(),
0049 dataTier = cms.untracked.string('RAW-RECO')
0050 )
0051
0052