Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:20:28

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # Raw data
0004 
0005 #------------ Message logger ------------------------------------
0006 
0007 import FWCore.ParameterSet.Config as cms
0008 
0009 process = cms.Process("MUONHLT")
0010 #------------ HLT Muon Paths -------------------------------------
0011 process.load("Configuration.StandardSequences.MagneticField_cff")
0012 
0013 process.load("Configuration.StandardSequences.FakeConditions_cff")
0014 
0015 import RecoMuon.L3MuonIsolationProducer.L3MuonIsolationProducerPixTE_cfi
0016 process.hltL3MuonIsolations = RecoMuon.L3MuonIsolationProducer.L3MuonIsolationProducerPixTE_cfi.L3MuonIsolationProducerPixTE.clone()
0017 process.maxEvents = cms.untracked.PSet(
0018     input = cms.untracked.int32(20)
0019 )
0020 process.source = cms.Source("PoolSource",
0021     fileNames = cms.untracked.vstring('file:RelVal_Pure_Raw.root')
0022 )
0023 
0024 process.MessageLogger = cms.Service("MessageLogger")
0025 
0026 process.Timing = cms.Service("Timing")
0027 
0028 process.OUTPUT = cms.OutputModule("PoolOutputModule",
0029     outputCommands = cms.untracked.vstring('keep *'),
0030     SelectEvents = cms.untracked.PSet(
0031         SelectEvents = cms.vstring('*')
0032     ),
0033     fileName = cms.untracked.string('test.root')
0034 )
0035 
0036 process.p1 = cms.Path(process.hltL3MuonIsolations)
0037 process.outpath = cms.EndPath(process.OUTPUT)
0038 process.PoolSource.fileNames = ['/store/relval/2008/6/6/RelVal-RelValWM-1212543891-STARTUP-2nd-02/0000/0C965E23-E733-DD11-9730-000423D94524.root', '/store/relval/2008/6/6/RelVal-RelValWM-1212543891-STARTUP-2nd-02/0000/18AB1548-E533-DD11-8103-000423D9863C.root', '/store/relval/2008/6/6/RelVal-RelValWM-1212543891-STARTUP-2nd-02/0000/22230C75-E533-DD11-B855-001617E30F4C.root']
0039