CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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(1),
14  St1MatchWindow = cms.int32(15),
15  St2MatchWindow = cms.int32(15),
16  St3MatchWindow = cms.int32(7),
17  St4MatchWindow = cms.int32(7)
18 )
19 
20 
21 
22 emtfParamsSource = cms.ESSource(
23  "EmptyESSource",
24  recordName = cms.string('L1TMuonEndCapForestRcd'),
25  iovIsRunNotTime = cms.bool(True),
26  firstValid = cms.vuint32(1)
27 )
28 
29 ##EMTF ESProducer. Fills CondFormats from XML files.
30 emtfParams = cms.ESProducer(
31  "L1TMuonEndCapForestESProducer",
32 )
33 
34 
35 
36