CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonAlignmentSummary_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # MuonAlignmentAnalyzer
4 muonAlignmentSummary = cms.EDAnalyzer("MuonAlignmentSummary",
5  doDT = cms.untracked.bool(True),
6  doCSC = cms.untracked.bool(True),
7  meanPositionRange = cms.untracked.double(0.5),
8  rmsPositionRange = cms.untracked.double(0.01),
9  meanAngleRange = cms.untracked.double(0.05),
10  rmsAngleRange = cms.untracked.double(0.005),
11  FolderName = cms.string("Test/")
12  )
13 
14 
15