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  signalMVAValues = cms.InputTag("generalTracksBeforeMixing","MVAVals"),
12  pileUpTracks = cms.InputTag("generalTracksBeforeMixing"),
13  pileUpMVAValues = cms.InputTag("generalTracksBeforeMixing","MVAVals"),
14 
15  outputLabel = cms.string("generalTracks"),
16  MVAOutputLabel = cms.string("generalTracksMVAVals"),
17 
18  accumulatorType = cms.string("RecoTrackAccumulator"),
19  makeDigiSimLinks = cms.untracked.bool(False)
20 
21  )
22