CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Calibration/EcalAlCaRecoProducers/python/ALCARECOEcalCalPhiSym_Output_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # output block for alcastream EcalPhiSym
00004 # keep L1 info and laser-recalibrated hits : 
00005 # non-recalibrated hits have HLT as parent process
00006 
00007 OutALCARECOEcalCalPhiSym_noDrop = cms.PSet(
00008     # put this if you have a filter
00009     SelectEvents = cms.untracked.PSet(
00010         SelectEvents = cms.vstring('pathALCARECOEcalCalPhiSym')
00011     ),
00012     outputCommands = cms.untracked.vstring(
00013         'keep *_ecalPhiSymCorrected_phiSymEcalRecHitsEB_*', 
00014         'keep *_ecalPhiSymCorrected_phiSymEcalRecHitsEE_*',
00015         'keep L1GlobalTriggerReadoutRecord_hltGtDigis_*_*')
00016 )
00017 
00018 
00019 import copy
00020 OutALCARECOEcalCalPhiSym=copy.deepcopy(OutALCARECOEcalCalPhiSym_noDrop)
00021 OutALCARECOEcalCalPhiSym.outputCommands.insert(0,"drop *")