Nektar++
Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | List of all members
Nektar::FieldUtils::OutputVtkBase Class Reference

Converter from fld to vtk. More...

#include <OutputVtkBase.h>

Inheritance diagram for Nektar::FieldUtils::OutputVtkBase:
[legend]

Public Member Functions

 OutputVtkBase (FieldSharedPtr f)
 
 ~OutputVtkBase () override
 
- Public Member Functions inherited from Nektar::FieldUtils::OutputFileBase
 OutputFileBase (FieldSharedPtr f)
 
 ~OutputFileBase () override
 
- Public Member Functions inherited from Nektar::FieldUtils::OutputModule
 OutputModule (FieldSharedPtr p_f)
 
FIELD_UTILS_EXPORT void OpenStream ()
 Open a file for output. More...
 
- Public Member Functions inherited from Nektar::FieldUtils::Module
FIELD_UTILS_EXPORT Module (FieldSharedPtr p_f)
 
virtual ~Module ()=default
 
void Process (po::variables_map &vm)
 
std::string GetModuleName ()
 
std::string GetModuleDescription ()
 
const ConfigOptionGetConfigOption (const std::string &key) const
 
ModulePriority GetModulePriority ()
 
std::vector< ModuleKeyGetModulePrerequisites ()
 
FIELD_UTILS_EXPORT void RegisterConfig (std::string key, std::string value="")
 Register a configuration option with a module. More...
 
FIELD_UTILS_EXPORT void PrintConfig ()
 Print out all configuration options for a module. More...
 
FIELD_UTILS_EXPORT void SetDefaults ()
 Sets default configuration options for those which have not been set. More...
 
FIELD_UTILS_EXPORT void AddFile (std::string fileType, std::string fileName)
 
FIELD_UTILS_EXPORT void EvaluateTriFieldAtEquiSpacedPts (LocalRegions::ExpansionSharedPtr &exp, const Array< OneD, const NekDouble > &infield, Array< OneD, NekDouble > &outfield)
 

Static Public Member Functions

static std::shared_ptr< Modulecreate (FieldSharedPtr f)
 Creates an instance of this class. More...
 

Static Public Attributes

static ModuleKey m_className
 

Protected Member Functions

std::string v_GetModuleName () override
 
void v_OutputFromPts (po::variables_map &vm) override
 Write from pts to output file. More...
 
void v_OutputFromExp (po::variables_map &vm) override
 Write from m_exp to output file. More...
 
void v_OutputFromData (po::variables_map &vm) override
 Write from data to output file. More...
 
fs::path v_GetPath (std::string &filename, po::variables_map &vm) override
 
fs::path v_GetFullOutName (std::string &filename, po::variables_map &vm) override
 
std::string PrepareOutput (po::variables_map &vm)
 
- Protected Member Functions inherited from Nektar::FieldUtils::OutputFileBase
void v_Process (po::variables_map &vm) override
 Write fld to output file. More...
 
std::string v_GetModuleName () override
 
std::string v_GetModuleDescription () override
 
ModulePriority v_GetModulePriority () override
 
virtual void v_OutputFromPts (po::variables_map &vm)=0
 Write from pts to output file. More...
 
virtual void v_OutputFromExp (po::variables_map &vm)=0
 Write from m_exp to output file. More...
 
virtual void v_OutputFromData (po::variables_map &vm)=0
 Write from data to output file. More...
 
virtual fs::path v_GetPath (std::string &filename, po::variables_map &vm)
 
fs::path GetPath (std::string &filename, po::variables_map &vm)
 
virtual fs::path v_GetFullOutName (std::string &filename, po::variables_map &vm)
 
fs::path GetFullOutName (std::string &filename, po::variables_map &vm)
 
- Protected Member Functions inherited from Nektar::FieldUtils::Module
 Module ()
 
virtual void v_Process (po::variables_map &vm)
 
virtual std::string v_GetModuleName ()
 
virtual std::string v_GetModuleDescription ()
 
virtual ModulePriority v_GetModulePriority ()
 
virtual std::vector< ModuleKeyv_GetModulePrerequisites ()
 

Private Member Functions

void WriteVtkHeader (std::ostream &outfile)
 
void WriteVtkFooter (std::ostream &outfile)
 
void WriteEmptyVtkPiece (std::ofstream &outfile)
 
void WritePVtu (po::variables_map &vm)
 

Additional Inherited Members

- Public Attributes inherited from Nektar::FieldUtils::Module
FieldSharedPtr m_f
 Field object. More...
 
- Protected Attributes inherited from Nektar::FieldUtils::OutputFileBase
bool m_requireEquiSpaced
 
- Protected Attributes inherited from Nektar::FieldUtils::OutputModule
std::ofstream m_fldFile
 Output stream. More...
 
- Protected Attributes inherited from Nektar::FieldUtils::Module
std::map< std::string, ConfigOptionm_config
 List of configuration values. More...
 
std::set< std::string > m_allowedFiles
 List of allowed file formats. More...
 

Detailed Description

Converter from fld to vtk.

Definition at line 45 of file OutputVtkBase.h.

Constructor & Destructor Documentation

◆ OutputVtkBase()

Nektar::FieldUtils::OutputVtkBase::OutputVtkBase ( FieldSharedPtr  f)

◆ ~OutputVtkBase()

Nektar::FieldUtils::OutputVtkBase::~OutputVtkBase ( )
override

Definition at line 63 of file OutputVtkBase.cpp.

64{
65}

Member Function Documentation

◆ create()

static std::shared_ptr< Module > Nektar::FieldUtils::OutputVtkBase::create ( FieldSharedPtr  f)
inlinestatic

Creates an instance of this class.

Definition at line 49 of file OutputVtkBase.h.

50 {
52 }
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.

References Nektar::MemoryManager< DataType >::AllocateSharedPtr().

◆ PrepareOutput()

std::string Nektar::FieldUtils::OutputVtkBase::PrepareOutput ( po::variables_map &  vm)
protected

Definition at line 428 of file OutputVtkBase.cpp.

429{
430 // Extract the output filename and extension
431 string filename = m_config["outfile"].as<string>();
432
433 fs::path specPath = GetPath(filename, vm);
434 fs::path fulloutname = GetFullOutName(filename, vm);
435 filename = LibUtilities::PortablePath(fulloutname);
436
437 if (m_f->m_comm->GetSpaceComm()->GetSize() != 1)
438 {
439 if (m_f->m_comm->GetSpaceComm()->TreatAsRankZero())
440 {
441 try
442 {
443 fs::create_directory(specPath);
444 }
445 catch (fs::filesystem_error &e)
446 {
447 ASSERTL0(false, "Filesystem error: " + string(e.what()));
448 }
449 cout << "Writing files to directory: " << specPath << endl;
450 }
451 m_f->m_comm->GetSpaceComm()->Block();
452 }
453 else
454 {
455 cout << "Writing: " << specPath << endl;
456 }
457 return filename;
458}
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:208
FieldSharedPtr m_f
Field object.
Definition: Module.h:239
std::map< std::string, ConfigOption > m_config
List of configuration values.
Definition: Module.h:272
fs::path GetFullOutName(std::string &filename, po::variables_map &vm)
fs::path GetPath(std::string &filename, po::variables_map &vm)
static std::string PortablePath(const fs::path &path)
create portable path on different platforms for std::filesystem path.
Definition: Filesystem.hpp:56

References ASSERTL0, Nektar::FieldUtils::OutputFileBase::GetFullOutName(), Nektar::FieldUtils::OutputFileBase::GetPath(), Nektar::FieldUtils::Module::m_config, Nektar::FieldUtils::Module::m_f, and Nektar::LibUtilities::PortablePath().

Referenced by Nektar::FieldUtils::OutputVtk::v_OutputFromExp(), v_OutputFromExp(), and v_OutputFromPts().

◆ v_GetFullOutName()

fs::path Nektar::FieldUtils::OutputVtkBase::v_GetFullOutName ( std::string &  filename,
po::variables_map &  vm 
)
overrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::OutputFileBase.

Definition at line 306 of file OutputVtkBase.cpp.

308{
309 int nprocs = m_f->m_comm->GetSpaceComm()->GetSize();
310
311 fs::path fulloutname;
312 if (nprocs == 1)
313 {
314 fulloutname = filename;
315 }
316 else
317 {
318 // Guess at filename that might belong to this process.
319 boost::format pad("P%1$07d.%2$s");
320 pad % m_f->m_comm->GetSpaceComm()->GetRank() % "vtu";
321
322 // Generate full path name
323 fs::path specPath = GetPath(filename, vm);
324 fs::path poutfile(pad.str());
325 fulloutname = specPath / poutfile;
326 }
327 return fulloutname;
328}

References CellMLToNektar.pycml::format, Nektar::FieldUtils::OutputFileBase::GetPath(), and Nektar::FieldUtils::Module::m_f.

◆ v_GetModuleName()

std::string Nektar::FieldUtils::OutputVtkBase::v_GetModuleName ( )
inlineoverrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::OutputFileBase.

Definition at line 59 of file OutputVtkBase.h.

60 {
61 return "OutputVtk";
62 }

◆ v_GetPath()

fs::path Nektar::FieldUtils::OutputVtkBase::v_GetPath ( std::string &  filename,
po::variables_map &  vm 
)
overrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::OutputFileBase.

Definition at line 287 of file OutputVtkBase.cpp.

289{
290 int nprocs = m_f->m_comm->GetSpaceComm()->GetSize();
291 fs::path specPath;
292 if (nprocs == 1)
293 {
294 specPath = fs::path(filename);
295 }
296 else
297 {
298 // replace .vtu by _vtu
299 int dot = filename.find_last_of('.');
300 string path = filename.substr(0, dot) + "_vtu";
301 specPath = fs::path(path);
302 }
303 return fs::path(specPath);
304}

References Nektar::FieldUtils::Module::m_f.

Referenced by Nektar::FieldUtils::OutputVtk::WritePVtu().

◆ v_OutputFromData()

void Nektar::FieldUtils::OutputVtkBase::v_OutputFromData ( po::variables_map &  vm)
overrideprotectedvirtual

Write from data to output file.

Implements Nektar::FieldUtils::OutputFileBase.

Definition at line 280 of file OutputVtkBase.cpp.

281{
283 "OutputVtk can't write using only FieldData. You may need "
284 "to add a mesh XML file to your input files.");
285}
#define NEKERROR(type, msg)
Assert Level 0 – Fundamental assert which is used whether in FULLDEBUG, DEBUG or OPT compilation mode...
Definition: ErrorUtil.hpp:202

References Nektar::ErrorUtil::efatal, and NEKERROR.

◆ v_OutputFromExp()

void Nektar::FieldUtils::OutputVtkBase::v_OutputFromExp ( po::variables_map &  vm)
overrideprotectedvirtual

Write from m_exp to output file.

Implements Nektar::FieldUtils::OutputFileBase.

Definition at line 232 of file OutputVtkBase.cpp.

233{
234 int i, j;
235 // Extract the output filename and extension
236 string filename = PrepareOutput(vm);
237
238 // Write solution.
239 ofstream outfile(filename.c_str());
240 WriteVtkHeader(outfile);
241 int nfields = m_f->m_variables.size();
242
243 int nstrips;
244 m_f->m_session->LoadParameter("Strip_Z", nstrips, 1);
245
246 // Homogeneous strip variant
247 for (int s = 0; s < nstrips; ++s)
248 {
249 // For each field write out field data for each expansion.
250 for (i = 0; i < m_f->m_exp[0]->GetNumElmts(); ++i)
251 {
252 m_f->m_exp[0]->WriteVtkPieceHeader(outfile, i, s);
253
254 // For this expansion write out each field.
255 for (j = 0; j < nfields; ++j)
256 {
257 m_f->m_exp[s * nfields + j]->WriteVtkPieceData(
258 outfile, i, m_f->m_variables[j]);
259 }
260 m_f->m_exp[0]->WriteVtkPieceFooter(outfile, i);
261 }
262 }
263
264 if (m_f->m_exp[0]->GetNumElmts() == 0)
265 {
266 WriteEmptyVtkPiece(outfile);
267 }
268
269 WriteVtkFooter(outfile);
270 cout << "Written file: " << filename << endl;
271
272 // output parallel outline info if necessary
273 if ((m_f->m_comm->GetSpaceComm()->GetRank() == 0) &&
274 (m_f->m_comm->GetSpaceComm()->GetSize() != 1))
275 {
276 WritePVtu(vm);
277 }
278}
std::string PrepareOutput(po::variables_map &vm)
void WriteEmptyVtkPiece(std::ofstream &outfile)
void WriteVtkHeader(std::ostream &outfile)
void WritePVtu(po::variables_map &vm)
void WriteVtkFooter(std::ostream &outfile)

References Nektar::FieldUtils::Module::m_f, PrepareOutput(), WriteEmptyVtkPiece(), WritePVtu(), WriteVtkFooter(), and WriteVtkHeader().

Referenced by Nektar::FieldUtils::OutputVtk::v_OutputFromExp().

◆ v_OutputFromPts()

void Nektar::FieldUtils::OutputVtkBase::v_OutputFromPts ( po::variables_map &  vm)
overrideprotectedvirtual

Write from pts to output file.

Implements Nektar::FieldUtils::OutputFileBase.

Definition at line 67 of file OutputVtkBase.cpp.

68{
69 int i, j;
70 LibUtilities::PtsFieldSharedPtr fPts = m_f->m_fieldPts;
71
72 // Extract the output filename and extension
73 string filename = PrepareOutput(vm);
74
75 // Write solution.
76 ofstream outfile(filename.c_str());
77 WriteVtkHeader(outfile);
78 int nfields = 0;
79 int dim = fPts->GetDim();
80
81 int nvert = 1;
82 int vtktype = 1;
83 switch (fPts->GetPtsType())
84 {
87 {
89 "VTK output needs setting up for ePtsFile and ePtsLine");
90 break;
91 }
93 {
95 "VTK output needs setting up for PtsPlane");
96 break;
97 }
99 {
101 "VTK output needs setting up for PtsBox");
102 break;
103 }
105 {
106 nvert = 2;
107 vtktype = 3;
108 break;
109 }
111 {
112 nvert = 3;
113 vtktype = 5;
114 break;
115 }
117 {
118 nvert = 4;
119 vtktype = 10;
120 break;
121 }
122 default:
123 NEKERROR(ErrorUtil::efatal, "ptsType not supported yet.");
124 }
125
126 vector<Array<OneD, int>> ptsConn;
127 fPts->GetConnectivity(ptsConn);
128
129 nfields = fPts->GetNFields();
130
131 int nPts = fPts->GetNpoints();
132 int numBlocks = 0;
133 for (i = 0; i < ptsConn.size(); ++i)
134 {
135 numBlocks += ptsConn[i].size() / nvert;
136 }
137
138 // write out pieces of data.
139 outfile << " <Piece NumberOfPoints=\"" << nPts << "\" NumberOfCells=\""
140 << numBlocks << "\">" << endl;
141 outfile << " <Points>" << endl;
142 outfile << " <DataArray type=\"Float64\" "
143 << "NumberOfComponents=\"" << 3 << R"(" format="ascii">)" << endl;
144 for (i = 0; i < nPts; ++i)
145 {
146 for (j = 0; j < dim; ++j)
147 {
148 outfile << " " << setprecision(8) << scientific
149 << fPts->GetPointVal(j, i) << " ";
150 }
151 for (j = dim; j < 3; ++j)
152 {
153 // pack to 3D since paraview does not seem to handle 2D
154 outfile << " 0.000000";
155 }
156 outfile << endl;
157 }
158 outfile << " </DataArray>" << endl;
159 outfile << " </Points>" << endl;
160 outfile << " <Cells>" << endl;
161 outfile << " <DataArray type=\"Int32\" "
162 << R"(Name="connectivity" format="ascii">)" << endl;
163
164 // dump connectivity data if it exists
165 outfile << " ";
166 int cnt = 1;
167 for (i = 0; i < ptsConn.size(); ++i)
168 {
169 for (j = 0; j < ptsConn[i].size(); ++j)
170 {
171 outfile << ptsConn[i][j] << " ";
172 if ((!(cnt % nvert)) && cnt)
173 {
174 outfile << std::endl;
175 outfile << " ";
176 }
177 cnt++;
178 }
179 }
180 outfile << " </DataArray>" << endl;
181 outfile << " <DataArray type=\"Int32\" "
182 << R"(Name="offsets" format="ascii">)" << endl;
183
184 outfile << " ";
185 for (i = 0; i < numBlocks; ++i)
186 {
187 outfile << i * nvert + nvert << " ";
188 }
189 outfile << endl;
190 outfile << " </DataArray>" << endl;
191 outfile << " <DataArray type=\"UInt8\" "
192 << R"(Name="types" format="ascii">)" << endl;
193 outfile << " ";
194 for (i = 0; i < numBlocks; ++i)
195 {
196 outfile << vtktype << " ";
197 }
198 outfile << endl;
199 outfile << " </DataArray>" << endl;
200 outfile << " </Cells>" << endl;
201 outfile << " <PointData>" << endl;
202
203 // printing the fields
204 for (j = 0; j < nfields; ++j)
205 {
206 outfile << R"( <DataArray type="Float64" Name=")"
207 << m_f->m_variables[j] << "\">" << endl;
208 outfile << " ";
209 for (i = 0; i < fPts->GetNpoints(); ++i)
210 {
211 outfile << fPts->GetPointVal(dim + j, i) << " ";
212 }
213 outfile << endl;
214 outfile << " </DataArray>" << endl;
215 }
216
217 outfile << " </PointData>" << endl;
218 outfile << " </Piece>" << endl;
219
220 WriteVtkFooter(outfile);
221 cout << "Written file: " << filename << endl;
222
223 // output parallel outline info if necessary
224 if ((m_f->m_comm->GetSpaceComm()->GetRank() == 0) &&
225 (m_f->m_comm->GetSpaceComm()->GetSize() != 1))
226 {
227 WritePVtu(vm);
228 cout << "Written file: " << filename << endl;
229 }
230}
std::shared_ptr< PtsField > PtsFieldSharedPtr
Definition: PtsField.h:184

References Nektar::ErrorUtil::efatal, Nektar::LibUtilities::ePtsBox, Nektar::LibUtilities::ePtsFile, Nektar::LibUtilities::ePtsLine, Nektar::LibUtilities::ePtsPlane, Nektar::LibUtilities::ePtsSegBlock, Nektar::LibUtilities::ePtsTetBlock, Nektar::LibUtilities::ePtsTriBlock, Nektar::FieldUtils::Module::m_f, NEKERROR, PrepareOutput(), WritePVtu(), WriteVtkFooter(), and WriteVtkHeader().

Referenced by Nektar::FieldUtils::OutputVtk::v_OutputFromPts().

◆ WriteEmptyVtkPiece()

void Nektar::FieldUtils::OutputVtkBase::WriteEmptyVtkPiece ( std::ofstream &  outfile)
private

Definition at line 344 of file OutputVtkBase.cpp.

345{
346 // write out empty piece of data.
347 outfile << " <Piece NumberOfPoints=\"" << 0 << "\" NumberOfCells=\"" << 0
348 << "\">" << endl;
349 outfile << " <Points>" << endl;
350 outfile << " <DataArray type=\"Float64\" "
351 << "NumberOfComponents=\"" << 3 << R"(" format="ascii">)" << endl;
352 outfile << " </DataArray>" << endl;
353 outfile << " </Points>" << endl;
354 outfile << " <Cells>" << endl;
355 outfile << " <DataArray type=\"Int32\" "
356 << R"(Name="connectivity" format="ascii">)" << endl;
357 outfile << " </DataArray>" << endl;
358 outfile << " <DataArray type=\"Int32\" "
359 << R"(Name="offsets" format="ascii">)" << endl;
360
361 outfile << " ";
362 outfile << endl;
363 outfile << " </DataArray>" << endl;
364 outfile << " <DataArray type=\"UInt8\" "
365 << R"(Name="types" format="ascii">)" << endl;
366 outfile << " ";
367 outfile << endl;
368 outfile << " </DataArray>" << endl;
369 outfile << " </Cells>" << endl;
370 outfile << " <PointData>" << endl;
371
372 outfile << " </PointData>" << endl;
373 outfile << " </Piece>" << endl;
374}

Referenced by v_OutputFromExp().

◆ WritePVtu()

void Nektar::FieldUtils::OutputVtkBase::WritePVtu ( po::variables_map &  vm)
private

Definition at line 376 of file OutputVtkBase.cpp.

377{
378 string filename = m_config["outfile"].as<string>();
379 int dot = filename.find_last_of('.');
380 string body = filename.substr(0, dot);
381 filename = body + ".pvtu";
382
383 ofstream outfile(filename.c_str());
384
385 int nprocs = m_f->m_comm->GetSpaceComm()->GetSize();
386 string path = LibUtilities::PortablePath(GetPath(filename, vm));
387
388 outfile << "<?xml version=\"1.0\"?>" << endl;
389 outfile << R"(<VTKFile type="PUnstructuredGrid" version="0.1" )"
390 << "byte_order=\"LittleEndian\">" << endl;
391 outfile << "<PUnstructuredGrid GhostLevel=\"0\">" << endl;
392 outfile << "<PPoints> " << endl;
393 outfile << R"(<PDataArray type="Float64" NumberOfComponents=")" << 3
394 << "\"/> " << endl;
395 outfile << "</PPoints>" << endl;
396 outfile << "<PCells>" << endl;
397 outfile << "<PDataArray type=\"Int32\" Name=\"connectivity\" "
398 "NumberOfComponents=\"1\"/>"
399 << endl;
400 outfile << "<PDataArray type=\"Int32\" Name=\"offsets\" "
401 "NumberOfComponents=\"1\"/>"
402 << endl;
403 outfile << "<PDataArray type=\"UInt8\" Name=\"types\" "
404 "NumberOfComponents=\"1\"/>"
405 << endl;
406 outfile << "</PCells>" << endl;
407 outfile << "<PPointData Scalars=\"Material\">" << endl;
408 for (int i = 0; i < m_f->m_variables.size(); ++i)
409 {
410 outfile << R"(<PDataArray type="Float64" Name=")" << m_f->m_variables[i]
411 << "\"/>" << endl;
412 }
413 outfile << "</PPointData>" << endl;
414
415 for (int i = 0; i < nprocs; ++i)
416 {
417 boost::format pad("P%1$07d.vtu");
418 pad % i;
419 outfile << "<Piece Source=\"" << path << "/" << pad.str() << "\"/>"
420 << endl;
421 }
422 outfile << "</PUnstructuredGrid>" << endl;
423 outfile << "</VTKFile>" << endl;
424
425 cout << "Written file: " << filename << endl;
426}

References CellMLToNektar.pycml::format, Nektar::FieldUtils::OutputFileBase::GetPath(), Nektar::FieldUtils::Module::m_config, Nektar::FieldUtils::Module::m_f, and Nektar::LibUtilities::PortablePath().

Referenced by v_OutputFromExp(), and v_OutputFromPts().

◆ WriteVtkFooter()

void Nektar::FieldUtils::OutputVtkBase::WriteVtkFooter ( std::ostream &  outfile)
private

Definition at line 338 of file OutputVtkBase.cpp.

339{
340 outfile << " </UnstructuredGrid>" << endl;
341 outfile << "</VTKFile>" << endl;
342}

Referenced by v_OutputFromExp(), and v_OutputFromPts().

◆ WriteVtkHeader()

void Nektar::FieldUtils::OutputVtkBase::WriteVtkHeader ( std::ostream &  outfile)
private

Definition at line 330 of file OutputVtkBase.cpp.

331{
332 outfile << "<?xml version=\"1.0\"?>" << endl;
333 outfile << R"(<VTKFile type="UnstructuredGrid" version="0.1" )"
334 << "byte_order=\"LittleEndian\">" << endl;
335 outfile << " <UnstructuredGrid>" << endl;
336}

Referenced by v_OutputFromExp(), and v_OutputFromPts().

Member Data Documentation

◆ m_className

ModuleKey Nektar::FieldUtils::OutputVtkBase::m_className
static
Initial value:
=
"Writes a VTU file.")
static std::shared_ptr< Module > create(FieldSharedPtr f)
Creates an instance of this class.
Definition: OutputVtkBase.h:49
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:197
std::pair< ModuleType, std::string > ModuleKey
Definition: Module.h:180
ModuleFactory & GetModuleFactory()
Definition: Module.cpp:47

Definition at line 53 of file OutputVtkBase.h.