test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TkLasBeamFitter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TkLasBeamFitter = cms.EDProducer(
4  "TkLasBeamFitter",
5  src = cms.InputTag("LaserAlignment", "tkLaserBeams"),
6  # Fit Beam Splitters? If not, preset values are taken
7  fitBeamSplitters = cms.bool( True ),
8  # AT fit params: 6 is recommended; only other valid values are '3' or '5'
9  # '3': slope, offset, Beam Splitters are fitted
10  # '5': rotations of both ATs are fitted as well
11  # '6': relative shift of ATs in phi-z-plane is fitted
12  numberOfFittedAtParameters = cms.uint32( 6 )
13 )
14