-
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 #47352 from mmusich/mm_include_hlt_ph2_tracker_val…
…idation add IT and OT cluster, rechit and tracking rechits validation at HLT for Phase-2
- Loading branch information
Showing
3 changed files
with
55 additions
and
7 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
37 changes: 37 additions & 0 deletions
37
Validation/SiTrackerPhase2V/python/HLTPhase2TrackerValidationFirstStep_cff.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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from Validation.SiTrackerPhase2V.Phase2ITValidateCluster_cff import * | ||
from Validation.SiTrackerPhase2V.Phase2OTValidateCluster_cff import * | ||
from Validation.SiTrackerPhase2V.Phase2ITValidateRecHit_cff import * | ||
from Validation.SiTrackerPhase2V.Phase2ITValidateTrackingRecHit_cff import * | ||
from Validation.SiTrackerPhase2V.Phase2OTValidateTrackingRecHit_cff import * | ||
|
||
hltClusterValidIT = clusterValidIT.clone( | ||
ClusterSource = "hltSiPixelClusters", | ||
TopFolderName = 'HLT/TrackerPhase2ITClusterV' | ||
) | ||
|
||
hltClusterValidOT = clusterValidOT.clone( | ||
ClusterSource = "hltSiPhase2Clusters", | ||
TopFolderName = 'HLT/TrackerPhase2OTClusterV' | ||
) | ||
|
||
hltRechitValidIT = rechitValidIT.clone( | ||
rechitsSrc = "hltSiPixelRecHits", | ||
TopFolderName = 'HLT/TrackerPhase2ITRecHitV', | ||
) | ||
|
||
hltTrackingRechitValidIT = trackingRechitValidIT.clone( | ||
tracksSrc = "hltGeneralTracks", | ||
TopFolderName = 'HLT/TrackerPhase2ITTrackingRecHitV' | ||
) | ||
|
||
hltTrackingRechitValidOT = trackingRechitValidOT.clone( | ||
tracksSrc = "hltGeneralTracks", | ||
TopFolderName = 'HLT/TrackerPhase2OTTrackingRecHitV' | ||
) | ||
|
||
hltTrackerphase2ValidationSource = cms.Sequence(hltClusterValidIT + | ||
hltClusterValidOT + | ||
hltRechitValidIT + | ||
hltTrackingRechitValidIT + | ||
hltTrackingRechitValidOT) |
4 changes: 2 additions & 2 deletions
4
Validation/SiTrackerPhase2V/python/Phase2ITValidateRecHit_cff.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