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
|
# The following comments couldn't be translated into the new config version:
# Configuration file for EventSetupTest_t
import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST")
process.PoolDBESSource = cms.ESSource("PoolDBESSource",
toGet = cms.VPSet(cms.PSet(
record = cms.string('TrackerAlignmentRcd'),
tag = cms.string('TrackerShortTermScenario')
),
cms.PSet(
record = cms.string('TrackerAlignmentErrorRcd'),
tag = cms.string('TrackerShortTermScenarioErrors')
),
cms.PSet(
record = cms.string('TrackerAlignmentRcd'),
tag = cms.string('TrackerLongTermScenario')
),
cms.PSet(
record = cms.string('TrackerAlignmentErrorRcd'),
tag = cms.string('TrackerLongTermScenarioErrors')
)),
connect = cms.string('oracle://devdb10/CMS_COND_ALIGNMENT'), ##devdb10/CMS_COND_ALIGNMENT"
)
process.source = cms.Source("EmptySource",
maxEvents = cms.untracked.int32(1),
numberEventsInRun = cms.untracked.uint32(1),
firstRun = cms.untracked.uint32(1)
)
process.get = cms.EDAnalyzer("EventSetupRecordDataGetter",
toGet = cms.VPSet(cms.PSet(
record = cms.string('TrackerAlignmentRcd'),
data = cms.vstring('Alignments')
),
cms.PSet(
record = cms.string('TrackerAlignmentErrorRcd'),
data = cms.vstring('AlignmentErrors')
)),
verbose = cms.untracked.bool(True)
)
process.printer = cms.OutputModule("AsciiOutputModule")
process.p = cms.Path(process.get)
process.ep = cms.EndPath(process.printer)
|