CMS 3D CMS Logo

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