CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Muon_FrontierAlignment_cfi.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
4 #
5 # Take muon alignment corrections from Frontier
6 #
8 muonAlignment = cms.ESSource("PoolDBESSource",
9  CondDBSetup,
10  toGet = cms.VPSet(cms.PSet(
11  record = cms.string('DTAlignmentRcd'),
12  tag = cms.string('DTIdealGeometry200_mc')
13  ),
14  cms.PSet(
15  record = cms.string('DTAlignmentErrorRcd'),
16  tag = cms.string('DTIdealGeometryErrors200_mc')
17  ),
18  cms.PSet(
19  record = cms.string('CSCAlignmentRcd'),
20  tag = cms.string('CSCIdealGeometry200_mc')
21  ),
22  cms.PSet(
23  record = cms.string('CSCAlignmentErrorRcd'),
24  tag = cms.string('CSCIdealGeometryErrors200_mc')
25  )),
26 # FRONTIER
27  connect = cms.string('frontier://FrontierProd/CMS_COND_21X_ALIGNMENT')
28 # ORACLE
29  #connect = cms.string("oracle://cms_orcoff_prod/CMS_COND_21X_ALIGNMENT")
30 
31 )