-
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.
add validation of tracks for TP w/ |eta|>2.7 for phase2 workflow apply code-checks fix workflow 9.0 fix the inversion fix harvesting fix fix switch on fake as well no cores protection style fix style fix 2 fix fake (they are identical)
- Loading branch information
Showing
15 changed files
with
194 additions
and
43 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
19 changes: 2 additions & 17 deletions
19
PhysicsTools/RecoAlgos/python/trackingParticleSelector_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,22 +1,7 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
trackingParticleSelector = cms.EDFilter("TrackingParticleSelector", | ||
src = cms.InputTag("mix","MergedTrackTruth"), | ||
chargedOnly = cms.bool(True), | ||
stableOnly = cms.bool(False), | ||
pdgId = cms.vint32(), | ||
tip = cms.double(3.5), | ||
signalOnly = cms.bool(True), | ||
intimeOnly = cms.bool(False), | ||
minRapidity = cms.double(-2.4), | ||
lip = cms.double(30.0), | ||
ptMin = cms.double(0.9), | ||
ptMax = cms.double(1e100), | ||
maxRapidity = cms.double(2.4), | ||
minHit = cms.int32(0), | ||
minPhi = cms.double(-3.2), | ||
maxPhi = cms.double(3.2), | ||
) | ||
import SimTracker.Common.trackingParticleSelector_cfi | ||
trackingParticleSelector = SimTracker.Common.trackingParticleSelector_cfi.trackingParticleSelector.clone() | ||
|
||
from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2 | ||
premix_stage2.toModify(trackingParticleSelector, src = "mixData:MergedTrackTruth") |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
trackingParticleSelector = cms.EDFilter("TrackingParticleSelector", | ||
src = cms.InputTag("mix","MergedTrackTruth"), | ||
chargedOnly = cms.bool(True), | ||
stableOnly = cms.bool(False), | ||
pdgId = cms.vint32(), | ||
tip = cms.double(3.5), | ||
signalOnly = cms.bool(True), | ||
intimeOnly = cms.bool(False), | ||
minRapidity = cms.double(-2.4), | ||
lip = cms.double(30.0), | ||
ptMin = cms.double(0.9), | ||
ptMax = cms.double(1e100), | ||
maxRapidity = cms.double(2.4), | ||
minHit = cms.int32(0), | ||
minPhi = cms.double(-3.2), | ||
maxPhi = cms.double(3.2), | ||
invertRapidityCut = cms.bool(False) | ||
) |
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
Oops, something went wrong.