CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOTkAlCosmicsHLT_Output_cff.py
Go to the documentation of this file.
1 # last update: $Date: 2011/07/01 07:01:20 $ by $Author: mussgill $
2 
3 import FWCore.ParameterSet.Config as cms
4 
5 # AlCaReco for track based alignment using Cosmic muon events
6 OutALCARECOTkAlCosmicsHLT_noDrop = cms.PSet(
7  SelectEvents = cms.untracked.PSet(
8  SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTFHLT',
9  'pathALCARECOTkAlCosmicsCosmicTFHLT',
10  'pathALCARECOTkAlCosmicsRegionalHLT')
11  ),
12  outputCommands = cms.untracked.vstring()
13 )
14 
15 # We have the same producers as in the non-HLT path, just HLT sel. in front,
16 # ==> identical keep statements:
18 OutALCARECOTkAlCosmicsHLT_noDrop.outputCommands = Alignment.CommonAlignmentProducer.ALCARECOTkAlCosmics_Output_cff.OutALCARECOTkAlCosmics_noDrop.outputCommands
19 
20 import copy
21 OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)
22 OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, "drop *")
23