Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-21 04:46:33

0001 import FWCore.ParameterSet.Config as cms
0002 from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants
0003 
0004 hltHGCalUncalibRecHitL1Seeded = cms.EDProducer("HGCalUncalibRecHitProducer",
0005     HGCEEConfig = cms.PSet(
0006         adcNbits = cms.uint32(10),
0007         adcSaturation = cms.double(100),
0008         fCPerMIP = cms.vdouble(HGCAL_reco_constants.fcPerMip[0:3]),
0009         isSiFE = cms.bool(True),
0010         tdcNbits = cms.uint32(12),
0011         tdcOnset = cms.double(60),
0012         tdcSaturation = cms.double(10000),
0013         toaLSB_ns = cms.double(0.0244),
0014         tofDelay = cms.double(-9)
0015     ),
0016     HGCEEdigiCollection = cms.InputTag("hltHgcalDigisL1Seeded","EE"),
0017     HGCEEhitCollection = cms.string('HGCEEUncalibRecHits'),
0018     HGCHEBConfig = cms.PSet(
0019         adcNbits = cms.uint32(10),
0020         adcSaturation = cms.double(68.75),
0021         fCPerMIP = cms.vdouble(1.0, 1.0, 1.0),
0022         isSiFE = cms.bool(True),
0023         tdcNbits = cms.uint32(12),
0024         tdcOnset = cms.double(55),
0025         tdcSaturation = cms.double(1000),
0026         toaLSB_ns = cms.double(0.0244),
0027         tofDelay = cms.double(-14)
0028     ),
0029     HGCHEBdigiCollection = cms.InputTag("hltHgcalDigisL1Seeded","HEback"),
0030     HGCHEBhitCollection = cms.string('HGCHEBUncalibRecHits'),
0031     HGCHEFConfig = cms.PSet(
0032         adcNbits = cms.uint32(10),
0033         adcSaturation = cms.double(100),
0034         fCPerMIP = cms.vdouble(HGCAL_reco_constants.fcPerMip[3:6]),
0035         isSiFE = cms.bool(True),
0036         tdcNbits = cms.uint32(12),
0037         tdcOnset = cms.double(60),
0038         tdcSaturation = cms.double(10000),
0039         toaLSB_ns = cms.double(0.0244),
0040         tofDelay = cms.double(-11)
0041     ),
0042     HGCHEFdigiCollection = cms.InputTag("hltHgcalDigisL1Seeded","HEfront"),
0043     HGCHEFhitCollection = cms.string('HGCHEFUncalibRecHits'),
0044     HGCHFNoseConfig = cms.PSet(
0045         adcNbits = cms.uint32(10),
0046         adcSaturation = cms.double(100),
0047         fCPerMIP = cms.vdouble(1.25, 2.57, 3.88),
0048         isSiFE = cms.bool(False),
0049         tdcNbits = cms.uint32(12),
0050         tdcOnset = cms.double(60),
0051         tdcSaturation = cms.double(10000),
0052         toaLSB_ns = cms.double(0.0244),
0053         tofDelay = cms.double(-33)
0054     ),
0055     HGCHFNosedigiCollection = cms.InputTag("hfnoseDigis","HFNose"),
0056     HGCHFNosehitCollection = cms.string('HGCHFNoseUncalibRecHits'),
0057     computeLocalTime = cms.bool(False),
0058     algo = cms.string('HGCalUncalibRecHitWorkerWeights')
0059 )
0060 
0061 from Configuration.ProcessModifiers.ticl_v5_cff import ticl_v5
0062 ticl_v5.toModify(hltHGCalUncalibRecHitL1Seeded, computeLocalTime = cms.bool(True))