| 150 | } |
| 151 | |
| 152 | void vtkNetCDFReader::PrintSelf(ostream& os, vtkIndent indent) |
| 153 | { |
| 154 | this->Superclass::PrintSelf(os, indent); |
| 155 | |
| 156 | os << indent << "FileName: " << (this->FileName ? this->FileName : "(nullptr)") << endl; |
| 157 | os << indent << "ReplaceFillValueWithNan: " << this->ReplaceFillValueWithNan << endl; |
| 158 | |
| 159 | os << indent << "VariableArraySelection:" << endl; |
| 160 | this->VariableArraySelection->PrintSelf(os, indent.GetNextIndent()); |
| 161 | os << indent << "AllVariableArrayNames:" << endl; |
| 162 | this->GetAllVariableArrayNames()->PrintSelf(os, indent.GetNextIndent()); |
| 163 | os << indent << "VariableDimensions: " << this->VariableDimensions << endl; |
| 164 | os << indent << "AllDimensions: " << this->AllDimensions << endl; |
| 165 | } |
| 166 | |
| 167 | //------------------------------------------------------------------------------ |
| 168 | int vtkNetCDFReader::RequestDataObject(vtkInformation* vtkNotUsed(request), |
nothing calls this directly
no test coverage detected