Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91083598
dumper_iohelper_paraview.cc
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, Nov 7, 17:34
Size
1 KB
Mime Type
text/x-c
Expires
Sat, Nov 9, 17:34 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22079783
Attached To
rAKA akantu
dumper_iohelper_paraview.cc
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/>.
*/
/* -------------------------------------------------------------------------- */
#include "dumper_iohelper_paraview.hh"
#include "communicator.hh"
/* -------------------------------------------------------------------------- */
#include <fstream>
#include <io_helper.hh>
/* -------------------------------------------------------------------------- */
namespace
akantu
{
DumperParaview
::
DumperParaview
(
const
std
::
string
&
filename
,
const
std
::
string
&
directory
,
bool
parallel
)
{
dumper
=
std
::
make_unique
<
iohelper
::
DumperParaview
>
();
setBaseName
(
filename
);
this
->
setParallelContext
(
parallel
);
dumper
->
setMode
(
iohelper
::
BASE64
);
dumper
->
setPrefix
(
directory
);
dumper
->
init
();
}
/* -------------------------------------------------------------------------- */
DumperParaview
::~
DumperParaview
()
=
default
;
/* -------------------------------------------------------------------------- */
void
DumperParaview
::
setBaseName
(
const
std
::
string
&
basename
)
{
DumperIOHelper
::
setBaseName
(
basename
);
static_cast
<
iohelper
::
DumperParaview
*>
(
dumper
.
get
())
->
setVTUSubDirectory
(
filename
+
"-VTU"
);
}
}
// namespace akantu
Event Timeline
Log In to Comment