File indexing completed on 2024-04-06 12:01:11
0001 import FWCore.ParameterSet.Config as cms
0002
0003 PFCandAssoMap = cms.EDProducer('PFCand_AssoMap',
0004
0005
0006
0007 AssociationType = cms.InputTag('Both'),
0008
0009
0010 MaxNumberOfAssociations = cms.int32(1),
0011
0012
0013 PFCandidateCollection = cms.InputTag('particleFlow'),
0014 VertexCollection = cms.InputTag('offlinePrimaryVertices'),
0015
0016
0017 BeamSpot = cms.InputTag('offlineBeamSpot'),
0018
0019
0020 doReassociation = cms.bool(True),
0021 GetCleanedCollections = cms.bool(False),
0022
0023
0024 ConversionsCollection = cms.InputTag('allConversions'),
0025
0026
0027 V0KshortCollection = cms.InputTag('generalV0Candidates','Kshort'),
0028 V0LambdaCollection = cms.InputTag('generalV0Candidates','Lambda'),
0029
0030
0031 NIVertexCollection = cms.InputTag('particleFlowDisplacedVertex'),
0032
0033
0034
0035
0036
0037 FinalAssociation = cms.untracked.int32(1),
0038
0039
0040 ignoreMissingCollection = cms.bool(True),
0041
0042
0043 nTrackWeight = cms.double(0.001),
0044
0045 )
0046
0047 PFCandAssoMapJJetMet = cms.EDProducer('PFCand_AssoMap',
0048
0049
0050
0051 AssociationType = cms.InputTag('Both'),
0052
0053
0054 MaxNumberOfAssociations = cms.int32(1),
0055
0056
0057 PFCandidateCollection = cms.InputTag('particleFlow'),
0058 VertexCollection = cms.InputTag('offlinePrimaryVertices'),
0059
0060
0061 BeamSpot = cms.InputTag('offlineBeamSpot'),
0062
0063
0064 doReassociation = cms.bool(False),
0065 GetCleanedCollections = cms.bool(False),
0066
0067
0068 ConversionsCollection = cms.InputTag('allConversions'),
0069
0070
0071 V0KshortCollection = cms.InputTag('generalV0Candidates','Kshort'),
0072 V0LambdaCollection = cms.InputTag('generalV0Candidates','Lambda'),
0073
0074
0075 NIVertexCollection = cms.InputTag('particleFlowDisplacedVertex'),
0076
0077
0078
0079
0080
0081 FinalAssociation = cms.untracked.int32(0),
0082
0083
0084 ignoreMissingCollection = cms.bool(True),
0085
0086
0087 nTrackWeight = cms.double(0.),
0088
0089 )
0090
0091 PFCandAssoMapMuoEgm = cms.EDProducer('PFCand_AssoMap',
0092
0093
0094
0095 AssociationType = cms.InputTag('Both'),
0096
0097
0098 MaxNumberOfAssociations = cms.int32(1),
0099
0100
0101 PFCandidateCollection = cms.InputTag('particleFlow'),
0102 VertexCollection = cms.InputTag('offlinePrimaryVertices'),
0103
0104
0105 BeamSpot = cms.InputTag('offlineBeamSpot'),
0106
0107
0108 doReassociation = cms.bool(False),
0109 GetCleanedCollections = cms.bool(False),
0110
0111
0112 ConversionsCollection = cms.InputTag('allConversions'),
0113
0114
0115 V0KshortCollection = cms.InputTag('generalV0Candidates','Kshort'),
0116 V0LambdaCollection = cms.InputTag('generalV0Candidates','Lambda'),
0117
0118
0119 NIVertexCollection = cms.InputTag('particleFlowDisplacedVertex'),
0120
0121
0122
0123
0124
0125 FinalAssociation = cms.untracked.int32(1),
0126
0127
0128 ignoreMissingCollection = cms.bool(True),
0129
0130
0131 nTrackWeight = cms.double(0.),
0132
0133 )
0134
0135
0136
0137 PFCands2Vertex = PFCandAssoMap.clone(
0138
0139
0140
0141 AssociationType = 'PFCandsToVertex',
0142 )