-
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.
- Loading branch information
Showing
8 changed files
with
54 additions
and
176 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,11 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
TrackQualityParams = cms.PSet(qualityAlgorithm = cms.string("GBDT_cpp"), #None, Cut, NN, GBDT, GBDT_cpp | ||
# This emulation GBDT is optimised for the HYBRID_NEWKF emulation and works with the emulation of the KF out module | ||
TrackQualityParams = cms.PSet(# This emulation GBDT is optimised for the HYBRID_NEWKF emulation and works with the emulation of the KF out module | ||
# It is compatible with the HYBRID simulation and will give equivilant performance with this workflow | ||
ONNXmodel = cms.FileInPath("L1Trigger/TrackTrigger/data/L1_TrackQuality_GBDT_emulation_digitized.json"), | ||
# The ONNX model should be found at this path, if you want a local version of the model: | ||
# git clone https://github.com/cms-data/L1Trigger-TrackTrigger.git L1Trigger/TrackTrigger/data | ||
ONNXInputName = cms.string("feature_input"), | ||
model = cms.FileInPath("L1Trigger/TrackTrigger/data/L1_TrackQuality_GBDT_emulation_digitized.json"), | ||
#Vector of strings of training features, in the order that the model was trained with | ||
featureNames = cms.vstring(["tanl", "z0_scaled", "bendchi2_bin", "nstub", | ||
"nlaymiss_interior", "chi2rphi_bin", "chi2rz_bin"]), | ||
# Parameters for cut based classifier, optimized for L1 Track MET | ||
# (Table 3.7 The Phase-2 Upgrade of the CMS Level-1 Trigger http://cds.cern.ch/record/2714892) | ||
maxZ0 = cms.double ( 15. ) , # in cm | ||
maxEta = cms.double ( 2.4 ) , | ||
chi2dofMax = cms.double( 40. ), | ||
bendchi2Max = cms.double( 2.4 ), | ||
minPt = cms.double( 2. ), # in GeV | ||
nStubsmin = cms.int32( 4 ), | ||
tqemu_bins = cms.vint32( [-480, -62, -35, -16, 0, 16, 35, 62, 480] ), | ||
tqemu_TanlScale = cms.double( 128.0), | ||
tqemu_Z0Scale = cms.double( 64.0 ), | ||
) |
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