From 5272d4783579f571bf5a8cc866ade3e25e18c16d Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 21 Mar 2018 18:41:00 -0600 Subject: [PATCH] Cleanup white space --- libctsim/reconstruct.cpp | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/libctsim/reconstruct.cpp b/libctsim/reconstruct.cpp index a0d7416..6aca7f8 100644 --- a/libctsim/reconstruct.cpp +++ b/libctsim/reconstruct.cpp @@ -163,7 +163,7 @@ Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP, bool for (int iView = iStartView; iView < (iStartView + iViewCount); iView++) { if (m_iTrace == Trace::TRACE_CONSOLE) - std::cout <<"Reconstructing view " << iView << " (last = " << m_pProj->nView() - 1 << ")\n"; + std::cout <<"Reconstructing view " << iView << " (last = " << m_pProj->nView() - 1 << ")\n"; const DetectorArray& rDetArray = m_pProj->getDetectorArray (iView); const DetectorValue* detval = rDetArray.detValues(); @@ -182,7 +182,7 @@ Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP, bool #endif #endif - if (bBackprojectView) + if (bBackprojectView) m_pBackprojector->BackprojectView (adFilteredProj, rDetArray.viewAngle()); #ifdef HAVE_SGP @@ -203,16 +203,7 @@ Reconstructor::reconstructView (int iStartView, int iViewCount, SGP* pSGP, bool ezplotProj.ezset (osXLength.str().c_str()); ezplotProj.ezset ("box."); ezplotProj.ezset ("grid."); -#if 0 // workaround c++ optimizer bug, now disabled by using /O1 in code - double* pdDetval = new double [m_pProj->nDet()]; - for (unsigned int id = 0; id < m_pProj->nDet(); id++) { - pdDetval[id] = detval[id]; - } - ezplotProj.addCurve (m_adPlotXAxis, pdDetval, m_pProj->nDet()); - delete pdDetval; -#else ezplotProj.addCurve (m_adPlotXAxis, detval, m_pProj->nDet()); -#endif pSGP->setTextPointSize (9); ezplotProj.plot (pSGP); -- 2.34.1