CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTFullRecoForSpecial_cff.py
Go to the documentation of this file.
2 
3 import copy
5 # request Pixel track finding with very low pt threshold. Even if only high-pt tracks
6 # are selected, the low-Pt might be wanted to check isolation of the high-Pt track.
7 # otherwise the ptMin here can be increased.
8 pixelTracksForMinBias = copy.deepcopy(pixelTracks)
9 #include "RecoLocalTracker/Configuration/data/RecoLocalTracker.cff"
11 import copy
13 #
14 # TriggerType filter:
15 #
16 filterTriggerType = copy.deepcopy(triggerTypeFilter)
17 # alternative to the above. Seems to work (and be a bit more efficient due to ptMin=0.2->0.075), but not properly tested yet.
18 # module pixelTracksForMinBias = pixelLowPtTracksWithZPos from "RecoPixelVertexing/PixelLowPtUtilities/data/PixelLowPtTracksWithZPos.cfi"
19 pixelTrackingForMinBias = cms.Sequence(pixelTracksForMinBias)
20 pixelTrackingForIsol = cms.Sequence(pixelTracks)
21 pixelTracksForMinBias.RegionFactoryPSet.RegionPSet.ptMin = 0.2
22 filterTriggerType.InputLabel = 'rawDataCollector'
23