CMS 3D CMS Logo

l1tTrackerEmuHTMiss_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1tTrackerEmuHTMiss = cms.EDProducer("L1TkHTMissEmulatorProducer",
4  L1TkJetEmulationInputTag = cms.InputTag("l1tTrackJetsEmulation", "L1TrackJets"),
5  L1MHTCollectionName = cms.string("L1TrackerEmuHTMiss"),
6  jet_maxEta = cms.double(2.4),
7  jet_minPt = cms.double(3.0),
8  jet_minNtracksLowPt = cms.int32(0),
9  jet_minNtracksHighPt = cms.int32(0),
10  debug = cms.bool(False),
11  displaced = cms.bool(False)
12 )
13 
14 l1tTrackerEmuHTMissExtended = cms.EDProducer("L1TkHTMissEmulatorProducer",
15  L1TkJetEmulationInputTag = cms.InputTag("l1tTrackJetsExtendedEmulation", "L1TrackJetsExtended"),
16  L1MHTCollectionName = cms.string("L1TrackerEmuHTMissExtended"),
17  jet_maxEta = cms.double(2.4),
18  jet_minPt = cms.double(3.0),
19  jet_minNtracksLowPt = cms.int32(0),
20  jet_minNtracksHighPt = cms.int32(0),
21  debug = cms.bool(False),
22  displaced = cms.bool(True)
23 )