CMS 3D CMS Logo

calomuons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # MuonCaloCompatibility
6 calomuons = cms.EDProducer("CaloMuonProducer",
7  # TrackDetectorAssociator
8  TrackAssociatorParameterBlock,
9  MuonCaloCompatibilityBlock,
10  inputCollection = cms.InputTag("muons1stStep"),
11  inputMuons = cms.InputTag("muons1stStep"),
12  inputTracks = cms.InputTag("generalTracks"),
13  minCaloCompatibility = cms.double(0.6),
14  minPt = cms.double(1.0)
15 )
16 
17 
18