CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ALCARECOSiPixelCalSingleMuonLoose_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 ALCARECOSiPixelCalSingleMuonLooseHLTFilter = hltHighLevel.clone()
8 ALCARECOSiPixelCalSingleMuonLooseHLTFilter.andOr = True ## choose logical OR between Triggerbits
9 ALCARECOSiPixelCalSingleMuonLooseHLTFilter.throw = False ## dont throw on unknown path names
10 ALCARECOSiPixelCalSingleMuonLooseHLTFilter.eventSetupPathsKey = 'SiPixelCalSingleMuon'
11 
12 ##################################################################
13 # Basic track selection
14 ##################################################################
16 ALCARECOSiPixelCalSingleMuonLoose = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone()
17 ALCARECOSiPixelCalSingleMuonLoose.filter = True ##do not store empty events
18 ALCARECOSiPixelCalSingleMuonLoose.applyBasicCuts = True
19 ALCARECOSiPixelCalSingleMuonLoose.ptMin = 3.0 #GeV
20 ALCARECOSiPixelCalSingleMuonLoose.etaMin = -3.5
21 ALCARECOSiPixelCalSingleMuonLoose.etaMax = 3.5
22 
23 ##################################################################
24 # Prescale events
25 ##################################################################
27 scalerForSiPixelCalSingleMuonLoose = CalibTracker.SiStripCommon.prescaleEvent_cfi.prescaleEvent.clone(prescale = 100)
28 
29 ##################################################################
30 # Loose Sequence
31 ##################################################################
32 seqALCARECOSiPixelCalSingleMuonLoose = cms.Sequence(ALCARECOSiPixelCalSingleMuonLooseHLTFilter+
33  scalerForSiPixelCalSingleMuonLoose+
34  ALCARECOSiPixelCalSingleMuonLoose)
dont throw on unknown path names