Skip to content
Snippets Groups Projects
Commit cdc951a4 authored by Mark Jones's avatar Mark Jones Committed by Stephen A. Wood
Browse files

Add Plane number to each hit printed in THcDC::PrintSpacePoints

parent 6a10a8bb
Branches
Tags
No related merge requests found
......@@ -552,7 +552,7 @@ void THcDC::PrintSpacePoints()
cout << isp+1 << " " << sp->GetX() << " " << sp->GetY() << " " << sp->GetNHits()<< " " << sp->GetCombos() << " " ;
for (Int_t ii=0;ii<sp->GetNHits();ii++) {
THcDCHit* hittemp = (THcDCHit*)(sp->GetHit(ii));
cout << hittemp->GetWireNum() << " " ;
cout << hittemp->GetPlaneNum() << " " << hittemp->GetWireNum() << " ";
}
cout << endl;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment