File indexing completed on 2023-03-17 11:00:25
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("OWNPARTICLES")
0004
0005 process.load("FWCore.MessageService.MessageLogger_cfi")
0006
0007 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) )
0008
0009 process.source = cms.Source("PoolSource",
0010
0011 fileNames = cms.untracked.vstring(
0012 '/store/data/Run2010B/MinimumBias/RAW/v1/000/147/926/F4FCCEDB-3CD7-DF11-B220-001D09F28EC1.root'
0013 )
0014 )
0015
0016 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0017 process.GlobalTag.globaltag = 'GR_R_42_V14::All'
0018
0019 process.load('EventFilter.SiStripRawToDigi.ExcludedFEDListProducer_cfi')
0020
0021
0022
0023
0024
0025
0026 process.out = cms.OutputModule("PoolOutputModule",
0027 fileName = cms.untracked.string('myOutputFile.root')
0028 )
0029
0030
0031 process.p = cms.Path(process.SiStripExcludedFEDListProducer)
0032
0033 process.e = cms.EndPath(process.out)