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 FirstVertexTracks = cms.EDProducer('PF_PU_FirstVertexTracks',           
0004      
0005       #Choose which map should be created
0006       #"VertexToTracks", "TracksToVertex" or "Both"
0007       AssociationType = cms.InputTag('Both'),   
0008      
0009       #The input parameter for the association maps
0010       AssociationMap = cms.InputTag('AssociationMaps'),         
0011      
0012       #The input parameter for the track & vertex collection
0013       TrackCollection = cms.InputTag('generalTracks'),     
0014       VertexCollection = cms.InputTag('offlinePrimaryVertices<'),
0015        
0016       #The minimum quality an association should have 
0017       #so that the track is inserted into the track collection
0018       MinQuality = cms.int32(2),
0019 )