CMS 3D CMS Logo

MuonCalIsolation_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # MuonCalIsolationProducer
00005 # -> isolation of muons against the sum of transverse energy depositions in the calorimeter 
00006 #   
00007 MuonCalIsolation = cms.EDProducer("MuonCalIsolationProducer",
00008     #
00009     # Source and Swarm collection
00010     #
00011     src = cms.InputTag("globalMuons"),
00012     elements = cms.InputTag("towerMaker"),
00013     #
00014     # Propagate the source to the calorimeter:
00015     # dimensions of target cylinder in cm (full tracker: r=112, z=+/- 270)
00016     CalRadius = cms.double(112.0),
00017     dRMax = cms.double(0.3),
00018     IgnoreMaterial = cms.bool(False), ##Should SteppingHelixPropagator take into account material?
00019 
00020     PropagateToCal = cms.bool(False),
00021     CalMaxZ = cms.double(270.0), ##cm
00022 
00023     #
00024     # selection cuts
00025     #
00026     dRMin = cms.double(0.0),
00027     CalMinZ = cms.double(-270.0) ##cm
00028 
00029 )
00030 
00031 

Generated on Tue Jun 9 17:41:11 2009 for CMSSW by  doxygen 1.5.4