Skip to content
Snippets Groups Projects
SeqDomain.h 3.62 KiB
Newer Older
#ifndef MANTID_CURVEFITTING_SEQDOMAIN_H_
#define MANTID_CURVEFITTING_SEQDOMAIN_H_

//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidCurveFitting/DllConfig.h"
#include "MantidAPI/FunctionDomain.h"
#include "MantidAPI/FunctionValues.h"
#include "MantidAPI/IDomainCreator.h"
#include "MantidCurveFitting/CostFunctions/CostFuncLeastSquares.h"
#include "MantidCurveFitting/CostFunctions/CostFuncRwp.h"

#include <stdexcept>
#include <vector>
#include <algorithm>

namespace Mantid {
namespace CurveFitting {
/** An implementation of CompositeDomain.

    @author Roman Tolchenov, Tessella plc
    @date 15/11/2011

    Copyright &copy; 2009 ISIS Rutherford Appleton Laboratory, NScD Oak Ridge
   National Laboratory & European Spallation Source

    This file is part of Mantid.

    Mantid is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    Mantid is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

    File change history is stored at: <https://github.com/mantidproject/mantid>.
    Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class MANTID_CURVEFITTING_DLL SeqDomain : public API::FunctionDomain {
  SeqDomain() : API::FunctionDomain(), m_currentIndex(0) {}
  virtual ~SeqDomain() {}
  /// Return the number of points in the domain
  virtual size_t size() const;
  /// Return the number of parts in the domain
  virtual size_t getNDomains() const;
  /// Create and return i-th domain and i-th values, (i-1)th domain is released.
  virtual void getDomainAndValues(size_t i, API::FunctionDomain_sptr &domain,
                                  API::FunctionValues_sptr &values) const;
  /// Add new domain creator
  void addCreator(API::IDomainCreator_sptr creator);
  /// Calculate the value of a least squares cost function
Nick Draper's avatar
Nick Draper committed
  virtual void
  leastSquaresVal(const CostFunctions::CostFuncLeastSquares &leastSquares);
  /// Calculate the value, first and second derivatives of a least squares cost
  /// function
Nick Draper's avatar
Nick Draper committed
  virtual void leastSquaresValDerivHessian(
      const CostFunctions::CostFuncLeastSquares &leastSquares, bool evalDeriv,
      bool evalHessian);
  /// Calculate the value of a Rwp cost function
  void rwpVal(const CostFunctions::CostFuncRwp &rwp);
  /// Calculate the value, first and second derivatives of a RWP cost function
  void rwpValDerivHessian(const CostFunctions::CostFuncRwp &rwp, bool evalDeriv,
                          bool evalHessian);
  /// Create an instance of SeqDomain in one of two forms: either SeqDomain for
  /// sequential domain creation
  /// or ParDomain for parallel calculations
  static SeqDomain *create(API::IDomainCreator::DomainType type);

protected:
  /// Current index
  mutable size_t m_currentIndex;
  /// Currently active domain.
  mutable std::vector<API::FunctionDomain_sptr> m_domain;
  /// Currently active values.
  mutable std::vector<API::FunctionValues_sptr> m_values;
  /// Domain creators.
  std::vector<boost::shared_ptr<API::IDomainCreator>> m_creators;
};

} // namespace CurveFitting
} // namespace Mantid

#endif /*MANTID_CURVEFITTING_SEQDOMAIN_H_*/