MCPcopy Create free account
hub / github.com/Kitware/VTK / GetFieldDataNameInFile

Method GetFieldDataNameInFile

IO/Legacy/vtkDataReader.cxx:3680–3691  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

3678}
3679//------------------------------------------------------------------------------
3680const char* vtkDataReader::GetFieldDataNameInFile(int i)
3681{
3682 this->CharacterizeFile();
3683 if (!this->FieldDataNameInFile || i < 0 || i >= this->NumberOfFieldDataInFile)
3684 {
3685 return nullptr;
3686 }
3687 else
3688 {
3689 return this->FieldDataNameInFile[i];
3690 }
3691}
3692
3693//------------------------------------------------------------------------------
3694void vtkDataReader::PrintSelf(ostream& os, vtkIndent indent)

Callers

nothing calls this directly

Calls 1

CharacterizeFileMethod · 0.95

Tested by

no test coverage detected