-
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 #46280 from mmusich/mm_StandalonaTrackMonitor_test…
…s_14_1_X [14.1.X] Miscellaneous backports to `DQM/TrackingMonitorSource`
- Loading branch information
Showing
9 changed files
with
269 additions
and
34 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,12 +1,21 @@ | ||
from DQM.TrackingMonitorSource.v0EventSelector_cfi import * | ||
from DQM.TrackingMonitorSource.v0VertexTrackProducer_cfi import * | ||
|
||
KShortEventSelector = v0EventSelector.clone() | ||
KShortEventSelector = v0EventSelector.clone( | ||
vertexCompositeCandidates = "generalV0Candidates:Kshort", | ||
massMin = 0.47, | ||
massMax = 0.52, | ||
) | ||
|
||
LambdaEventSelector = v0EventSelector.clone( | ||
vertexCompositeCandidates = "generalV0Candidates:Lambda" | ||
vertexCompositeCandidates = "generalV0Candidates:Lambda", | ||
massMin = 1.11, | ||
massMax = 1.128 | ||
) | ||
|
||
KshortTracks = v0VertexTrackProducer.clone() | ||
KshortTracks = v0VertexTrackProducer.clone( | ||
vertexCompositeCandidates = "KShortEventSelector" | ||
) | ||
LambdaTracks = v0VertexTrackProducer.clone( | ||
vertexCompositeCandidates = "generalV0Candidates:Lambda" | ||
vertexCompositeCandidates = "LambdaEventSelector" | ||
) |
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,2 +1,8 @@ | ||
<test name="testTrackingDATAMC" command="testTrackingDATAMC.sh"/> | ||
<test name="testTrackingResolution" command="testTrackingResolution.sh"/> | ||
<environment> | ||
<bin file="testTrackingDQMAnalyzers.cc" name="testTrackingDQMAnalyzers"> | ||
<use name="FWCore/TestProcessor"/> | ||
<use name="catch2"/> | ||
</bin> | ||
</environment> |
Oops, something went wrong.