CMS 3D CMS Logo

ProducerED_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TrackerDTCProducer_params = cms.PSet (
4 
5  InputTag = cms.InputTag( "TTStubsFromPhase2TrackerDigis", "StubAccepted" ), # original TTStub selection
6  BranchAccepted = cms.string ( "StubAccepted" ), # label for prodcut with passed stubs
7  BranchLost = cms.string ( "StubLost" ), # label for prodcut with lost stubs
8  CheckHistory = cms.bool ( False ), # checks if input sample production is configured as current process
9  UseHybrid = cms.bool ( True ), # use Hybrid or TMTT as TT algorithm
10  EnableTruncation = cms.bool ( True ) # enable emulation of truncation, lost stubs are filled in BranchLost
11 
12 )