00001
00002
00003
00004 import FWCore.ParameterSet.Config as cms
00005
00006
00007 from Alignment.TrackerAlignment.Scenarios_cff import *
00008
00009
00010
00011 from Alignment.hIPAlignmentAlgorithm.HIPAlignmentAlgorithm_cfi import *
00012 from Alignment.millePedeAlignmentAlgorithm.MillePedeAlignmentAlgorithm_cfi import *
00013 from Alignment.kalmanAlignmentAlgorithm.KalmanAlignmentAlgorithm_cfi import *
00014
00015 from Alignment.CommonAlignmentAlgorithm.AlignmentParameterStore_cfi import *
00016 looper = cms.Looper("AlignmentProducer",
00017
00018 alignmentParameterStore,
00019
00020
00021 saveToDB = cms.bool(False),
00022 doMuon = cms.untracked.bool(False),
00023 MisalignmentScenario = cms.PSet(
00024 NoMovementsScenario
00025 ),
00026
00027 nFixAlignables = cms.int32(0),
00028
00029
00030 applyDbAlignment = cms.untracked.bool(False),
00031 monitorConfig = cms.PSet(
00032 monitors = cms.untracked.vstring()
00033 ),
00034 maxLoops = cms.untracked.uint32(1),
00035
00036 algoConfig = cms.PSet(
00037 hIPAlignmentAlgorithm
00038 ),
00039 ParameterBuilder = cms.PSet(
00040 Selector = cms.PSet(
00041
00042
00043
00044
00045
00046
00047
00048 alignParams = cms.vstring('PixelHalfBarrelLayers,111000')
00049 )
00050 ),
00051
00052 parameterSelectorSimple = cms.string('-1'),
00053 randomShift = cms.double(0.0),
00054 doTracker = cms.untracked.bool(True),
00055
00056 doMisalignmentScenario = cms.bool(False),
00057 randomRotation = cms.double(0.0),
00058 tjTkAssociationMapTag = cms.InputTag("TrackRefitter"),
00059
00060
00061 useSurvey = cms.bool(False)
00062 )
00063
00064