CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
KalmanAlignmentAlgorithm_cfi.py
Go to the documentation of this file.
2 
3 # Dummy implementation of KalmanAlignmentAlgorithm.cfi.
4 # See Alignment/KalmanAlignmentAlgorithm/test for configuration examples.
5 KalmanAlignmentAlgorithm = cms.PSet(
6  algoName = cms.string( "KalmanAlignmentAlgorithm" ),
7 
8  AlgorithmConfig = cms.PSet( Setups = cms.vstring() ),
9  ParameterConfig = cms.PSet(),
10 
11  WriteAlignmentParameters = cms.untracked.bool( True ),
12  OutputFile = cms.string( "output.root" ),
13 
14  TimingLogFile = cms.untracked.string( "timing.log" ),
15 
16  TrackRefitter = cms.PSet(
17  src = cms.string( "" ),
18  bsSrc = cms.string( "" ),
19  Fitter = cms.string( "KFFittingSmoother" ),
20  TTRHBuilder = cms.string( "WithoutRefit" ),
21  AlgorithmName = cms.string( "undefAlgorithm" ),
22  debug = cms.untracked.bool( True ),
23  Propagator = cms.string( "AnalyticalPropagator" )
24  ),
25 
26  DataCollector = cms.PSet(
27  XMin = cms.untracked.double(-20.0),
28  NBins = cms.untracked.int32(400),
29  XMax = cms.untracked.double(20.0),
30  FileName = cms.untracked.string( "debug.root" )
31  ),
32 
33  MergeResults = cms.bool( False ),
34  Merger = cms.PSet(
35  InputMergeFileNames = cms.vstring(),
36  OutputMergeFileName = cms.string( "kaaMerged.root" ),
37 
38  ApplyParameters = cms.bool( False ),
39  ApplyErrors = cms.bool( False )
40  )
41 )
42