CMS 3D CMS Logo

fakeEmtfParams_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 emtfParamsSource = cms.ESSource(
4  "EmptyESSource",
5  recordName = cms.string('L1TMuonEndcapParamsRcd'),
6  iovIsRunNotTime = cms.bool(True),
7  firstValid = cms.vuint32(1)
8 )
9 
10 ##EMTF ESProducer. Fills CondFormats from XML files.
11 emtfParams = cms.ESProducer(
12  "L1TMuonEndCapParamsESProducer",
13  PtAssignVersion = cms.int32(4),
14  firmwareVersion = cms.int32(50),
15  St1MatchWindow = cms.int32(15),
16  St2MatchWindow = cms.int32(15),
17  St3MatchWindow = cms.int32(7),
18  St4MatchWindow = cms.int32(7)
19 )
20 
21 
22 
23 emtfForestsSource = cms.ESSource(
24  "EmptyESSource",
25  recordName = cms.string('L1TMuonEndCapForestRcd'),
26  iovIsRunNotTime = cms.bool(True),
27  firstValid = cms.vuint32(1)
28 )
29 
30 ##EMTF ESProducer. Fills CondFormats from XML files.
31 emtfForests = cms.ESProducer(
32  "L1TMuonEndCapForestESProducer",
33 )
34 
35 
36 
37