Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:32

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltTrackClusterRemover = cms.EDProducer( "HLTTrackClusterRemoverNew",
0004    trajectories          = cms.InputTag( "hltPFlowTrackSelectionHighPurity" ),
0005    doStrip               = cms.bool( True ),
0006    doPixel               = cms.bool( True ),
0007    stripClusters         = cms.InputTag( "hltSiStripRawToClustersFacility" ),
0008    pixelClusters         = cms.InputTag( "hltSiPixelClusters" ),
0009    oldClusterRemovalInfo = cms.InputTag( "" ),
0010    Common = cms.PSet(
0011       maxChi2            = cms.double( 9.0 ),
0012       minGoodStripCharge = cms.double( 0.0) ## this value is coherent w/ any cuts apply (standard value is ~60)
0013                                             ## for more details, look @https://indico.cern.ch/getFile.py/access?contribId=1&resId=0&materialId=slides&confId=292571 (for instance)
0014    ),
0015    doStripChargeCheck = cms.bool(False),
0016 )