Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:20:39

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from TrackingTools.TrackAssociator.default_cfi import *
0004 
0005 
0006 # -*-TCL-*-
0007 MIsoTrackAssociatorDefault = cms.PSet(
0008     TrackAssociatorParameterBlock
0009 )
0010 MIsoTrackAssociatorTowers = cms.PSet(
0011     TrackAssociatorParameterBlock
0012 )
0013 
0014 MIsoTrackAssociatorHits = cms.PSet(
0015     TrackAssociatorParameterBlock
0016 )
0017 
0018 MIsoTrackAssociatorJets = cms.PSet(
0019     TrackAssociatorParameterBlock
0020 )
0021 
0022 MIsoTrackAssociatorDefault.TrackAssociatorParameters.useEcal = False ## RecoHits
0023 MIsoTrackAssociatorDefault.TrackAssociatorParameters.useHcal = False ## RecoHits
0024 MIsoTrackAssociatorDefault.TrackAssociatorParameters.useHO = False ## RecoHits
0025 MIsoTrackAssociatorDefault.TrackAssociatorParameters.useCalo = True ## CaloTowers
0026 MIsoTrackAssociatorDefault.TrackAssociatorParameters.useMuon = False ## RecoHits
0027 MIsoTrackAssociatorDefault.TrackAssociatorParameters.usePreshower = False
0028 MIsoTrackAssociatorDefault.TrackAssociatorParameters.dREcalPreselection = 1.0
0029 MIsoTrackAssociatorDefault.TrackAssociatorParameters.dRHcalPreselection = 1.0
0030 MIsoTrackAssociatorDefault.TrackAssociatorParameters.dREcal = 1.0
0031 MIsoTrackAssociatorDefault.TrackAssociatorParameters.dRHcal = 1.0
0032 
0033 MIsoTrackAssociatorTowers.TrackAssociatorParameters.useEcal = False ## RecoHits
0034 MIsoTrackAssociatorTowers.TrackAssociatorParameters.useHcal = False ## RecoHits
0035 MIsoTrackAssociatorTowers.TrackAssociatorParameters.useHO = False ## RecoHits
0036 MIsoTrackAssociatorTowers.TrackAssociatorParameters.useCalo = True ## CaloTowers
0037 MIsoTrackAssociatorTowers.TrackAssociatorParameters.useMuon = False ## RecoHits
0038 MIsoTrackAssociatorTowers.TrackAssociatorParameters.usePreshower = False
0039 MIsoTrackAssociatorTowers.TrackAssociatorParameters.dREcalPreselection = 1.0
0040 MIsoTrackAssociatorTowers.TrackAssociatorParameters.dRHcalPreselection = 1.0
0041 MIsoTrackAssociatorTowers.TrackAssociatorParameters.dREcal = 1.0
0042 MIsoTrackAssociatorTowers.TrackAssociatorParameters.dRHcal = 1.0
0043 
0044 MIsoTrackAssociatorHits.TrackAssociatorParameters.useEcal = True ## RecoHits
0045 MIsoTrackAssociatorHits.TrackAssociatorParameters.useHcal = True ## RecoHits
0046 MIsoTrackAssociatorHits.TrackAssociatorParameters.useHO = True ## RecoHits
0047 MIsoTrackAssociatorHits.TrackAssociatorParameters.useCalo = False ## CaloTowers
0048 MIsoTrackAssociatorHits.TrackAssociatorParameters.useMuon = False ## RecoHits
0049 MIsoTrackAssociatorHits.TrackAssociatorParameters.usePreshower = False
0050 MIsoTrackAssociatorHits.TrackAssociatorParameters.dREcalPreselection = 1.0
0051 MIsoTrackAssociatorHits.TrackAssociatorParameters.dRHcalPreselection = 1.0
0052 MIsoTrackAssociatorHits.TrackAssociatorParameters.dREcal = 1.0
0053 MIsoTrackAssociatorHits.TrackAssociatorParameters.dRHcal = 1.0
0054 
0055 MIsoTrackAssociatorJets.TrackAssociatorParameters.useEcal = False ## RecoHits
0056 MIsoTrackAssociatorJets.TrackAssociatorParameters.useHcal = False ## RecoHits
0057 MIsoTrackAssociatorJets.TrackAssociatorParameters.useHO = False ## RecoHits
0058 MIsoTrackAssociatorJets.TrackAssociatorParameters.useCalo = True ## CaloTowers
0059 MIsoTrackAssociatorJets.TrackAssociatorParameters.useMuon = False ## RecoHits
0060 MIsoTrackAssociatorJets.TrackAssociatorParameters.usePreshower = False
0061 MIsoTrackAssociatorJets.TrackAssociatorParameters.dREcalPreselection = 0.5
0062 MIsoTrackAssociatorJets.TrackAssociatorParameters.dRHcalPreselection = 0.5
0063 MIsoTrackAssociatorJets.TrackAssociatorParameters.dREcal = 0.5
0064 MIsoTrackAssociatorJets.TrackAssociatorParameters.dRHcal = 0.5
0065 
0066