1 |
#
|
2 |
# MuonCalIsolationProducer
|
3 |
# -> isolation of muons against the sum of transverse energy depositions in the calorimeter
|
4 |
#
|
5 |
module MuonCalIsolation = MuonCalIsolationProducer{
|
6 |
#
|
7 |
# Source and Swarm collection
|
8 |
#
|
9 |
InputTag src = globalMuons
|
10 |
InputTag elements = caloTowers
|
11 |
|
12 |
#
|
13 |
# selection cuts
|
14 |
#
|
15 |
double dRMin = 0.0
|
16 |
double dRMax = 0.3
|
17 |
bool PropagateToCal = true
|
18 |
|
19 |
#
|
20 |
# Propagate the source to the calorimeter:
|
21 |
# dimensions of target cylinder in cm (full tracker: r=112, z=+/- 270)
|
22 |
double CalRadius = 80. #cm
|
23 |
double CalMinZ = -270. #cm
|
24 |
double CalMaxZ = 270. #cm
|
25 |
bool IgnoreMaterial = false #Should SteppingHelixPropagator take into account material?
|
26 |
}
|