CMS 3D CMS Logo

simKBmtfDigis_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 bmtfKalmanTrackingSettings = cms.PSet(
4  verbose = cms.bool(False), #
5  lutFile = cms.string("L1Trigger/L1TMuon/data/bmtf_luts/kalmanLUTs_v302.root"),
6  initialK = cms.vdouble(-1.196,-1.581,-2.133,-2.263),
7  initialK2 = cms.vdouble(-3.26e-4,-7.165e-4,2.305e-3,-5.63e-3),
8 # eLoss = cms.vdouble(-2.85e-4,-6.21e-5,-1.26e-4,-1.23e-4),
9  eLoss = cms.vdouble(+0.000765,0,0,0),
10 
11  aPhi = cms.vdouble(1.942, .01511, .01476, .009799),
12  aPhiB = cms.vdouble(-1.508,-0.1237,-0.1496,-0.1333),
13  aPhiBNLO = cms.vdouble(0.000331,0,0,0),
14 
15  bPhi = cms.vdouble(-1,.18245,.20898,.17286),
16  bPhiB = cms.vdouble(-1,1.18245,1.20898,1.17286),
17  phiAt2 = cms.double(0.15918),
18  etaLUT0 = cms.vdouble(8.946,7.508,6.279,6.399),
19  etaLUT1 = cms.vdouble(0.159,0.116,0.088,0.128),
20  #generic cuts
21  chiSquare = cms.vdouble(0.0,0.109375,0.234375,0.359375),
22  chiSquareCutPattern = cms.vint32(7,11,13,14,15),
23  chiSquareCutCurvMax = cms.vint32(2500,2500,2500,2500,2500),
24  chiSquareCut = cms.vint32(126,126,126,126,126),
25 
26 
27  #vertex cuts
28  trackComp = cms.vdouble(1.75,1.25,0.625,0.250),
29  trackCompErr1 = cms.vdouble(2.0,2.0,2.0,2.0),
30  trackCompErr2 = cms.vdouble(0.218750,0.218750,0.218750,0.3125),
31  trackCompCutPattern = cms.vint32(3,5,6,9,10,12),
32  trackCompCutCurvMax = cms.vint32(34,34,34,34,34,34), #this is shifted<<4
33  trackCompCut = cms.vint32(15,15,15,15,15,15),
34  chiSquareCutTight = cms.vint32(40,126,60,126,126,126),
35 
36  combos4=cms.vint32(9,10,11,12,13,14,15),
37  combos3=cms.vint32(5,6,7),
38  combos2=cms.vint32(3),
39  combos1=cms.vint32(), #for future possible usage
40 
41  useOfflineAlgo = cms.bool(False),
42 
43  mScatteringPhi = cms.vdouble(2.49e-3,5.47e-5,3.49e-5,1.37e-5),
44  mScatteringPhiB = cms.vdouble(7.22e-3,3.461e-3,4.447e-3,4.12e-3),
45  pointResolutionPhi = cms.double(1.),
46  pointResolutionPhiB = cms.double(500.),
47  pointResolutionPhiBH = cms.vdouble(151., 173., 155., 153.),
48  pointResolutionPhiBL = cms.vdouble(17866., 19306., 23984., 23746.),
49  pointResolutionVertex = cms.double(1.)
50 )
51 
52 
53 
54 simKBmtfDigis = cms.EDProducer("L1TMuonBarrelKalmanTrackProducer",
55  src = cms.InputTag("simKBmtfStubs"),
56  bx = cms.vint32(-2,-1,0,1,2),
57 # bx = cms.vint32(0),
58  algoSettings = bmtfKalmanTrackingSettings,
59  trackFinderSettings = cms.PSet(
60  sectorsToProcess = cms.vint32(0,1,2,3,4,5,6,7,8,9,10,11),
61  verbose = cms.int32(0),
62  sectorSettings = cms.PSet(
63 # verbose = cms.int32(1),
64  verbose = cms.int32(0),
65  wheelsToProcess = cms.vint32(-2,-1,0,1,2),
66  regionSettings = cms.PSet(
67  verbose=cms.int32(0)
68  )
69  )
70 
71  )
72 )