Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91693416
parameter_reader.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 13, 13:30
Size
3 KB
Mime Type
text/x-c++
Expires
Fri, Nov 15, 13:30 (2 d)
Engine
blob
Format
Raw Data
Handle
22232844
Attached To
rAKA akantu
parameter_reader.hh
View Options
/**
* @file parameter_reader.hh
*
* @author David Simon Kammer <david.kammer@epfl.ch>
*
* @date creation: Fri Jun 18 2010
* @date last modification: Fri Feb 23 2018
*
* @brief for simulations to read parameters from an input file
*
* @section LICENSE
*
* Copyright (©) 2015-2018 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu 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 Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __AST_PARAMETER_READER_HH__
#define __AST_PARAMETER_READER_HH__
/* -------------------------------------------------------------------------- */
// std
#include <map>
#include <set>
// akantu
#include "aka_common.hh"
namespace
akantu
{
/* -------------------------------------------------------------------------- */
class
ParameterReader
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
ParameterReader
();
virtual
~
ParameterReader
(){};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
/// read input file
void
readInputFile
(
std
::
string
file_name
);
/// write input file
void
writeInputFile
(
std
::
string
file_name
)
const
;
/// function to print the contain of the class
virtual
void
printself
(
std
::
ostream
&
stream
,
int
indent
=
0
)
const
;
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
///
template
<
typename
T
>
T
get
(
std
::
string
key
)
const
;
template
<
typename
T
>
bool
has
(
std
::
string
key
)
const
;
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private
:
/// type of data available
std
::
set
<
std
::
string
>
data_types
;
/// data
std
::
map
<
std
::
string
,
akantu
::
ElementType
>
element_type_data
;
std
::
map
<
std
::
string
,
std
::
string
>
string_data
;
std
::
map
<
std
::
string
,
akantu
::
Int
>
int_data
;
std
::
map
<
std
::
string
,
akantu
::
UInt
>
uint_data
;
std
::
map
<
std
::
string
,
akantu
::
Real
>
real_data
;
std
::
map
<
std
::
string
,
bool
>
bool_data
;
/// convert string to element type
std
::
map
<
std
::
string
,
ElementType
>
_input_to_akantu_element_types
;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
//#include "parameter_reader_inline_impl.cc"
/// standard output stream operator
inline
std
::
ostream
&
operator
<<
(
std
::
ostream
&
stream
,
const
ParameterReader
&
_this
)
{
_this
.
printself
(
stream
);
return
stream
;
}
}
// namespace akantu
#endif
/* __AST_PARAMETER_READER_HH__ */
Event Timeline
Log In to Comment