Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95069845
dumper_quadrature_point_iterator.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
Thu, Dec 12, 15:17
Size
2 KB
Mime Type
text/x-c
Expires
Sat, Dec 14, 15:17 (2 d)
Engine
blob
Format
Raw Data
Handle
22912979
Attached To
rAKA akantu
dumper_quadrature_point_iterator.hh
View Options
/**
* Copyright (©) 2010-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* 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_QUADRATURE_POINT_ITERATOR_HH_
#define AKANTU_DUMPER_QUADRATURE_POINT_ITERATOR_HH_
/* -------------------------------------------------------------------------- */
#include "dumper_elemental_field.hh"
namespace
akantu
{
namespace
dumpers
{
/* --------------------------------------------------------------------------
*/
template
<
typename
types
>
class
quadrature_point_iterator
:
public
element_iterator
<
types
,
quadrature_point_iterator
>
{
/* ------------------------------------------------------------------------
*/
/* Typedefs */
/* ------------------------------------------------------------------------
*/
public
:
using
parent
=
element_iterator
<
types
,
dumpers
::
quadrature_point_iterator
>
;
using
data_type
=
typename
types
::
data_type
;
using
return_type
=
typename
types
::
return_type
;
using
field_type
=
typename
types
::
field_type
;
using
array_iterator
=
typename
types
::
array_iterator
;
/* ------------------------------------------------------------------------
*/
/* Constructors/Destructors */
/* ------------------------------------------------------------------------
*/
public
:
quadrature_point_iterator
(
const
field_type
&
field
,
const
typename
field_type
::
type_iterator
&
t_it
,
const
typename
field_type
::
type_iterator
&
t_it_end
,
const
array_iterator
&
array_it
,
const
array_iterator
&
array_it_end
,
const
GhostType
ghost_type
=
_not_ghost
)
:
parent
(
field
,
t_it
,
t_it_end
,
array_it
,
array_it_end
,
ghost_type
)
{}
return_type
operator
*
()
{
return
*
this
->
array_it
;
}
};
/* --------------------------------------------------------------------------
*/
}
// namespace dumpers
}
// namespace akantu
#endif
/* AKANTU_DUMPER_QUADRATURE_POINT_ITERATOR_HH_ */
Event Timeline
Log In to Comment