Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:31

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # MuonCalIsolationProducer
0005 # -> isolation of muons against the sum of transverse energy depositions in the calorimeter 
0006 #   
0007 MuonCalIsolation = cms.EDProducer("MuonCalIsolationProducer",
0008     #
0009     # Source and Swarm collection
0010     #
0011     src = cms.InputTag("globalMuons"),
0012     elements = cms.InputTag("towerMaker"),
0013     #
0014     # Propagate the source to the calorimeter:
0015     # dimensions of target cylinder in cm (full tracker: r=112, z=+/- 270)
0016     CalRadius = cms.double(112.0),
0017     dRMax = cms.double(0.3),
0018     IgnoreMaterial = cms.bool(False), ##Should SteppingHelixPropagator take into account material?
0019 
0020     PropagateToCal = cms.bool(False),
0021     CalMaxZ = cms.double(270.0), ##cm
0022 
0023     #
0024     # selection cuts
0025     #
0026     dRMin = cms.double(0.0),
0027     CalMinZ = cms.double(-270.0) ##cm
0028 
0029 )
0030 
0031