|
|
Go to the documentation of this file.
3 intoNTuplesTemplate=
"""
4 import FWCore.ParameterSet.Config as cms
6 process = cms.Process("ValidationIntoNTuples")
9 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
10 process.GlobalTag.globaltag = ".oO[GlobalTag]Oo."
12 process.load("Configuration.Geometry.GeometryDB_cff")
13 #process.load("Geometry.TrackerNumberingBuilder.trackerNumberingGeometry_cfi")
14 #process.load("Geometry.TrackerGeometryBuilder.trackerGeometry_cfi")
16 #process.load("Alignment.CommonAlignmentProducer.GlobalPosition_Frontier_cff")
17 process.load("CondCore.DBCommon.CondDBSetup_cfi")
19 process.MessageLogger = cms.Service("MessageLogger",
20 destinations = cms.untracked.vstring('detailedInfo',
26 process.source = cms.Source("EmptySource",
27 firstRun=cms.untracked.uint32(.oO[runGeomComp]Oo.)
30 process.maxEvents = cms.untracked.PSet(
31 input = cms.untracked.int32(1)
33 process.dump = cms.EDAnalyzer("TrackerGeometryIntoNtuples",
34 # outputFile = cms.untracked.string('.oO[workdir]Oo./.oO[alignmentName]Oo.ROOTGeometry.root'),
35 outputFile = cms.untracked.string('.oO[alignmentName]Oo.ROOTGeometry.root'),
36 outputTreename = cms.untracked.string('alignTree')
39 process.p = cms.Path(process.dump)
46 import FWCore.ParameterSet.Config as cms
48 process = cms.Process("validation")
51 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
52 process.GlobalTag.globaltag = ".oO[GlobalTag]Oo."
53 process.load("Configuration.Geometry.GeometryDB_cff")
55 #process.load("Geometry.TrackerNumberingBuilder.trackerNumberingGeometry_cfi")
57 #process.load("Geometry.TrackerGeometryBuilder.trackerGeometry_cfi")
59 #process.load("Alignment.CommonAlignmentProducer.GlobalPosition_Frontier_cff")
60 # the input .GlobalPosition_Frontier_cff is providing the frontier://FrontierProd/CMS_COND_31X_ALIGNMENT in the release which does not provide the ideal geometry
61 #process.GlobalPosition.connect = 'frontier://FrontierProd/CMS_COND_31X_FROM21X'
63 process.load("CondCore.DBCommon.CondDBSetup_cfi")
65 process.MessageLogger = cms.Service("MessageLogger",
66 destinations = cms.untracked.vstring('detailedInfo',
70 process.source = cms.Source("EmptySource")
72 process.maxEvents = cms.untracked.PSet(
73 input = cms.untracked.int32(1)
76 process.load("DQM.SiStripCommon.TkHistoMap_cfi")
78 process.DQMStore=cms.Service("DQMStore")
79 #process.TkDetMap = cms.Service("TkDetMap")
80 #process.SiStripDetInfoFileReader = cms.Service("SiStripDetInfoFileReader")
82 process.load("DQMServices.Core.DQMStore_cfg")
83 #process.DQMStore=cms.Service("DQMStore")
85 # configuration of the Tracker Geometry Comparison Tool
86 # Tracker Geometry Comparison
87 process.load("Alignment.OfflineValidation.TrackerGeometryCompare_cfi")
88 # the input "IDEAL" is special indicating to use the ideal geometry of the release
90 process.TrackerGeometryCompare.inputROOTFile1 = '.oO[comparedGeometry]Oo.'
91 process.TrackerGeometryCompare.inputROOTFile2 = '.oO[referenceGeometry]Oo.'
92 # process.TrackerGeometryCompare.outputFile = ".oO[workdir]Oo./.oO[name]Oo..Comparison_common.oO[common]Oo..root"
93 process.TrackerGeometryCompare.outputFile = ".oO[name]Oo..Comparison_common.oO[common]Oo..root"
95 process.load("CommonTools.UtilAlgos.TFileService_cfi")
96 #process.TFileService = cms.Service("TFileService",
97 # fileName = cms.string('TkSurfDeform.root')
99 process.TFileService.fileName = cms.string("TkSurfDeform_.oO[name]Oo..Comparison_common.oO[common]Oo..root")
101 process.TrackerGeometryCompare.levels = [ .oO[levels]Oo. ]
104 ##replace TrackerGeometryCompare.writeToDB = .oO[dbOutput]Oo.
105 ##removed: dbOutputService
107 process.p = cms.Path(process.TrackerGeometryCompare)
113 dbOutputTemplate=
"""
114 //_________________________ db Output ____________________________
115 # setup for writing out to DB
116 include "CondCore/DBCommon/data/CondDBSetup.cfi"
117 # include "CondCore/DBCommon/data/CondDBCommon.cfi"
119 service = PoolDBOutputService {
122 { string record = "TrackerAlignmentRcd" string tag = ".oO[tag]Oo." },
123 { string record = "TrackerAlignmentErrorRcd" string tag = ".oO[errortag]Oo." }
125 # string connect = "sqlite_file:.oO[workdir]Oo./.oO[name]Oo.Common.oO[common]Oo..db"
126 string connect = "sqlite_file:.oO[name]Oo.Common.oO[common]Oo..db"
127 # untracked string catalog = "file:alignments.xml"
128 untracked string timetype = "runnumber"