CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ALCARECOSiPixelCalSingleMuon_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ##################################################################
4 # AlCaReco for track based calibration using single muon events
5 ##################################################################
7 ALCARECOSiPixelCalSingleMuonHLTFilter = hltHighLevel.clone()
8 ALCARECOSiPixelCalSingleMuonHLTFilter.andOr = True ## choose logical OR between Triggerbits
9 ALCARECOSiPixelCalSingleMuonHLTFilter.throw = False ## dont throw on unknown path names
10 ALCARECOSiPixelCalSingleMuonHLTFilter.eventSetupPathsKey = 'SiPixelCalSingleMuon'
11 
12 ##################################################################
13 # Basic track selection
14 ##################################################################
16 ALCARECOSiPixelCalSingleMuon = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone()
17 ALCARECOSiPixelCalSingleMuon.filter = True ##do not store empty events
18 ALCARECOSiPixelCalSingleMuon.applyBasicCuts = True
19 ALCARECOSiPixelCalSingleMuon.ptMin = 3.0 #GeV
20 ALCARECOSiPixelCalSingleMuon.etaMin = -3.5
21 ALCARECOSiPixelCalSingleMuon.etaMax = 3.5
22 
23 ##################################################################
24 # Loose Sequence
25 ##################################################################
26 seqALCARECOSiPixelCalSingleMuon = cms.Sequence(ALCARECOSiPixelCalSingleMuonHLTFilter+ALCARECOSiPixelCalSingleMuon)
dont throw on unknown path names