1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("Demo")
process.source = cms.Source("PoolSource",
fileNames = cms.untracked.vstring ('file:/afs/cern.ch/user/f/florez/CMSSW_2_0_4/src/FedFillerWords/Data/mysimple.root')
)
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
files = cms.untracked.PSet(
output = cms.untracked.PSet(
)
),
noLineBreaks = cms.untracked.bool(True),
threshold = cms.untracked.string('WARNING')
)
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
files = cms.untracked.PSet(
output = cms.untracked.PSet(
)
),
noLineBreaks = cms.untracked.bool(True),
threshold = cms.untracked.string('WARNING')
)
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
files = cms.untracked.PSet(
output = cms.untracked.PSet(
)
),
noLineBreaks = cms.untracked.bool(True),
threshold = cms.untracked.string('WARNING')
)
process.filler = cms.EDProducer("SiPixelFedFillerWordEventNumber",
InputLabel = cms.untracked.string('source'),
InputInstance = cms.untracked.string(''),
SaveFillerWords = cms.bool(False)
)
process.out = cms.EDProducer("PoolOutputModule",
fileName = cms.untracked.string("NewFEDFWs.root")
)
process.producer = cms.Path(process.filler)
process.producer = cms.EndPath(process.out)
|