2021-10-29 16:52:19 +02:00
|
|
|
/*
|
2024-05-13 12:33:08 +02:00
|
|
|
* Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
|
2022-09-05 10:39:42 +02:00
|
|
|
* All rights reserved. This file is part of MD-Bench.
|
|
|
|
* Use of this source code is governed by a LGPL-3.0
|
|
|
|
* license that can be found in the LICENSE file.
|
2021-10-29 16:52:19 +02:00
|
|
|
*/
|
|
|
|
#include <atom.h>
|
|
|
|
|
|
|
|
#ifndef __VTK_H_
|
|
|
|
#define __VTK_H_
|
2022-02-08 16:12:22 +01:00
|
|
|
extern void write_data_to_vtk_file(const char *filename, Atom* atom, int timestep);
|
2022-01-31 23:46:20 +01:00
|
|
|
extern int write_local_atoms_to_vtk_file(const char* filename, Atom* atom, int timestep);
|
|
|
|
extern int write_ghost_atoms_to_vtk_file(const char* filename, Atom* atom, int timestep);
|
2022-02-08 16:12:22 +01:00
|
|
|
extern int write_local_cluster_edges_to_vtk_file(const char* filename, Atom* atom, int timestep);
|
|
|
|
extern int write_ghost_cluster_edges_to_vtk_file(const char* filename, Atom* atom, int timestep);
|
2021-10-29 16:52:19 +02:00
|
|
|
#endif
|