CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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 
22 
23 
24 MinBiasSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
25  applyBasicCuts = True,
26  filter = True,
27  src = 'ALCARECOTkAlMinBias',
28  ptMin = 5.,
29  pMin = 9.,
30  etaMin = -999.,
31  etaMax = 999.,
32  d0Min = -2.,
33  d0Max = 2.,
34  dzMin = -25.,
35  dzMax = 25.,
36  nHitMin = 12,
37  nHitMin2D = 2,
38 )
39 
40 
41 
42 MuSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
43  applyBasicCuts = True,
44  filter = True,
45  src = 'ALCARECOTkAlMuonIsolated',
46  #~ src = 'ALCARECOTkAlZMuMu',
47  ptMin = 17.,
48  pMin = 17.,
49  etaMin = -2.5,
50  etaMax = 2.5,
51  d0Min = -2.,
52  d0Max = 2.,
53  dzMin = -25.,
54  dzMax = 25.,
55  nHitMin = 6,
56  nHitMin2D = 0,
57 )
58 
59 
60 #MuSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
61 # #filter = True, ##do not store empty events
62 # applyBasicCuts = True,
63 # src = 'ALCARECOTkAlMuonIsolated',
64 # ptMin = 2.0, ##GeV
65 # etaMin = -3.5,
66 # etaMax = 3.5,
67 # nHitMin = 1,
68 #)
69 
70 
71 
dont throw on unknown path names