CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonAlignmentPreFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 MuonAlignmentPreFilter = cms.EDFilter("MuonAlignmentPreFilter",
4  tracksTag = cms.InputTag("ALCARECOMuAlCalIsolatedMu:GlobalMuon"),
5  minTrackPt = cms.double(20.),
6  minTrackP = cms.double(0.),
7  minTrackerHits = cms.int32(10),
8  minDTHits = cms.int32(6),
9  minCSCHits = cms.int32(4),
10  allowTIDTEC = cms.bool(True),
11  minTrackEta = cms.double(-2.4),
12  maxTrackEta = cms.double(2.4)
13 )
14