Main Page
Module List
Reference documentation
Namespaces
Classes
Examples
distro
c++_api
inc
opals
DBHModel.hpp
1
#ifndef OPALS_DBH_MODEL_HPP_INCLUDED
2
#define OPALS_DBH_MODEL_HPP_INCLUDED
3
4
#include <opals/config.hpp>
5
6
namespace
opals
7
{
8
/// Specifying DBH geometry fitting model
9
namespace
DBHModel
10
{
11
enum
Type
12
{
13
auto_
,
///< automatic model selection
14
cylinder
,
///< cylinder model
15
cone
,
///< cone model
16
Count
///< number of elements
17
};
18
}
19
}
20
21
#endif