CMS 3D CMS Logo

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