From f7fe6c385514d0ddd8a5d94c1cd1d575723bbd96 Mon Sep 17 00:00:00 2001 From: absingh <absingh@mpi-cbg.de> Date: Tue, 5 Apr 2022 13:35:14 +0200 Subject: [PATCH] Fixing small bug for t=0 --- src/VTKWriter/VTKWriter_point_set.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/VTKWriter/VTKWriter_point_set.hpp b/src/VTKWriter/VTKWriter_point_set.hpp index 71c74b8b..4c1fae25 100644 --- a/src/VTKWriter/VTKWriter_point_set.hpp +++ b/src/VTKWriter/VTKWriter_point_set.hpp @@ -619,7 +619,7 @@ public: * \return true if the write complete successfully * */ - bool write_pvtp(std::string file,const openfpm::vector<std::string> & prop_names,size_t n,long int timestamp=-1,double time=0) + bool write_pvtp(std::string file,const openfpm::vector<std::string> & prop_names,size_t n,long int timestamp=-1,double time=-1) { //openfpm::vector< ele_vpp<typename pair::second>> vpp; // Header for the vtk @@ -627,7 +627,7 @@ public: std::string Name_data; std::string PpointEnd; std::string Piece; - if(time==0){ + if(time==-1){ vtk_header = "<VTKFile type=\"PPolyData\" version=\"1.0\" byte_order=\"LittleEndian\" header_type=\"UInt64\">\n <PPolyData>\n <PPointData>\n"; } else{ -- GitLab