CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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.StandardSequences.Eras import eras
16 eras.run2_common.toModify( TrackerSimHitsBlock.TrackerSimHits, pTmin = 0.1 )