Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-05-05 02:47:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hgcalHitCalibrationDefault = cms.EDProducer('HGCalHitCalibration',
0004   debug = cms.int32(0),
0005   rawRecHits = cms.bool(True),
0006   detector = cms.string('all'),
0007   depletionFine = cms.int32(120),
0008   caloParticles = cms.InputTag('mix', 'MergedCaloTruth'),
0009   recHitsEE = cms.InputTag('HGCalRecHit', 'HGCEERecHits'),
0010   recHitsFH = cms.InputTag('HGCalRecHit', 'HGCHEFRecHits'),
0011   recHitsBH = cms.InputTag('HGCalRecHit', 'HGCHEBRecHits'),
0012   hgcalMultiClusters = cms.InputTag('particleFlowClusterHGCal'),
0013   electrons = cms.InputTag('ecalDrivenGsfElectronsHGC'),
0014   photons = cms.InputTag('photonsHGC'),
0015   mightGet = cms.optional.untracked.vstring
0016 )