Skip to content

Commit d1a5e8c

Browse files
author
Matthew Solt
committed
removing tracking strategy requirement
1 parent a5f9a70 commit d1a5e8c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

recon/src/main/java/org/hps/recon/particle/HpsReconParticleDriver.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,10 @@ protected void findVertices(List<ReconstructedParticle> electrons, List<Reconstr
160160
continue;
161161
}
162162
// Only vertex two particles if at least one strategy found both tracks. Take out this check once we reduce the number of tracks.
163-
if ((positron.getType() & electron.getType() & 0x1f) == 0) {
163+
// This is dumb so I took it out. - Matt Solt
164+
/*if ((positron.getType() & electron.getType() & 0x1f) == 0) {
164165
continue;
165-
}
166+
}*/
166167

167168
// Make V0 candidates
168169
this.makeV0Candidates(electron, positron);

0 commit comments

Comments
 (0)