BioDynaMo  v1.05.119-a4ff3934
parallel_vtu_writer.h
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------
2 //
3 // Copyright (C) 2021 CERN & University of Surrey for the benefit of the
4 // BioDynaMo collaboration. All Rights Reserved.
5 //
6 // Licensed under the Apache License, Version 2.0 (the "License");
7 // you may not use this file except in compliance with the License.
8 //
9 // See the LICENSE file distributed with this work for details.
10 // See the NOTICE file distributed with this work for additional information
11 // regarding copyright ownership.
12 //
13 // -----------------------------------------------------------------------------
14 
15 #ifndef CORE_VISUALIZATION_PARAVIEW_PARALLEL_VTU_WRITER_H_
16 #define CORE_VISUALIZATION_PARAVIEW_PARALLEL_VTU_WRITER_H_
17 
18 // std
19 #include <string>
20 #include <vector>
21 // Paraview
22 #include <vtkUnstructuredGrid.h>
23 
24 namespace bdm {
25 
27  void operator()(const std::string& folder, const std::string& file_prefix,
28  const std::vector<vtkUnstructuredGrid*>& grids) const;
29 };
30 
31 } // namespace bdm
32 
33 #endif // CORE_VISUALIZATION_PARAVIEW_PARALLEL_VTU_WRITER_H_
bdm
Definition: agent.cc:39
bdm::ParallelVtuWriter::operator()
void operator()(const std::string &folder, const std::string &file_prefix, const std::vector< vtkUnstructuredGrid * > &grids) const
Definition: parallel_vtu_writer.cc:60
bdm::ParallelVtuWriter
Definition: parallel_vtu_writer.h:26