Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,10 @@ protected void findVertices(List<ReconstructedParticle> electrons, List<Reconstr
continue;
}
// Only vertex two particles if at least one strategy found both tracks. Take out this check once we reduce the number of tracks.
if ((positron.getType() & electron.getType() & 0x1f) == 0) {
// This is dumb so I took it out. - Matt Solt
/*if ((positron.getType() & electron.getType() & 0x1f) == 0) {
continue;
}
}*/

// Make V0 candidates
this.makeV0Candidates(electron, positron);
Expand Down