CMS 3D CMS Logo

TSGFromL2_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
8 
9 hltL3TrajectorySeedFromL2 = cms.EDProducer("TSGFromL2Muon",
10  # ServiceParameters
11  MuonServiceProxy,
12  # MuonTrackingRegionBuilder and TrackerSeedCleaner should be empty for TSGForRoadSearchOI
13  # MuonTrackingRegionBuilder should be empty for TSGFromPropagation
14  #MuonTrackingRegionCommon,
15  #TrackerSeedCleanerCommon,
16  MuonTrackingRegionBuilder = cms.PSet(),
17  TrackerSeedCleaner = cms.PSet(),
18  TkSeedGenerator = TSGsBlock.TSGForRoadSearchOI,
19 
20  MuonCollectionLabel = cms.InputTag("hltL2Muons","UpdatedAtVtx"),
21  #this should not exist there !
22  PtCut = cms.double(1.0),
23  PCut = cms.double(2.5)
24 )
25 
26 
27