CMS 3D CMS Logo

hltTrackClusterRemoverNew_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltTrackClusterRemover = cms.EDProducer( "HLTTrackClusterRemoverNew",
4  trajectories = cms.InputTag( "hltPFlowTrackSelectionHighPurity" ),
5  doStrip = cms.bool( True ),
6  doPixel = cms.bool( True ),
7  stripClusters = cms.InputTag( "hltSiStripRawToClustersFacility" ),
8  pixelClusters = cms.InputTag( "hltSiPixelClusters" ),
9  oldClusterRemovalInfo = cms.InputTag( "" ),
10  Common = cms.PSet(
11  maxChi2 = cms.double( 9.0 ),
12  minGoodStripCharge = cms.double( 0.0) ## this value is coherent w/ any cuts apply (standard value is ~60)
13  ## for more details, look @https://indico.cern.ch/getFile.py/access?contribId=1&resId=0&materialId=slides&confId=292571 (for instance)
14  ),
15  doStripChargeCheck = cms.bool(False),
16 )