1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
import FWCore.ParameterSet.Config as cms
import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
##
## FILTER for high purity tracks
##
HighPuritySelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
applyBasicCuts = True,
filter = True,
src = 'ALCARECOTkAlMuonIsolated',
etaMin = -999.,
etaMax = 999.,
trackQualities = ["highPurity"],
)
## Filter for cosmics tracks
NoPuritySelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
applyBasicCuts = True,
filter = True,
src = 'ALCARECOTkAlMuonIsolated',
etaMin = -999.,
etaMax = 999.,
)
##
## Filters for skims
##
genSimSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
applyBasicCuts = True,
filter = True,
src = 'generalTracks',
ptMin = 5.,
pMin = 9.,
etaMin = -999.,
etaMax = 999.,
d0Min = -2.,
d0Max = 2.,
dzMin = -25.,
dzMax = 25.,
nHitMin = 12,
nHitMin2D = 2,
)
MinBiasSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
applyBasicCuts = True,
filter = True,
src = 'ALCARECOTkAlMinBias',
ptMin = 5.,
pMin = 9.,
etaMin = -999.,
etaMax = 999.,
d0Min = -2.,
d0Max = 2.,
dzMin = -25.,
dzMax = 25.,
nHitMin = 12,
nHitMin2D = 2,
)
MuSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
applyBasicCuts = True,
filter = True,
src = 'ALCARECOTkAlMuonIsolated',
ptMin = 17.,
pMin = 17.,
etaMin = -2.5,
etaMax = 2.5,
d0Min = -2.,
d0Max = 2.,
dzMin = -25.,
dzMax = 25.,
nHitMin = 6,
nHitMin2D = 0,
)
DoubleMuSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
applyBasicCuts = True,
filter = True,
src = 'ALCARECOTkAlZMuMu',
ptMin = 17.,
pMin = 17.,
etaMin = -2.5,
etaMax = 2.5,
d0Min = -2.,
d0Max = 2.,
dzMin = -25.,
dzMax = 25.,
nHitMin = 6,
nHitMin2D = 0,
)
CosmicsSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
applyBasicCuts = True,
filter = True,
src = 'ALCARECOTkAlCosmicsCTF0T',
etaMin = -2.5,
etaMax = 2.5,
nHitMin = 6,
nHitMin2D = 0,
)
|