aboutsummaryrefslogtreecommitdiffstats
path: root/interface
diff options
context:
space:
mode:
Diffstat (limited to 'interface')
-rw-r--r--interface/optdl.hpp7
-rw-r--r--interface/pyfunc_obj.hpp7
-rw-r--r--interface/pymodel.hpp8
-rw-r--r--interface/type_depository.hpp12
4 files changed, 32 insertions, 2 deletions
diff --git a/interface/optdl.hpp b/interface/optdl.hpp
index 35b2f9b..1516770 100644
--- a/interface/optdl.hpp
+++ b/interface/optdl.hpp
@@ -1,3 +1,10 @@
+/**
+ \file optdl.hpp
+ \brief dynamically loadable modules
+ \author Junhua Gu
+ */
+
+
#ifndef OPTDL_HPP
#define OPTDL_HPP
#define OPT_HEADER
diff --git a/interface/pyfunc_obj.hpp b/interface/pyfunc_obj.hpp
index db2775a..3e75d34 100644
--- a/interface/pyfunc_obj.hpp
+++ b/interface/pyfunc_obj.hpp
@@ -1,3 +1,10 @@
+/**
+ \file pyfunc_obj.hpp
+ \brief function object wrappers for python functions
+ \author Junhua Gu
+ */
+
+
#ifndef PYFUNC_OBJ_HPP
#define PYFUNC_OBJ_HPP
#include <boost/python.hpp>
diff --git a/interface/pymodel.hpp b/interface/pymodel.hpp
index 8041a6b..729840c 100644
--- a/interface/pymodel.hpp
+++ b/interface/pymodel.hpp
@@ -1,3 +1,11 @@
+/**
+ \file pymodel.hpp
+ \brief model wrapper of python functions
+ \author Junhua Gu
+ */
+
+
+
#ifndef PYMODEL
#define PYMODEL
#include <boost/python.hpp>
diff --git a/interface/type_depository.hpp b/interface/type_depository.hpp
index 7405bb5..6a53edc 100644
--- a/interface/type_depository.hpp
+++ b/interface/type_depository.hpp
@@ -1,9 +1,17 @@
+/**
+ \file type_depository.hpp
+ \brief depository and draw objects
+ \author Junhua Gu
+ */
+
+
+
#ifndef TYPE_DEPOSITORY_HPP
#define TYPE_DEPOSITORY_HPP
#include <string>
#include <utility>
-#include "../core/optimizer.hpp"
-#include "../core/fitter.hpp"
+#include <core/optimizer.hpp>
+#include <core/fitter.hpp>
#include <map>
#include <iostream>
namespace opt_utilities