CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/Alignment/KalmanAlignmentAlgorithm/python/KalmanAlignmentAlgorithm_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Dummy implementation of KalmanAlignmentAlgorithm.cfi.
00004 # See Alignment/KalmanAlignmentAlgorithm/test for configuration examples.
00005 KalmanAlignmentAlgorithm = cms.PSet(
00006     algoName = cms.string( "KalmanAlignmentAlgorithm" ),
00007 
00008     AlgorithmConfig = cms.PSet( Setups = cms.vstring() ),
00009     ParameterConfig = cms.PSet(),
00010 
00011     WriteAlignmentParameters = cms.untracked.bool( True ),
00012     OutputFile = cms.string( "output.root" ),
00013 
00014     TimingLogFile = cms.untracked.string( "timing.log" ),
00015 
00016     TrackRefitter = cms.PSet(
00017         src = cms.string( "" ),
00018         bsSrc = cms.string( "" ),
00019         Fitter = cms.string( "KFFittingSmoother" ),
00020         TTRHBuilder = cms.string( "WithoutRefit" ),
00021         AlgorithmName = cms.string( "undefAlgorithm" ),
00022         debug = cms.untracked.bool( True ),
00023         Propagator = cms.string( "AnalyticalPropagator" )
00024     ),
00025 
00026     DataCollector = cms.PSet(
00027         XMin = cms.untracked.double(-20.0),
00028         NBins = cms.untracked.int32(400),
00029         XMax = cms.untracked.double(20.0),
00030         FileName = cms.untracked.string( "debug.root" )
00031     ),
00032 
00033     MergeResults = cms.bool( False ),
00034     Merger = cms.PSet(
00035         InputMergeFileNames = cms.vstring(),
00036         OutputMergeFileName = cms.string( "kaaMerged.root" ),
00037 
00038         ApplyParameters = cms.bool( False ),
00039         ApplyErrors = cms.bool( False )
00040     )
00041 )
00042