Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91686732
dumper_variable.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, 11:32
Size
3 KB
Mime Type
text/x-c++
Expires
Fri, Nov 15, 11:32 (2 d)
Engine
blob
Format
Raw Data
Handle
21456525
Attached To
rAKA akantu
dumper_variable.hh
View Options
/**
* @file dumper_variable.hh
*
* @author David Simon Kammer <david.kammer@epfl.ch>
*
* @date creation: Tue Sep 02 2014
* @date last modification: Tue Sep 02 2014
*
* @brief template of variable
*
* @section LICENSE
*
* Copyright (©) 2014 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 __AKANTU_DUMPER_IOHELPER_TMPL_VARIABLE_HH__
#define __AKANTU_DUMPER_IOHELPER_TMPL_VARIABLE_HH__
/* -------------------------------------------------------------------------- */
__BEGIN_AKANTU__
__BEGIN_AKANTU_DUMPER__
/* -------------------------------------------------------------------------- */
/// Variable interface
class
VariableBase
{
public
:
VariableBase
()
{};
virtual
~
VariableBase
()
{};
virtual
void
registerToDumper
(
const
std
::
string
&
id
,
iohelper
::
Dumper
&
dumper
)
=
0
;
};
/* -------------------------------------------------------------------------- */
template
<
typename
T
,
bool
is_scal
=
is_scalar
<
T
>::
value
>
class
Variable
:
public
VariableBase
{
public
:
Variable
(
const
T
&
t
)
:
vari
(
t
)
{}
virtual
void
registerToDumper
(
const
std
::
string
&
id
,
iohelper
::
Dumper
&
dumper
)
{
dumper
.
addVariable
(
id
,
*
this
);
}
const
T
&
operator
[](
UInt
i
)
const
{
return
vari
[
i
];
}
UInt
getDim
()
{
return
vari
.
size
();
}
iohelper
::
DataType
getDataType
()
{
return
iohelper
::
getDataType
<
T
>
();
}
protected
:
const
T
&
vari
;
};
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
class
Variable
<
Vector
<
T
>
,
false
>
:
public
VariableBase
{
public
:
Variable
(
const
Vector
<
T
>
&
t
)
:
vari
(
t
)
{}
virtual
void
registerToDumper
(
const
std
::
string
&
id
,
iohelper
::
Dumper
&
dumper
)
{
dumper
.
addVariable
(
id
,
*
this
);
}
const
T
&
operator
[](
UInt
i
)
const
{
return
vari
[
i
];
}
UInt
getDim
()
{
return
vari
.
size
();
}
iohelper
::
DataType
getDataType
()
{
return
iohelper
::
getDataType
<
T
>
();
}
protected
:
const
Vector
<
T
>
&
vari
;
};
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
class
Variable
<
T
,
true
>
:
public
VariableBase
{
public
:
Variable
(
const
T
&
t
)
:
vari
(
t
)
{}
virtual
void
registerToDumper
(
const
std
::
string
&
id
,
iohelper
::
Dumper
&
dumper
)
{
dumper
.
addVariable
(
id
,
*
this
);
}
const
T
&
operator
[](
__attribute__
((
unused
))
UInt
i
)
const
{
return
vari
;
}
UInt
getDim
()
{
return
1
;
}
iohelper
::
DataType
getDataType
()
{
return
iohelper
::
getDataType
<
T
>
();
}
protected
:
const
T
&
vari
;
};
__END_AKANTU_DUMPER__
__END_AKANTU__
#endif
/* __AKANTU_DUMPER_IOHELPER_TMPL_VARIABLE_HH__ */
Event Timeline
Log In to Comment