File indexing completed on 2024-04-06 11:59:38
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("Demo")
0004
0005 process.source = cms.Source("PoolSource",
0006 fileNames = cms.untracked.vstring ('file:/afs/cern.ch/user/f/florez/CMSSW_2_0_4/src/FedFillerWords/Data/mysimple.root')
0007 )
0008
0009 process.MessageLogger = cms.Service("MessageLogger",
0010 cerr = cms.untracked.PSet(
0011 enable = cms.untracked.bool(False)
0012 ),
0013 files = cms.untracked.PSet(
0014 output = cms.untracked.PSet(
0015
0016 )
0017 ),
0018 noLineBreaks = cms.untracked.bool(True),
0019 threshold = cms.untracked.string('WARNING')
0020 )
0021
0022 process.MessageLogger = cms.Service("MessageLogger",
0023 cerr = cms.untracked.PSet(
0024 enable = cms.untracked.bool(False)
0025 ),
0026 files = cms.untracked.PSet(
0027 output = cms.untracked.PSet(
0028
0029 )
0030 ),
0031 noLineBreaks = cms.untracked.bool(True),
0032 threshold = cms.untracked.string('WARNING')
0033 )
0034
0035 process.MessageLogger = cms.Service("MessageLogger",
0036 cerr = cms.untracked.PSet(
0037 enable = cms.untracked.bool(False)
0038 ),
0039 files = cms.untracked.PSet(
0040 output = cms.untracked.PSet(
0041
0042 )
0043 ),
0044 noLineBreaks = cms.untracked.bool(True),
0045 threshold = cms.untracked.string('WARNING')
0046 )
0047
0048 process.filler = cms.EDProducer("SiPixelFedFillerWordEventNumber",
0049 InputLabel = cms.untracked.string('source'),
0050 InputInstance = cms.untracked.string(''),
0051 SaveFillerWords = cms.bool(False)
0052 )
0053
0054 process.out = cms.EDProducer("PoolOutputModule",
0055 fileName = cms.untracked.string("NewFEDFWs.root")
0056 )
0057
0058 process.producer = cms.Path(process.filler)
0059 process.producer = cms.EndPath(process.out)