Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 simHcalTTPDigis = cms.EDProducer("HcalTTPDigiProducer",
0004     HFDigiCollection = cms.InputTag( 'simHcalDigis' ),
0005     HFSoI            = cms.int32( 4 ),
0006     maskedChannels   = cms.vuint32( ),
0007     id               = cms.untracked.int32( 101 ),
0008     samples          = cms.int32( 5 ), 
0009     presamples       = cms.int32( 2 ), 
0010     fwAlgorithm      = cms.int32( 1 ), 
0011     defTT8           = cms.string("hits>=2"), 
0012     defTT9           = cms.string("hits>=2:hfp>=1:hfm>=1"), 
0013     defTT10          = cms.string("hits>=3:hfp>=1:hfm>=1"),
0014     defTTLocal       = cms.string("hits>=4"),
0015     iEtaMin          = cms.int32( 33 ), 
0016     iEtaMax          = cms.int32( 41 ),
0017     threshold        = cms.uint32( 2 )
0018 )