00001 import FWCore.ParameterSet.Config as cms
00002
00003 HcalNoiseParameterSet = cms.PSet(
00004
00005 minRecHitE = cms.double(1.5),
00006 minLowHitE = cms.double(10.0),
00007 minHighHitE = cms.double(25.0),
00008
00009
00010 pMinERatio = cms.double(25.0),
00011 pMinEZeros = cms.double(5.0),
00012 pMinEEMF = cms.double(10.0),
00013
00014
00015 minERatio = cms.double(50.0),
00016 minEZeros = cms.double(10.0),
00017 minEEMF = cms.double(50.0),
00018
00019
00020 pMinE = cms.double(40.0),
00021 pMinRatio = cms.double(0.75),
00022 pMaxRatio = cms.double(0.85),
00023 pMinHPDHits = cms.int32(10),
00024 pMinRBXHits = cms.int32(20),
00025 pMinHPDNoOtherHits = cms.int32(7),
00026 pMinZeros = cms.int32(4),
00027 pMinLowEHitTime = cms.double(-6.0),
00028 pMaxLowEHitTime = cms.double(6.0),
00029 pMinHighEHitTime = cms.double(-4.0),
00030 pMaxHighEHitTime = cms.double(5.0),
00031 pMaxHPDEMF = cms.double(0.02),
00032 pMaxRBXEMF = cms.double(0.02),
00033
00034
00035 lMinRatio = cms.double(0.70),
00036 lMaxRatio = cms.double(0.96),
00037 lMinHPDHits = cms.int32(17),
00038 lMinRBXHits = cms.int32(999),
00039 lMinHPDNoOtherHits = cms.int32(10),
00040 lMinZeros = cms.int32(10),
00041 lMinLowEHitTime = cms.double(-9999.0),
00042 lMaxLowEHitTime = cms.double(9999.0),
00043 lMinHighEHitTime = cms.double(-9999.0),
00044 lMaxHighEHitTime = cms.double(9999.0),
00045
00046
00047 tMinRatio = cms.double(0.73),
00048 tMaxRatio = cms.double(0.92),
00049 tMinHPDHits = cms.int32(16),
00050 tMinRBXHits = cms.int32(50),
00051 tMinHPDNoOtherHits = cms.int32(9),
00052 tMinZeros = cms.int32(8),
00053 tMinLowEHitTime = cms.double(-9999.0),
00054 tMaxLowEHitTime = cms.double(9999.0),
00055 tMinHighEHitTime = cms.double(-7.0),
00056 tMaxHighEHitTime = cms.double(6.0),
00057
00058
00059 hlMaxHPDEMF = cms.double(-9999.0),
00060 hlMaxRBXEMF = cms.double(0.01),
00061
00062
00063 TS4TS5EnergyThreshold = cms.double(50),
00064 TS4TS5UpperThreshold = cms.vdouble(70, 90, 100, 400, 4000),
00065 TS4TS5UpperCut = cms.vdouble(1, 0.8, 0.75, 0.72, 0.72),
00066 TS4TS5LowerThreshold = cms.vdouble(100, 120, 150, 200, 300, 400, 500),
00067 TS4TS5LowerCut = cms.vdouble(-1, -0.7, -0.4, -0.2, -0.08, 0, 0.1)
00068 )
00069
00070
00071 hcalnoise = cms.EDProducer(
00072 'HcalNoiseInfoProducer',
00073
00074
00075 HcalNoiseParameterSet,
00076
00077
00078 fillDigis = cms.bool(True),
00079 fillRecHits = cms.bool(True),
00080 fillCaloTowers = cms.bool(True),
00081 fillTracks = cms.bool(True),
00082
00083
00084
00085
00086 maxProblemRBXs = cms.int32(20),
00087
00088
00089 maxCaloTowerIEta = cms.int32(20),
00090 maxTrackEta = cms.double(2.0),
00091 minTrackPt = cms.double(1.0),
00092
00093
00094 digiCollName = cms.string('hcalDigis'),
00095 recHitCollName = cms.string('hbhereco'),
00096 caloTowerCollName = cms.string('towerMaker'),
00097 trackCollName = cms.string('generalTracks'),
00098
00099
00100 HcalAcceptSeverityLevel = cms.uint32(9),
00101 )