-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44552 from felicepantaleo/hgcalHLTfix
HLT phase-2: fix HGCAL Layercluster and create common constants configuration for HGCAL
- Loading branch information
Showing
11 changed files
with
160 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 17 additions & 38 deletions
55
HLTrigger/Configuration/python/HLT_75e33/modules/hgcalLayerClustersEEL1Seeded_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,36 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants | ||
|
||
hgcalLayerClustersEEL1Seeded = cms.EDProducer("HGCalLayerClusterProducer", | ||
detector = cms.string('EE'), | ||
mightGet = cms.optional.untracked.vstring, | ||
nHitsTime = cms.uint32(3), | ||
plugin = cms.PSet( | ||
dEdXweights = cms.vdouble( | ||
0.0, 8.894541, 10.937907, 10.937907, 10.937907, | ||
10.937907, 10.937907, 10.937907, 10.937907, 10.937907, | ||
10.932882, 10.932882, 10.937907, 10.937907, 10.938169, | ||
10.938169, 10.938169, 10.938169, 10.938169, 10.938169, | ||
10.938169, 10.938169, 10.938169, 10.938169, 10.938169, | ||
10.938169, 10.938169, 10.938169, 32.332097, 51.574301, | ||
51.444192, 51.444192, 51.444192, 51.444192, 51.444192, | ||
51.444192, 51.444192, 51.444192, 51.444192, 51.444192, | ||
69.513118, 87.582044, 87.582044, 87.582044, 87.582044, | ||
87.582044, 87.214571, 86.888309, 86.92952, 86.92952, | ||
86.92952 | ||
dEdXweights = HGCAL_reco_constants.dEdXweights, | ||
deltac = cms.vdouble( | ||
1.3, | ||
1.3, | ||
1.3, | ||
0.0315 | ||
), | ||
deltac = cms.vdouble(1.3, 1.3, 1.3, 0.0315), | ||
deltasi_index_regemfac = cms.int32(3), | ||
dependSensor = cms.bool(True), | ||
ecut = cms.double(3), | ||
fcPerEle = cms.double(0), | ||
fcPerMip = cms.vdouble( | ||
2.06, 3.43, 5.15, 2.06, 3.43, | ||
5.15 | ||
), | ||
fcPerEle = HGCAL_reco_constants.fcPerEle, | ||
fcPerMip = HGCAL_reco_constants.fcPerMip, | ||
kappa = cms.double(9), | ||
maxNumberOfThickIndices = cms.uint32(6), | ||
noiseMip = cms.PSet( | ||
noise_MIP = cms.double(0.01), | ||
referenceIdark = cms.double(-1), | ||
referenceXtalk = cms.double(-1), | ||
scaleByDose = cms.bool(False), | ||
scaleByDoseAlgo = cms.uint32(0), | ||
scaleByDoseFactor = cms.double(1) | ||
), | ||
noises = cms.vdouble( | ||
2000.0, 2400.0, 2000.0, 2000.0, 2400.0, | ||
2000.0 | ||
), | ||
positionDeltaRho2 = cms.double(1.69), | ||
sciThicknessCorrection = cms.double(0.9), | ||
thicknessCorrection = cms.vdouble( | ||
0.77, 0.77, 0.77, 0.84, 0.84, | ||
0.84 | ||
), | ||
thresholdW0 = cms.vdouble(2.9, 2.9, 2.9), | ||
maxNumberOfThickIndices = HGCAL_reco_constants.maxNumberOfThickIndices, | ||
noiseMip = HGCAL_reco_constants.noiseMip, | ||
noises = HGCAL_reco_constants.noises, | ||
positionDeltaRho2 = HGCAL_reco_constants.positionDeltaRho2, | ||
sciThicknessCorrection = HGCAL_reco_constants.sciThicknessCorrection, | ||
thicknessCorrection = HGCAL_reco_constants.thicknessCorrection, | ||
thresholdW0 = HGCAL_reco_constants.thresholdW0, | ||
type = cms.string('SiCLUE'), | ||
use2x2 = cms.bool(True), | ||
verbosity = cms.untracked.uint32(3) | ||
), | ||
recHits = cms.InputTag("hltRechitInRegionsHGCAL","HGCEERecHits"), | ||
timeClname = cms.string('timeLayerCluster') | ||
) | ||
|
54 changes: 16 additions & 38 deletions
54
HLTrigger/Configuration/python/HLT_75e33/modules/hgcalLayerClustersEE_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 17 additions & 38 deletions
55
HLTrigger/Configuration/python/HLT_75e33/modules/hgcalLayerClustersHSciL1Seeded_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,36 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants | ||
|
||
hgcalLayerClustersHSciL1Seeded = cms.EDProducer("HGCalLayerClusterProducer", | ||
detector = cms.string('BH'), | ||
mightGet = cms.optional.untracked.vstring, | ||
nHitsTime = cms.uint32(3), | ||
plugin = cms.PSet( | ||
dEdXweights = cms.vdouble( | ||
0.0, 8.894541, 10.937907, 10.937907, 10.937907, | ||
10.937907, 10.937907, 10.937907, 10.937907, 10.937907, | ||
10.932882, 10.932882, 10.937907, 10.937907, 10.938169, | ||
10.938169, 10.938169, 10.938169, 10.938169, 10.938169, | ||
10.938169, 10.938169, 10.938169, 10.938169, 10.938169, | ||
10.938169, 10.938169, 10.938169, 32.332097, 51.574301, | ||
51.444192, 51.444192, 51.444192, 51.444192, 51.444192, | ||
51.444192, 51.444192, 51.444192, 51.444192, 51.444192, | ||
69.513118, 87.582044, 87.582044, 87.582044, 87.582044, | ||
87.582044, 87.214571, 86.888309, 86.92952, 86.92952, | ||
86.92952 | ||
dEdXweights = HGCAL_reco_constants.dEdXweights, | ||
deltac = cms.vdouble( | ||
1.3, | ||
1.3, | ||
1.3, | ||
0.0315 | ||
), | ||
deltac = cms.vdouble(1.3, 1.3, 1.3, 0.0315), | ||
deltasi_index_regemfac = cms.int32(3), | ||
dependSensor = cms.bool(True), | ||
ecut = cms.double(3), | ||
fcPerEle = cms.double(0), | ||
fcPerMip = cms.vdouble( | ||
2.06, 3.43, 5.15, 2.06, 3.43, | ||
5.15 | ||
), | ||
fcPerEle = HGCAL_reco_constants.fcPerEle, | ||
fcPerMip = HGCAL_reco_constants.fcPerMip, | ||
kappa = cms.double(9), | ||
maxNumberOfThickIndices = cms.uint32(6), | ||
noiseMip = cms.PSet( | ||
noise_MIP = cms.double(0.01), | ||
referenceIdark = cms.double(-1), | ||
referenceXtalk = cms.double(-1), | ||
scaleByDose = cms.bool(False), | ||
scaleByDoseAlgo = cms.uint32(0), | ||
scaleByDoseFactor = cms.double(1) | ||
), | ||
noises = cms.vdouble( | ||
2000.0, 2400.0, 2000.0, 2000.0, 2400.0, | ||
2000.0 | ||
), | ||
positionDeltaRho2 = cms.double(1.69), | ||
sciThicknessCorrection = cms.double(0.9), | ||
thicknessCorrection = cms.vdouble( | ||
0.77, 0.77, 0.77, 0.84, 0.84, | ||
0.84 | ||
), | ||
thresholdW0 = cms.vdouble(2.9, 2.9, 2.9), | ||
maxNumberOfThickIndices = HGCAL_reco_constants.maxNumberOfThickIndices, | ||
noiseMip = HGCAL_reco_constants.noiseMip, | ||
noises = HGCAL_reco_constants.noises, | ||
positionDeltaRho2 = HGCAL_reco_constants.positionDeltaRho2, | ||
sciThicknessCorrection = HGCAL_reco_constants.sciThicknessCorrection, | ||
thicknessCorrection = HGCAL_reco_constants.thicknessCorrection, | ||
thresholdW0 = HGCAL_reco_constants.thresholdW0, | ||
type = cms.string('SciCLUE'), | ||
use2x2 = cms.bool(True), | ||
verbosity = cms.untracked.uint32(3) | ||
), | ||
recHits = cms.InputTag("hltRechitInRegionsHGCAL","HGCHEBRecHits"), | ||
timeClname = cms.string('timeLayerCluster') | ||
) | ||
|
Oops, something went wrong.