Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:15

0001 # last update: $Date: 2010/03/16 17:08:51 $ by $Author: mussgill $
0002 
0003 import FWCore.ParameterSet.Config as cms
0004 
0005 # AlCaReco for track based alignment using Cosmic muon events
0006 OutALCARECOTkAlCosmicsHLT_noDrop = cms.PSet(
0007     SelectEvents = cms.untracked.PSet(
0008         SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTFHLT', 
0009             'pathALCARECOTkAlCosmicsCosmicTFHLT', 
0010             'pathALCARECOTkAlCosmicsRegionalHLT')
0011     ),
0012     outputCommands = cms.untracked.vstring()
0013 )
0014 
0015 # We have the same producers as in the non-HLT path, just HLT sel. in front,
0016 # ==> identical keep statements:
0017 import Alignment.CommonAlignmentProducer.ALCARECOTkAlCosmics_Output_cff
0018 OutALCARECOTkAlCosmicsHLT_noDrop.outputCommands = Alignment.CommonAlignmentProducer.ALCARECOTkAlCosmics_Output_cff.OutALCARECOTkAlCosmics_noDrop.outputCommands
0019 
0020 import copy
0021 OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)
0022 OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, "drop *")
0023