------------------------------------------------------------------------------
| 17 | |
| 18 | //------------------------------------------------------------------------------ |
| 19 | void vtkAMRMetaData::PrintSelf(ostream& os, vtkIndent indent) |
| 20 | { |
| 21 | this->Superclass::PrintSelf(os, indent); |
| 22 | |
| 23 | os << indent << "Grid description: " << this->GetGridDescription() << "\n"; |
| 24 | os << indent << "Number of blocks per level: "; |
| 25 | for (unsigned int i = 1; i < this->NumBlocks.size(); i++) |
| 26 | { |
| 27 | os << indent << this->NumBlocks[i] - this->NumBlocks[i - 1] << " "; |
| 28 | } |
| 29 | os << "\n"; |
| 30 | } |
| 31 | |
| 32 | // VTK_DEPRECATED_IN_9_6_0("Use Initialize(const std::vector<unsigned int>&) instead") |
| 33 | //------------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected