CMS 3D CMS Logo

TrackerSimHits_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TrackerSimHitsBlock = cms.PSet(
4  TrackerSimHits = cms.PSet(
5  # Smallest charged particle pT for which SimHit's are saved (GeV/c)
6  pTmin = cms.untracked.double(0.2),
7  # Save SimHit's only for the first loop
8  firstLoop = cms.untracked.bool(True)
9  )
10 )
11 
12 #
13 # Modify for running in Run 2
14 #
15 from Configuration.Eras.Modifier_run2_common_cff import run2_common
16 run2_common.toModify( TrackerSimHitsBlock.TrackerSimHits, pTmin = 0.1 )