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 MisalignmentScenario = cms.PSet(NoMovementsScenario),
00029 doMisalignmentScenario = cms.bool(False),
00030
00031 randomShift = cms.double(0.0),
00032 randomRotation = cms.double(0.0),
00033 parameterSelectorSimple = cms.string('-1'),
00034
00035
00036
00037 ParameterBuilder = cms.PSet(parameterTypes = cms.vstring('Selector,RigidBody'),
00038 Selector = cms.PSet(alignParams = cms.vstring('PixelHalfBarrelLayers,111000'))
00039 ),
00040
00041 nFixAlignables = cms.int32(0),
00042
00043
00044 tjTkAssociationMapTag = cms.InputTag("TrackRefitter"),
00045 beamSpotTag = cms.InputTag("offlineBeamSpot"),
00046 hitPrescaleMapTag = cms.InputTag(""),
00047
00048 tkLasBeamTag = cms.InputTag(""),
00049
00050
00051 algoConfig = cms.PSet(HIPAlignmentAlgorithm),
00052
00053 monitorConfig = cms.PSet(monitors = cms.untracked.vstring()),
00054
00055
00056
00057 RunRangeSelection = cms.VPSet(
00058
00059
00060
00061
00062 ),
00063
00064
00065 saveToDB = cms.bool(False),
00066 saveApeToDB = cms.bool(False),
00067 saveDeformationsToDB = cms.bool(False)
00068 )