1 import FWCore.ParameterSet.Config
as cms
2 from Configuration.StandardSequences.Eras
import eras
4 SiStripClusterChargeCutNone = cms.PSet(
5 value = cms.double(-1.0)
8 SiStripClusterChargeCutTiny = cms.PSet(
9 value = cms.double(800.0)
12 SiStripClusterChargeCutLoose = cms.PSet(
13 value = cms.double(1620.0)
16 SiStripClusterChargeCutTight = cms.PSet(
17 value = cms.double(1945.0)
20 eras.trackingLowPU.toReplaceWith(SiStripClusterChargeCutLoose, SiStripClusterChargeCutTiny)
21 eras.trackingLowPU.toReplaceWith(SiStripClusterChargeCutTight, SiStripClusterChargeCutTiny)