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 
3 # from SimCalorimetry.HGCSimProducers.hgcDigiProducers_cff import *
5 # HGCAL rechit producer
6 HGCalRecHit = cms.EDProducer("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  # digi constants
14 
15  HGCEEmipInKeV = hgceeDigitizer.digiCfg.mipInKeV,
16  HGCEElsbInMIP = hgceeDigitizer.digiCfg.lsbInMIP,
17  HGCEEmip2noise = hgceeDigitizer.digiCfg.mip2noise,
18 
19  HGCHEFmipInKeV = hgchefrontDigitizer.digiCfg.mipInKeV,
20  HGCHEFlsbInMIP = hgchefrontDigitizer.digiCfg.lsbInMIP,
21  HGCHEFmip2noise = hgchefrontDigitizer.digiCfg.mip2noise,
22 
23  HGCHEBmipInKeV = hgchebackDigitizer.digiCfg.mipInKeV,
24  HGCHEBlsbInMIP = hgchebackDigitizer.digiCfg.lsbInMIP,
25  HGCHEBmip2noise = hgchebackDigitizer.digiCfg.mip2noise,
26 
27  # algo
28  algo = cms.string("HGCalRecHitWorkerSimple")
29 
30  )