-
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.
make V0EventSelector produce skimmed V0 collection based on their mass
- Loading branch information
Showing
3 changed files
with
55 additions
and
12 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
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" | ||
) |