Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:11

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 FirstVertexPFCandidates = cms.EDProducer('PFCand_NoPU_WithAM',              
0004      
0005       #Choose which map should be created
0006       # "VertexToPFCands", "PFCandsToVertex" or "Both"
0007       AssociationType = cms.InputTag('Both'),   
0008           
0009       #Set the Input Association Map
0010           VertexPFCandAssociationMap = cms.InputTag('PFCandAssoMap'),
0011      
0012       #Set the Input Collections
0013           VertexCollection = cms.InputTag('offlinePrimaryVertices'),
0014      
0015       #Set the minimum quality of the association
0016           MinQuality = cms.int32(2),
0017 )
0018