CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonCalIsolation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # MuonCalIsolationProducer
5 # -> isolation of muons against the sum of transverse energy depositions in the calorimeter
6 #
7 MuonCalIsolation = cms.EDProducer("MuonCalIsolationProducer",
8  #
9  # Source and Swarm collection
10  #
11  src = cms.InputTag("globalMuons"),
12  elements = cms.InputTag("towerMaker"),
13  #
14  # Propagate the source to the calorimeter:
15  # dimensions of target cylinder in cm (full tracker: r=112, z=+/- 270)
16  CalRadius = cms.double(112.0),
17  dRMax = cms.double(0.3),
18  IgnoreMaterial = cms.bool(False), ##Should SteppingHelixPropagator take into account material?
19 
20  PropagateToCal = cms.bool(False),
21  CalMaxZ = cms.double(270.0), ##cm
22 
23  #
24  # selection cuts
25  #
26  dRMin = cms.double(0.0),
27  CalMinZ = cms.double(-270.0) ##cm
28 
29 )
30 
31