Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90705717
projection_base.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
Mon, Nov 4, 00:58
Size
2 KB
Mime Type
text/x-c
Expires
Wed, Nov 6, 00:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22119460
Attached To
rMUSPECTRE µSpectre
projection_base.hh
View Options
/**
* file projection_base.hh
*
* @author Till Junge <till.junge@altermail.ch>
*
* @date 03 Dec 2017
*
* @brief Base class for Projection operators
*
* @section LICENCE
*
* Copyright (C) 2017 Till Junge
*
* µSpectre is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3, or (at
* your option) any later version.
*
* µSpectre 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Emacs; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef PROJECTION_BASE_H
#define PROJECTION_BASE_H
#include <memory>
#include "common/common.hh"
#include "common/field_collection.hh"
#include "common/field.hh"
#include "fft/fft_engine_base.hh"
namespace
muSpectre
{
template
<
class
Projection
>
struct
Projection_traits
{
};
template
<
Dim_t
DimS
,
Dim_t
DimM
>
class
ProjectionBase
{
public
:
using
FFT_Engine
=
FFT_Engine_base
<
DimS
,
DimM
>
;
using
FFT_Engine_ptr
=
std
::
unique_ptr
<
FFT_Engine
>
;
using
Ccoord
=
typename
FFT_Engine
::
Ccoord
;
using
Rcoord
=
typename
FFT_Engine
::
Rcoord
;
using
GFieldCollection_t
=
typename
FFT_Engine
::
GFieldCollection_t
;
using
LFieldCollection_t
=
typename
FFT_Engine
::
LFieldCollection_t
;
using
Field_t
=
typename
FFT_Engine
::
Field_t
;
using
iterator
=
typename
FFT_Engine
::
iterator
;
//! Default constructor
ProjectionBase
()
=
delete
;
//! Constructor with system sizes
ProjectionBase
(
FFT_Engine_ptr
engine
);
//! Copy constructor
ProjectionBase
(
const
ProjectionBase
&
other
)
=
delete
;
//! Move constructor
ProjectionBase
(
ProjectionBase
&&
other
)
noexcept
=
default
;
//! Destructor
virtual
~
ProjectionBase
()
noexcept
=
default
;
//! Copy assignment operator
ProjectionBase
&
operator
=
(
const
ProjectionBase
&
other
)
=
delete
;
//! Move assignment operator
ProjectionBase
&
operator
=
(
ProjectionBase
&&
other
)
noexcept
=
default
;
//! initialises the fft engine (plan the transform)
void
initialise
(
FFT_PlanFlags
flags
=
FFT_PlanFlags
::
estimate
);
//! apply the projection operator to a field
virtual
void
apply_projection
(
Field_t
&
field
)
=
0
;
//!
const
Ccoord
&
get_resolutions
()
const
{
return
this
->
fft_engine
->
get_resolutions
();}
const
Rcoord
&
get_lengths
()
const
{
return
this
->
fft_engine
->
get_lengths
();}
protected
:
FFT_Engine_ptr
fft_engine
;
LFieldCollection_t
&
projection_container
{};
private
:
};
}
// muSpectre
#endif
/* PROJECTION_BASE_H */
Event Timeline
Log In to Comment