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

Method PrintSelf

Filters/Temporal/vtkDataObjectMeshCache.cxx:187–215  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

185
186//------------------------------------------------------------------------------
187void vtkDataObjectMeshCache::PrintSelf(ostream& os, vtkIndent indent)
188{
189 this->Superclass::PrintSelf(os, indent);
190
191 os << indent << "Cache:";
192 if (this->Cache)
193 {
194 os << endl;
195 this->Cache->PrintSelf(os, indent.GetNextIndent());
196 }
197 else
198 {
199 os << "(none)\n";
200 }
201
202 os << indent << "CachedOriginalMeshTime: " << this->CachedOriginalMeshTime << "\n";
203 os << indent << "CachedConsumerTime: " << this->CachedConsumerTime << "\n";
204
205 os << indent << "OriginalIdsName:\n";
206 for (const auto& attribute : this->OriginalIdsName)
207 {
208 os << indent.GetNextIndent() << vtkDataObject::GetAssociationTypeAsString(attribute.first)
209 << " " << attribute.second << "\n";
210 }
211
212 Status status = this->GetStatus();
213 os << indent << "Status\n:";
214 status.PrintSelf(os, indent.GetNextIndent());
215}
216
217//------------------------------------------------------------------------------
218bool vtkDataObjectMeshCache::IsSupportedData(vtkDataObject* dataobject) const

Callers

nothing calls this directly

Calls 2

GetStatusMethod · 0.95
GetNextIndentMethod · 0.80

Tested by

no test coverage detected