CMS 3D CMS Logo

fakeEmtfParams_empty_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 from CondCore.CondDB.CondDB_cfi import CondDB
5 CondDB.connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS")
6 
7 
8 
9 emtfParamsSource = cms.ESSource(
10  "EmptyESSource",
11  recordName = cms.string('L1TMuonEndCapParamsRcd'),
12  iovIsRunNotTime = cms.bool(True),
13  firstValid = cms.vuint32(1)
14  )
15 
16 emtfParams = cms.ESProducer(
17  "L1TMuonEndCapParamsESProducer",
18 
21  PtAssignVersion = cms.int32(7),
22 
25  FirmwareVersion = cms.int32(123456),
26 
28  PrimConvVersion = cms.int32(1)
29  )
30 
31 
32 
33 emtfForestsSource = cms.ESSource(
34  "EmptyESSource",
35  recordName = cms.string('L1TMuonEndCapForestRcd'),
36  iovIsRunNotTime = cms.bool(True),
37  firstValid = cms.vuint32(1)
38  )
39 
40 
41 emtfForests = cms.ESProducer(
42  "L1TMuonEndCapForestESProducer",
43  PtAssignVersion = cms.int32(7),
44  bdtXMLDir = cms.string("2017_v7")
45  )