Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # HFEMClusterShape producer
0004 hfEMClusters = cms.EDProducer("HFEMClusterProducer",
0005                               hits = cms.InputTag("hfreco"),
0006                               minTowerEnergy = cms.double(4.0),
0007                               seedThresholdET = cms.double(5.0),
0008                               maximumSL = cms.double(98),
0009                               maximumRenergy  = cms.double(50),                    
0010                               usePMTFlag = cms.bool(True),
0011                               forcePulseFlagMC=cms.bool(False),
0012                               usePulseFlag = cms.bool(True),
0013                               correctionType = cms.int32(1)
0014                               )