ParameterStrings.hpp
Go to the documentation of this file.
1 //===========================================================================
2 //
3 // File: ParameterStrings.hpp
4 //
5 // Created: Tue Jun 2 19:04:15 2009
6 //
7 // Author(s): Bård Skaflestad <bard.skaflestad@sintef.no>
8 // Atgeirr F Rasmussen <atgeirr@sintef.no>
9 //
10 // $Date$
11 //
12 // $Revision$
13 //
14 //===========================================================================
15 
16 /*
17  Copyright 2009, 2010 SINTEF ICT, Applied Mathematics.
18  Copyright 2009, 2010 Statoil ASA.
19 
20  This file is part of the Open Porous Media project (OPM).
21 
22  OPM is free software: you can redistribute it and/or modify
23  it under the terms of the GNU General Public License as published by
24  the Free Software Foundation, either version 3 of the License, or
25  (at your option) any later version.
26 
27  OPM is distributed in the hope that it will be useful,
28  but WITHOUT ANY WARRANTY; without even the implied warranty of
29  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30  GNU General Public License for more details.
31 
32  You should have received a copy of the GNU General Public License
33  along with OPM. If not, see <http://www.gnu.org/licenses/>.
34 */
35 
36 #ifndef OPM_PARAMETERSTRINGS_HEADER
37 #define OPM_PARAMETERSTRINGS_HEADER
38 
39 #include <string>
40 
41 namespace Opm {
42  namespace parameter {
43  const std::string ID_true = "true";
44  const std::string ID_false = "false";
45 
46  const std::string ID_xmltag__param_grp = "ParameterGroup";
47  const std::string ID_xmltag__param = "Parameter";
48  const std::string ID_xmltag__file_param_grp = "ParameterGroupFromFile";
49  const std::string ID_xmltag__file_params = "MergeWithFile";
50 
51  const std::string ID_xmlatt__value = "value";
52  const std::string ID_xmlatt__name = "name";
53  const std::string ID_xmlatt__type = "type";
54 
55  const std::string ID_param_type__bool = "bool";
56  const std::string ID_param_type__int = "int";
57  const std::string ID_param_type__float = "double";
58  const std::string ID_param_type__string = "string";
59  const std::string ID_param_type__file = "file";
60  const std::string ID_param_type__cmdline = "cmdline";
61 
62  //
63 
64  const std::string ID_path_root = "";
65  const std::string ID_delimiter_path = "/";
66  const std::string ID_comment = "//";
67  const std::string ID_delimiter_assignment = "=";
68  } // namespace parameter
69 } // namespace Opm
70 
71 #endif // OPM_PARAMETERSTRINGS_HEADER
Definition: AnisotropicEikonal.hpp:43
const std::string ID_param_type__file
Definition: ParameterStrings.hpp:59
const std::string ID_param_type__int
Definition: ParameterStrings.hpp:56
const std::string ID_false
Definition: ParameterStrings.hpp:44
const std::string ID_xmltag__file_params
Definition: ParameterStrings.hpp:49
const std::string ID_param_type__bool
Definition: ParameterStrings.hpp:55
const std::string ID_comment
Definition: ParameterStrings.hpp:66
const std::string ID_delimiter_assignment
Definition: ParameterStrings.hpp:67
const std::string ID_param_type__float
Definition: ParameterStrings.hpp:57
const std::string ID_xmltag__file_param_grp
Definition: ParameterStrings.hpp:48
const std::string ID_xmlatt__type
Definition: ParameterStrings.hpp:53
const std::string ID_xmlatt__value
Definition: ParameterStrings.hpp:51
const std::string ID_xmltag__param
Definition: ParameterStrings.hpp:47
const std::string ID_true
Definition: ParameterStrings.hpp:43
const std::string ID_path_root
Definition: ParameterStrings.hpp:64
const std::string ID_delimiter_path
Definition: ParameterStrings.hpp:65
const std::string ID_xmlatt__name
Definition: ParameterStrings.hpp:52
const std::string ID_param_type__string
Definition: ParameterStrings.hpp:58
const std::string ID_xmltag__param_grp
Definition: ParameterStrings.hpp:46
const std::string ID_param_type__cmdline
Definition: ParameterStrings.hpp:60