CMS 3D CMS Logo

HGCalUncalibRecHitL1Seeded_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants
3 
4 HGCalUncalibRecHitL1Seeded = cms.EDProducer("HGCalUncalibRecHitProducer",
5  HGCEEConfig = cms.PSet(
6  adcNbits = cms.uint32(10),
7  adcSaturation = cms.double(100),
8  fCPerMIP = cms.vdouble(HGCAL_reco_constants.fcPerMip[0:3]),
9  isSiFE = cms.bool(True),
10  tdcNbits = cms.uint32(12),
11  tdcOnset = cms.double(60),
12  tdcSaturation = cms.double(10000),
13  tofDelay = cms.double(-9),
14  toaLSB_ns = cms.double(0.0244)
15  ),
16  HGCEEdigiCollection = cms.InputTag("hgcalDigisL1Seeded","EE"),
17  HGCEEhitCollection = cms.string('HGCEEUncalibRecHits'),
18  HGCHEBConfig = cms.PSet(
19  adcNbits = cms.uint32(10),
20  adcSaturation = cms.double(68.75),
21  fCPerMIP = cms.vdouble(1.0, 1.0, 1.0),
22  isSiFE = cms.bool(True),
23  tdcNbits = cms.uint32(12),
24  tdcOnset = cms.double(55),
25  tdcSaturation = cms.double(1000),
26  tofDelay = cms.double(-14),
27  toaLSB_ns = cms.double(0.0244)
28  ),
29  HGCHEBdigiCollection = cms.InputTag("hgcalDigisL1Seeded","HEback"),
30  HGCHEBhitCollection = cms.string('HGCHEBUncalibRecHits'),
31  HGCHEFConfig = cms.PSet(
32  adcNbits = cms.uint32(10),
33  adcSaturation = cms.double(100),
34  fCPerMIP = cms.vdouble(HGCAL_reco_constants.fcPerMip[3:6]),
35  isSiFE = cms.bool(True),
36  tdcNbits = cms.uint32(12),
37  tdcOnset = cms.double(60),
38  tdcSaturation = cms.double(10000),
39  tofDelay = cms.double(-11),
40  toaLSB_ns = cms.double(0.0244)
41  ),
42  HGCHEFdigiCollection = cms.InputTag("hgcalDigisL1Seeded","HEfront"),
43  HGCHEFhitCollection = cms.string('HGCHEFUncalibRecHits'),
44  HGCHFNoseConfig = cms.PSet(
45  adcNbits = cms.uint32(10),
46  adcSaturation = cms.double(100),
47  fCPerMIP = cms.vdouble(1.25, 2.57, 3.88),
48  isSiFE = cms.bool(False),
49  tdcNbits = cms.uint32(12),
50  tdcOnset = cms.double(60),
51  tdcSaturation = cms.double(10000),
52  tofDelay = cms.double(-33),
53  toaLSB_ns = cms.double(0.0244)
54  ),
55  HGCHFNosedigiCollection = cms.InputTag("hfnoseDigis","HFNose"),
56  HGCHFNosehitCollection = cms.string('HGCHFNoseUncalibRecHits'),
57  algo = cms.string('HGCalUncalibRecHitWorkerWeights')
58 )