Skip to content

Commit 5f243d4

Browse files
committed
remove code for change sign of d0 after seeding. Sign of d0 is taken care in initialization of tracking.
1 parent 28065a9 commit 5f243d4

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

reconstruction/cvt/src/main/java/org/jlab/rec/cvt/services/TracksFromTargetRec.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,7 @@ public List<Seed> getSeeds(List<ArrayList<Cluster>> clusters, List<ArrayList<Cro
169169
for(Seed s : ovlrm) {
170170
s.setId(s.getId()*-1);
171171
}
172-
}
173-
174-
// To match with d0 defition in tracking
175-
for(Seed s : seeds) {
176-
s.getHelix().setDCA(-s.getHelix().getDCA());
177-
}
172+
}
178173

179174
this.CVTseeds = seeds;
180175
// Got seeds;

0 commit comments

Comments
 (0)