diff --git a/Core/Algorithms/inc/FTDistributions.h b/Core/Algorithms/inc/FTDistributions.h index 13bf978a61eb7ef8b33b0986e15be503c7f64965..5409f22a34c8a2269919fb34e778d78fac80a447 100644 --- a/Core/Algorithms/inc/FTDistributions.h +++ b/Core/Algorithms/inc/FTDistributions.h @@ -34,8 +34,11 @@ protected: class IFTDistribution2D : public IParameterized { public: - IFTDistribution2D(double omega_x, double omega_y) : m_omega_x(omega_x), m_omega_y(omega_y), - m_gamma(0.0), m_delta(M_PI/2.0) {} + IFTDistribution2D(double omega_x, double omega_y) + : m_omega_x(omega_x) + , m_omega_y(omega_y) + , m_gamma(0.0) + , m_delta(M_PI/2.0) {} virtual ~IFTDistribution2D() {} virtual IFTDistribution2D *clone() const=0; diff --git a/Core/Fitting/src/FitSuite.cpp b/Core/Fitting/src/FitSuite.cpp index f76c76282a1d43c07ce793646df1dea4f9e5287d..ce29209952d8e5467fba373a8b84d99d5e458208 100644 --- a/Core/Fitting/src/FitSuite.cpp +++ b/Core/Fitting/src/FitSuite.cpp @@ -14,13 +14,11 @@ // ************************************************************************** // #include "FitSuite.h" -#include "Exceptions.h" #include "FitParameterLinked.h" -#include "ParameterPool.h" -#include "Simulation.h" #include "IMinimizer.h" #include "ChiSquaredModule.h" #include "MessageSvc.h" + #include <boost/bind.hpp> FitSuite::FitSuite() : m_minimizer(0), m_is_last_iteration(false) diff --git a/Core/Geometry/inc/Point3D.h b/Core/Geometry/inc/Point3D.h index 5573436d6bc8c2de1740477d99e13011a6a2a02b..a86f3ce3eb2fb9155eaea6a838e9583c340da858 100755 --- a/Core/Geometry/inc/Point3D.h +++ b/Core/Geometry/inc/Point3D.h @@ -1,3 +1,21 @@ +// ************************************************************************** // +// +// heinzlibs: Library collection of the Scientific Computing Group at +// Heinz Maier-Leibnitz Zentrum (MLZ) Garching +// +// libheinzgeo: Library for three-dimensional Euclidian geometry +// +//! @file Geometry/inc/Beam.Point3D.h +//! @brief Defines class Beam. +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + // -*- C++ -*- // $Id: Point3D.h,v 1.5 2010/06/16 16:21:27 garren Exp $ // ---------------------------------------------------------------------------