1 |
#
|
2 |
# MuonPtIsolationProducer
|
3 |
# -> isolation of muons against the sum of pt of tracks
|
4 |
#
|
5 |
module MuonPtIsolation = MuonPtIsolationProducer{
|
6 |
#
|
7 |
# Source and Swarm collection
|
8 |
#
|
9 |
InputTag src = globalMuons
|
10 |
InputTag elements = ctfWithMaterialTracks
|
11 |
|
12 |
|
13 |
#
|
14 |
# selection cuts
|
15 |
#
|
16 |
double dRMin = 0.0
|
17 |
double dRMax = 0.3
|
18 |
double dzMax = 20.0
|
19 |
}
|
20 |
|
21 |
|
22 |
module MuonPtIsolation05 = MuonPtIsolationProducer{
|
23 |
#
|
24 |
# Source and Swarm collection
|
25 |
#
|
26 |
InputTag src = globalMuons
|
27 |
InputTag elements = ctfWithMaterialTracks
|
28 |
|
29 |
|
30 |
#
|
31 |
# selection cuts
|
32 |
#
|
33 |
double dRMin = 0.0
|
34 |
double dRMax = 0.5
|
35 |
double dzMax = 20.0
|
36 |
}
|