Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:53

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 '''
0004 
0005 Configuration for ChargedHadron producer plugins.
0006 
0007 Author: Chriastian Veelken, LLR
0008 
0009 
0010 '''
0011 
0012 isChargedPFCandidate = cms.PSet(
0013     name = cms.string('ChargedPFCandidate'),
0014     plugin = cms.string('PFRecoTauChargedHadronStringQuality'),
0015     selection = cms.string("algoIs('kChargedPFCandidate')"),
0016     selectionPassFunction = cms.string("-pt"), # CV: give preference to highest Pt candidate
0017     selectionFailValue = cms.double(1.e+3)
0018 )
0019 
0020 isTrack = isChargedPFCandidate.clone(
0021     selection = "algoIs('kTrack')"
0022 )
0023 
0024 isPFNeutralHadron = isChargedPFCandidate.clone(
0025     selection = "algoIs('kPFNeutralHadron')"
0026 )