From cdc951a484f02678d4da0ef9a7e37598f83d492e Mon Sep 17 00:00:00 2001 From: Mark Jones <jones@jlab.org> Date: Thu, 19 Dec 2013 14:59:15 -0500 Subject: [PATCH] Add Plane number to each hit printed in THcDC::PrintSpacePoints --- src/THcDC.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/THcDC.cxx b/src/THcDC.cxx index 568fcec..3d573a4 100644 --- a/src/THcDC.cxx +++ b/src/THcDC.cxx @@ -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; } -- GitLab