diff options
| author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-07-28 17:05:24 +0200 | 
|---|---|---|
| committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-07-28 17:05:24 +0200 | 
| commit | b2611a03577c285ddf48edab0d05dafa09ab362c (patch) | |
| tree | c1d2f1b5166ba23f55e68e8faf0832f7c540f787 /src/ProjectionGeometry2D.cpp | |
| parent | 1ff4a270a7df1edb54dd91fe653d6a936b959b3a (diff) | |
| parent | 53249b3ad63f0d08b9862a75602acf263d230d77 (diff) | |
Merge branch 'master' into parvec
Diffstat (limited to 'src/ProjectionGeometry2D.cpp')
| -rw-r--r-- | src/ProjectionGeometry2D.cpp | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/src/ProjectionGeometry2D.cpp b/src/ProjectionGeometry2D.cpp index da93b9c..03fbd22 100644 --- a/src/ProjectionGeometry2D.cpp +++ b/src/ProjectionGeometry2D.cpp @@ -28,8 +28,6 @@ $Id$  #include "astra/ProjectionGeometry2D.h" -#include <boost/lexical_cast.hpp> -  using namespace std;  namespace astra @@ -123,13 +121,13 @@ bool CProjectionGeometry2D::initialize(const Config& _cfg)  	// Required: DetectorWidth  	XMLNode node = _cfg.self.getSingleNode("DetectorWidth");  	ASTRA_CONFIG_CHECK(node, "ProjectionGeometry2D", "No DetectorWidth tag specified."); -	m_fDetectorWidth = boost::lexical_cast<float32>(node.getContent()); +	m_fDetectorWidth = node.getContentNumerical();  	CC.markNodeParsed("DetectorWidth");  	// Required: DetectorCount  	node = _cfg.self.getSingleNode("DetectorCount");  	ASTRA_CONFIG_CHECK(node, "ProjectionGeometry2D", "No DetectorCount tag specified."); -	m_iDetectorCount = boost::lexical_cast<int>(node.getContent()); +	m_iDetectorCount = node.getContentInt();  	CC.markNodeParsed("DetectorCount");  	// Required: ProjectionAngles | 
