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
60
61
62
63
64
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("CompareGeometryTest")
process.load('Configuration.Geometry.GeometryIdeal2015_cff')
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1)
)
process.source = cms.Source("EmptyIOVSource",
lastValue = cms.uint64(1),
timetype = cms.string('runnumber'),
firstValue = cms.uint64(1),
interval = cms.uint64(1)
)
process.myprint = cms.OutputModule("AsciiOutputModule")
process.pAStd = cms.EDAnalyzer("PerfectGeometryAnalyzer",
dumpPosInfo = cms.untracked.bool(True),
label = cms.untracked.string(''),
isMagField = cms.untracked.bool(False),
dumpSpecs = cms.untracked.bool(True),
dumpGeoHistory = cms.untracked.bool(True),
outFileName = cms.untracked.string('STD'),
numNodesToDump = cms.untracked.uint32(0),
fromDB = cms.untracked.bool(False),
ddRootNodeName = cms.untracked.string('cms:OCMS')
)
process.BigXMLWriter = cms.EDAnalyzer("OutputDDToDDL",
rotNumSeed = cms.int32(0),
fileName = cms.untracked.string('fred.xml')
)
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
debugModules = cms.untracked.vstring('*'),
files = cms.untracked.PSet(
readIdealdebug = cms.untracked.PSet(
DEBUG = cms.untracked.PSet(
limit = cms.untracked.int32(-1)
),
INFO = cms.untracked.PSet(
limit = cms.untracked.int32(-1)
),
extension = cms.untracked.string('.out'),
noLineBreaks = cms.untracked.bool(True),
threshold = cms.untracked.string('DEBUG')
),
readIdealerrors = cms.untracked.PSet(
extension = cms.untracked.string('.out'),
threshold = cms.untracked.string('ERROR')
)
)
)
process.Timing = cms.Service("Timing")
process.p1 = cms.Path(process.pAStd)
process.e1 = cms.EndPath(process.myprint)
|