CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
recoTrackAccumulator_cfi.py
Go to the documentation of this file.
1 #######################
2 # pset that configures the track accumulator, used in the MixingModules to mix reconstructed tracks
3 # author: Lukas Vanelderen
4 # date: Jan 21 2015
5 #######################
6 
7 import FWCore.ParameterSet.Config as cms
8 
9 recoTrackAccumulator = cms.PSet(
10  signalTracks = cms.InputTag("generalTracksBeforeMixing"),
11  pileUpTracks = cms.InputTag("generalTracksBeforeMixing"),
12 
13  outputLabel = cms.string("generalTracks"),
14 
15  accumulatorType = cms.string("RecoTrackAccumulator"),
16  makeDigiSimLinks = cms.untracked.bool(False)
17 
18  )