Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # configuration of the alignment algorithm
0004 #
0005 LaserAlignmentAlgorithm = cms.PSet(
0006     AlignmentAlgorithm = cms.PSet(
0007         SecondFixedParameterTEC2TEC = cms.untracked.int32(3),
0008         FirstFixedParameterTEC2TEC = cms.untracked.int32(2),
0009         FirstFixedParameterNegTEC = cms.untracked.int32(2),
0010         SecondFixedParameterNegTEC = cms.untracked.int32(3),
0011         SecondFixedParameterPosTEC = cms.untracked.int32(3),
0012         # parameters to fix in Millepede (x,y for disc 1)
0013         FirstFixedParameterPosTEC = cms.untracked.int32(2)
0014     )
0015 )
0016