Skip to content

Commit c9a2cad

Browse files
authored
Merge pull request #46 from JeffersonLab/iss45
removing tracking strategy requirement
2 parents bf2e631 + d1a5e8c commit c9a2cad

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)