Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.EventContent.EventContentHeavyIons_cff import FEVTEventContent
0004 skimContent = FEVTEventContent.clone()
0005 skimContent.outputCommands.append("drop *_MEtoEDMConverter_*_*")
0006 skimContent.outputCommands.append("drop *_*_*_SKIM")
0007 
0008 #####################
0009 
0010 from HeavyIonsAnalysis.Configuration.HI_DiJetSkim_cff import *
0011 diJetSkimPath = cms.Path( diJetSkimSequence )
0012 SKIMStreamDiJet = cms.FilteredStream(
0013     responsible = 'HI PAG',
0014     name = 'DiJet',
0015     paths = (diJetSkimPath),
0016     content = skimContent.outputCommands,
0017     selectEvents = cms.untracked.PSet(),
0018     dataTier = cms.untracked.string('RAW-RECO')
0019     )
0020 
0021 #####################
0022 
0023 from HeavyIonsAnalysis.Configuration.HI_PhotonSkim_cff import *
0024 photonSkimPath = cms.Path( photonSkimSequence )
0025 SKIMStreamPhoton = cms.FilteredStream(
0026     responsible = 'HI PAG',
0027     name = 'Photon',
0028     paths = (photonSkimPath),
0029     content = skimContent.outputCommands,
0030     selectEvents = cms.untracked.PSet(),
0031     dataTier = cms.untracked.string('RAW-RECO')
0032     )
0033 
0034 zEESkimPath = cms.Path( zEESkimSequence )
0035 SKIMStreamZEE = cms.FilteredStream(
0036     responsible = 'HI PAG',
0037     name = 'ZEE',
0038     paths = (zEESkimPath),
0039     content = skimContent.outputCommands,
0040     selectEvents = cms.untracked.PSet(),
0041     dataTier = cms.untracked.string('RAW-RECO')
0042     )
0043 
0044 #####################
0045 
0046 from HeavyIonsAnalysis.Configuration.HI_ZMMSkim_cff import *
0047 zMMSkimPath = cms.Path( zMMSkimSequence )
0048 SKIMStreamZMM = cms.FilteredStream(
0049     responsible = 'HI PAG',
0050     name = 'ZMM',
0051     paths = (zMMSkimPath),
0052     content = skimContent.outputCommands,
0053     selectEvents = cms.untracked.PSet(),
0054     dataTier = cms.untracked.string('RAW-RECO')
0055     )
0056 
0057 #####################
0058 
0059