CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/CalibMuon/DTCalibration/python/ALCARECODtCalib_Output_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # output block for alcastream Electron
00004 OutALCARECODtCalib_noDrop = cms.PSet(
00005     # put this if you have a filter
00006     SelectEvents = cms.untracked.PSet(
00007         SelectEvents = cms.vstring('pathALCARECODtCalib')
00008     ),
00009     outputCommands = cms.untracked.vstring( 
00010         'keep *_dt4DSegments_*_*', 
00011         'keep *_dt4DSegmentsNoWire_*_*',
00012         'keep *_muonDTDigis_*_*', 
00013         'keep *_dttfDigis_*_*',
00014         'keep *_gtDigis_*_*',
00015         'keep *_TriggerResults_*_*',
00016         'keep recoMuons_muons_*_*',
00017         'keep booledmValueMap_muid*_*_*')
00018 )
00019 
00020 
00021 import copy
00022 OutALCARECODtCalib = copy.deepcopy(OutALCARECODtCalib_noDrop)
00023 OutALCARECODtCalib.outputCommands.insert(0, "drop *")