-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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 #93 from jaimeleonh/AM_12_3_X_integration_com
Comments from PR
- Loading branch information
Showing
25 changed files
with
153 additions
and
220 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
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
22 changes: 11 additions & 11 deletions
22
L1Trigger/DTTriggerPhase2/python/PseudoBayesGrouping_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,25 +1,25 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
PseudoBayesPattern = cms.PSet(pattern_filename = cms.untracked.FileInPath("L1Trigger/DTTriggerPhase2/data/PseudoBayesPatterns_uncorrelated_v0.root"), | ||
PseudoBayesPattern = cms.PSet(pattern_filename = cms.FileInPath("L1Trigger/DTTriggerPhase2/data/PseudoBayesPatterns_uncorrelated_v0.root"), | ||
debug = cms.untracked.bool(False), | ||
#Minimum number of layers hit (total). Together with the two parameters under this it means 4+4, 4+3 or 3+3 | ||
minNLayerHits = cms.untracked.int32(3), | ||
minNLayerHits = cms.int32(3), | ||
#Minimum number of hits in the most hit superlayer | ||
minSingleSLHitsMax = cms.untracked.int32(3), | ||
minSingleSLHitsMax = cms.int32(3), | ||
#Minimum number of hits in the less hit superlayer | ||
minSingleSLHitsMin = cms.untracked.int32(0), | ||
minSingleSLHitsMin = cms.int32(0), | ||
#By default pattern width is 1, 0 can be considered (harder fits but, lower efficiency of high quality), 2 is the absolute limit unless we have extremely bent muons somehow | ||
allowedVariance = cms.untracked.int32(1), | ||
allowedVariance = cms.int32(1), | ||
#If true, it will provide all candidate sets with the same hits of the same quality (with lateralities defined). If false only the leading one (with its lateralities). | ||
allowDuplicates = cms.untracked.bool(False), | ||
allowDuplicates = cms.bool(False), | ||
#Also provide best estimates for the lateralities | ||
setLateralities = cms.untracked.bool(True), | ||
setLateralities = cms.bool(True), | ||
#Allow for uncorrelated patterns searching | ||
allowUncorrelatedPatterns = cms.untracked.bool(True), | ||
allowUncorrelatedPatterns = cms.bool(True), | ||
#If uncorrelated, minimum hits | ||
minUncorrelatedHits = cms.untracked.int32(3), | ||
minUncorrelatedHits = cms.int32(3), | ||
#DTPrimitives are saved in the appropriate element of the muonPath array | ||
saveOnPlace = cms.untracked.bool(True), | ||
saveOnPlace = cms.bool(True), | ||
#Maximum number of muonpaths created per final match | ||
maxPathsPerMatch = cms.untracked.int32(256), | ||
maxPathsPerMatch = cms.int32(256), | ||
) |
Oops, something went wrong.