source: branches/0.4-stable/doc/namespaces.doxygen @ 2392

Last change on this file since 2392 was 1743, checked in by Peter, 14 years ago

updating copyright statements

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1// $Id: namespaces.doxygen 1743 2009-01-23 14:20:30Z peter $
2
3/*
4  Copyright (C) 2005 Jari Häkkinen, Peter Johansson, Markus Ringnér
5  Copyright (C) 2006, 2007 Jari Häkkinen, Peter Johansson
6  Copyright (C) 2008 Peter Johansson
7
8  This file is part of the yat library, http://dev.thep.lu.se/yat
9
10  The yat library is free software; you can redistribute it and/or
11  modify it under the terms of the GNU General Public License as
12  published by the Free Software Foundation; either version 2 of the
13  License, or (at your option) any later version.
14
15  The yat library is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  General Public License for more details.
19
20  You should have received a copy of the GNU General Public License
21  along with this program; if not, write to the Free Software
22  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23  02111-1307, USA.
24*/
25
26///
27/// @namespace theplu
28///
29/// All C++ projects at the Department of Theoretical Physics should
30/// ideally be defined within a common namespace. We use theplu for
31/// this common namespace.
32///
33/// @brief The Department of Theoretical Physics namespace as we
34/// define it.
35///
36
37///
38/// @namespace theplu::yat
39///
40/// All classes and functions are for the yat project is placed in sub
41/// namespaces of the yat namespace.
42///
43/// @brief yat project namespace.
44///
45
46///
47/// @namespace theplu::yat::random
48///
49/// The yat random number related functionality is placed with the
50/// random namespace.
51///
52/// @brief Random number distributions.
53///
54
55///
56/// @namespace theplu::yat::utility
57///
58/// Needed yat functionality that we don't know where to put usually
59/// ends up in the utility namespace until we figure out their proper
60/// namespace location.
61///
62/// @brief Miscellaneous functionality.
63///
64
65///
66/// @namespace theplu::yat::classifier
67///
68/// All classes associated with usage of classifiers are defined
69/// within this namespace.
70///
71/// @brief Classifier related classes.
72///
73
74///
75/// @namespace theplu::yat::statistics
76///
77/// All classes and functions related to statistical methods or
78/// functions are defined within this namespace. See <a
79/// href="Statistics/index.html">Weighted Statistics document</a><br>.
80///
81/// @brief Statistical methods, classes, and functions.
82///
83
84///
85/// @namespace theplu::yat::regression
86///
87/// @brief Statistical modeling of data.
88///
89
Note: See TracBrowser for help on using the repository browser.