Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91695131
dumpers.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:58
Size
978 B
Mime Type
text/x-c++
Expires
Fri, Nov 15, 13:58 (2 d)
Engine
blob
Format
Raw Data
Handle
22307517
Attached To
R7871 phys-743-exercises
dumpers.hh
View Options
#ifndef DUMPERS_HH
#define DUMPERS_HH
/* -------------------------------------------------------------------------- */
class
Grid
;
/* -------------------------------------------------------------------------- */
class
Dumper
{
public
:
explicit
Dumper
(
const
Grid
&
grid
)
:
m_grid
(
grid
),
m_min
(
-
1.
),
m_max
(
1.
)
{}
virtual
void
dump
(
int
step
)
=
0
;
void
set_min
(
float
min
);
void
set_max
(
float
max
);
float
min
()
const
;
float
max
()
const
;
protected
:
const
Grid
&
m_grid
;
float
m_min
,
m_max
;
};
/* -------------------------------------------------------------------------- */
class
DumperASCII
:
public
Dumper
{
public
:
explicit
DumperASCII
(
const
Grid
&
grid
)
:
Dumper
(
grid
)
{}
virtual
void
dump
(
int
step
);
};
/* -------------------------------------------------------------------------- */
class
DumperBinary
:
public
Dumper
{
public
:
explicit
DumperBinary
(
const
Grid
&
grid
)
:
Dumper
(
grid
)
{}
virtual
void
dump
(
int
step
);
};
#endif
/* DUMPERS_HH */
Event Timeline
Log In to Comment