File indexing completed on 2024-04-06 12:30:48
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 process = cms.Process("test")
0005
0006
0007 process.load("FWCore.MessageService.MessageLogger_cfi")
0008
0009 '''process.MessageLogger.SeedToTrackProducer = dict()
0010 process.MessageLogger.cout = cms.untracked.PSet(
0011 noTimeStamps = cms.untracked.bool(True),
0012 threshold = cms.untracked.string('INFO'),
0013 INFO = cms.untracked.PSet(limit = cms.untracked.int32(0)),
0014 default = cms.untracked.PSet(limit = cms.untracked.int32(0)),
0015 )
0016 '''
0017 process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
0018 process.load("Configuration.StandardSequences.MagneticField_38T_cff")
0019 process.load("Configuration.StandardSequences.Services_cff")
0020 process.load("Configuration.StandardSequences.Reconstruction_cff")
0021 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0022
0023 process.GlobalTag.globaltag = 'START70_V2::All'
0024
0025
0026 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) )
0027
0028 process.source = cms.Source("PoolSource",
0029 fileNames = cms.untracked.vstring(
0030 '/store/relval/CMSSW_7_0_0_pre9/RelValZMM/GEN-SIM-RECO/START70_V2-v4/00000/CAD227AF-9E5D-E311-B8EE-0025905A608E.root'
0031 )
0032 )
0033
0034
0035 process.myProducerLabel = cms.EDProducer('SeedToTrackProducer',
0036 L2seedsCollection = cms.InputTag("ancientMuonSeed")
0037 )
0038
0039 process.out = cms.OutputModule("PoolOutputModule",
0040 fileName = cms.untracked.string('testOutput.root'),
0041 outputCommands = cms.untracked.vstring('drop *'
0042 ,'keep *_*_*_test' )
0043 )
0044
0045
0046 process.p = cms.Path(process.myProducerLabel)
0047
0048 process.e = cms.EndPath(process.out)