CMS 3D CMS Logo

SiStripClusterChargeCut_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 SiStripClusterChargeCutNone = cms.PSet(
4  value = cms.double(-1.0)
5 )
6 
7 SiStripClusterChargeCutTiny = cms.PSet(
8  value = cms.double(800.0)
9 )
10 
11 SiStripClusterChargeCutLoose = cms.PSet(
12  value = cms.double(1620.0)
13 )
14 
15 SiStripClusterChargeCutTight = cms.PSet(
16  value = cms.double(1945.0)
17 )
18 
19 from Configuration.Eras.Modifier_trackingLowPU_cff import trackingLowPU
20 trackingLowPU.toReplaceWith(SiStripClusterChargeCutLoose, SiStripClusterChargeCutTiny)
21 trackingLowPU.toReplaceWith(SiStripClusterChargeCutTight, SiStripClusterChargeCutTiny)