Skip to content
Snippets Groups Projects
Commit 5732622d authored by Stephen Wood's avatar Stephen Wood
Browse files

Fix bug in SOS small angle LR approx

Should compare (pindex1%2), not pindex1, to determine evenness.
parent 5bfe7520
No related branches found
No related tags found
No related merge requests found
......@@ -1034,7 +1034,7 @@ void THcDriftChamber::LeftRight()
for(Int_t ihit1=0;ihit1 < nhits;ihit1++) {
THcDCHit* hit1 = sp->GetHit(ihit1);
Int_t pindex1=hit1->GetPlaneIndex();
if(pindex1==0) { // Odd plane (or even index)
if((pindex1%2)==0) { // Odd plane (or even index)
for(Int_t ihit2=0;ihit2<nhits;ihit2++) {
THcDCHit* hit2 = sp->GetHit(ihit2);
if(hit2->GetPlaneIndex()-pindex1 == 1) { // Adjacent plane
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment