CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HGCalRecHit_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 # HGCAL rechit producer
5 HGCalRecHit = cms.EDProducer(
6  "HGCalRecHitProducer",
7  HGCEErechitCollection = cms.string('HGCEERecHits'),
8  HGCEEuncalibRecHitCollection = cms.InputTag("HGCalUncalibRecHit","HGCEEUncalibRecHits"),
9  HGCHEFrechitCollection = cms.string('HGCHEFRecHits'),
10  HGCHEFuncalibRecHitCollection = cms.InputTag("HGCalUncalibRecHit","HGCHEFUncalibRecHits"),
11  HGCHEBrechitCollection = cms.string('HGCHEBRecHits'),
12  HGCHEBuncalibRecHitCollection = cms.InputTag("HGCalUncalibRecHit","HGCHEBUncalibRecHits"),
13 
14  # digi constants
15  HGCEE_keV2DIGI = hgceeDigitizer.digiCfg.keV2fC,
16  HGCHEF_keV2DIGI = hgchefrontDigitizer.digiCfg.keV2fC,
17  HGCHEB_keV2DIGI = hgchebackDigitizer.digiCfg.keV2MIP,
18 
19  # algo
20  algo = cms.string("HGCalRecHitWorkerSimple")
21 
22  )