Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 from Alignment.TrackerAlignment.Scenarios_cff import *
00005
00006
00007 from Alignment.HIPAlignmentAlgorithm.HIPAlignmentAlgorithm_cfi import *
00008 from Alignment.MillePedeAlignmentAlgorithm.MillePedeAlignmentAlgorithm_cfi import *
00009 from Alignment.KalmanAlignmentAlgorithm.KalmanAlignmentAlgorithm_cfi import *
00010
00011 from Alignment.CommonAlignmentAlgorithm.AlignmentParameterStore_cfi import *
00012
00013 looper = cms.Looper("AlignmentProducer",
00014 AlignmentParameterStore,
00015 maxLoops = cms.untracked.uint32(1),
00016 doTracker = cms.untracked.bool(True),
00017 doMuon = cms.untracked.bool(False),
00018 useExtras = cms.untracked.bool(False),
00019
00020
00021 useSurvey = cms.bool(False),
00022
00023
00024
00025 applyDbAlignment = cms.untracked.bool(False),
00026
00027
00028
00029
00030 checkDbAlignmentValidity = cms.untracked.bool(True),
00031
00032
00033 MisalignmentScenario = cms.PSet(NoMovementsScenario),
00034 doMisalignmentScenario = cms.bool(False),
00035
00036 randomShift = cms.double(0.0),
00037 randomRotation = cms.double(0.0),
00038 parameterSelectorSimple = cms.string('-1'),
00039
00040
00041
00042 ParameterBuilder = cms.PSet(parameterTypes = cms.vstring('Selector,RigidBody'),
00043 Selector = cms.PSet(alignParams = cms.vstring('PixelHalfBarrelLayers,111000'))
00044 ),
00045
00046 nFixAlignables = cms.int32(0),
00047
00048
00049 tjTkAssociationMapTag = cms.InputTag("TrackRefitter"),
00050 beamSpotTag = cms.InputTag("offlineBeamSpot"),
00051 hitPrescaleMapTag = cms.InputTag(""),
00052
00053 tkLasBeamTag = cms.InputTag(""),
00054
00055
00056 algoConfig = cms.PSet(HIPAlignmentAlgorithm),
00057
00058 monitorConfig = cms.PSet(monitors = cms.untracked.vstring()),
00059
00060
00061
00062 RunRangeSelection = cms.VPSet(
00063
00064
00065
00066
00067 ),
00068
00069
00070 saveToDB = cms.bool(False),
00071 saveApeToDB = cms.bool(False),
00072 saveDeformationsToDB = cms.bool(False)
00073 )