CMS 3D CMS Logo

fakeTwinMuxParams_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 twinmuxParamsSource = cms.ESSource("EmptyESSource",
4  recordName = cms.string('L1TTwinMuxParamsRcd'),
5  iovIsRunNotTime = cms.bool(True),
6  firstValid = cms.vuint32(1)
7 )
8 #ego
9 bmbtfParamsSource = cms.ESSource(
10  "EmptyESSource",
11  recordName = cms.string('L1TMuonBarrelParamsRcd'),
12  iovIsRunNotTime = cms.bool(True),
13  firstValid = cms.vuint32(1)
14 )
15 
16 #here
17 fakeTwinMuxParams = cms.ESProducer('L1TTwinMuxParamsESProducer',
18  fwVersion = cms.uint32(1),
19  useRpcBxForDtBelowQuality = cms.uint32(4),#correct bx only if dt ts is below
20  dphiWindowBxShift = cms.uint32(9999),
21  useOnlyRPC = cms.bool(False),#use trigger segments (ts) from rpc hit
22  useOnlyDT = cms.bool(False),# use ts from dt
23  useLowQDT = cms.bool(False),
24  CorrectDTBxwRPC = cms.bool(True),#correct bx of dt ts based on rpc
25  verbose = cms.bool(False),
26 
27 )