Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Fixed cluster index for BMT cosmics reconstruction. Cluster2 forming …
Browse files Browse the repository at this point in the history
…a cross no longer used for BMT cross.
  • Loading branch information
zieglerv committed Aug 31, 2017
1 parent ff4e989 commit 44a6641
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ public ArrayList<Cross> matchTrackToMM(List<Cross> MMCrosses, StraightTrack thec

for (Cross Ccross : MatchedMMCrossCDet) {
for (Cross Zcross : MatchedMMCrossZDet) {
if ((Ccross.get_Cluster2().get_Layer() - Zcross.get_Cluster1().get_Layer()) == 1 && (Ccross.get_Cluster2().get_Sector() == Zcross.get_Cluster1().get_Sector())) {
if ((Ccross.get_Cluster1().get_Layer() - Zcross.get_Cluster1().get_Layer()) == 1 && (Ccross.get_Cluster1().get_Sector() == Zcross.get_Cluster1().get_Sector())) {
Ccross.set_MatchedZCross(Zcross);
Zcross.set_MatchedCCross(Ccross);
}
Expand Down

0 comments on commit 44a6641

Please sign in to comment.