Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:00:58

0001 #######################
0002 # pset that configures the track accumulator, used in the MixingModules to mix reconstructed tracks
0003 # author: Lukas Vanelderen
0004 # date:   Jan 21 2015
0005 #######################
0006 
0007 import FWCore.ParameterSet.Config as cms
0008 
0009 recoTrackAccumulator = cms.PSet(
0010     signalTracks = cms.InputTag("generalTracksBeforeMixing"),
0011     pileUpTracks = cms.InputTag("generalTracksBeforeMixing"),
0012 
0013     outputLabel = cms.string("generalTracks"),
0014     
0015     accumulatorType = cms.string("RecoTrackAccumulator"),
0016     makeDigiSimLinks = cms.untracked.bool(False)
0017 
0018     )