CMS 3D CMS Logo

ALCARECOTkAlLAS_Output_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # output block for LAS AlCaReco
4 OutALCARECOTkAlLAS_noDrop = cms.PSet(
5  SelectEvents = cms.untracked.PSet(
6  SelectEvents = cms.vstring('pathALCARECOTkAlLAS')
7  ),
8  outputCommands = cms.untracked.vstring(
9  'keep *_ALCARECOTkAlLAST0Producer_*_*',
10  'keep DcsStatuss_scalersRawToDigi_*_*')
11 )
12 
13 import copy
14 OutALCARECOTkAlLAS = copy.deepcopy(OutALCARECOTkAlLAS_noDrop)
15 OutALCARECOTkAlLAS.outputCommands.insert(0, "drop *")