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: 2009/07/10 13:24:48 $ by $Author: flucke $
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  ),
11  outputCommands = cms.untracked.vstring()
12 )
13 
14 # We have the same producers as in the non-HLT path, just HLT sel. in front,
15 # ==> identical keep statements:
17 OutALCARECOTkAlCosmicsHLT_noDrop.outputCommands = Alignment.CommonAlignmentProducer.ALCARECOTkAlCosmics_Output_cff.OutALCARECOTkAlCosmics_noDrop.outputCommands
18 
19 import copy
20 OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)
21 OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, "drop *")
22