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

Method PrintSelf

Filters/Reduction/vtkToImplicitArrayFilter.cxx:51–85  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

49
50//-------------------------------------------------------------------------
51void vtkToImplicitArrayFilter::PrintSelf(std::ostream& os, vtkIndent indent)
52{
53 this->Superclass::PrintSelf(os, indent);
54 os << indent
55 << (this->UseMaxNumberOfDegreesOfFreedom ? "MaxNumberOfDegreesOfFreedom: "
56 : "TargetReduction: ")
57 << (this->UseMaxNumberOfDegreesOfFreedom ? this->MaxNumberOfDegreesOfFreedom
58 : this->TargetReduction)
59 << "\n";
60 os << indent << "Strategy:";
61 if (this->Internals->Strategy)
62 {
63 os << "\n";
64 this->Internals->Strategy->PrintSelf(os, indent.GetNextIndent());
65 }
66 else
67 {
68 os << "nullptr\n";
69 }
70 os << indent << "PointDataArraySelection: \n";
71 this->GetPointDataArraySelection()->PrintSelf(os, indent.GetNextIndent());
72 os << indent << "CellDataArraySelection: \n";
73 this->GetCellDataArraySelection()->PrintSelf(os, indent.GetNextIndent());
74 os << indent << "FieldDataArraySelection: \n";
75 this->GetFieldDataArraySelection()->PrintSelf(os, indent.GetNextIndent());
76 os << indent << "PointsThenCellsDataArraySelection: \n";
77 this->GetPointsThenCellsDataArraySelection()->PrintSelf(os, indent.GetNextIndent());
78 os << indent << "VertexDataArraySelection: \n";
79 this->GetVertexDataArraySelection()->PrintSelf(os, indent.GetNextIndent());
80 os << indent << "EdgeDataArraySelection: \n";
81 this->GetEdgeDataArraySelection()->PrintSelf(os, indent.GetNextIndent());
82 os << indent << "RowDataArraySelection: \n";
83 this->GetRowDataArraySelection()->PrintSelf(os, indent.GetNextIndent());
84 os << std::flush;
85}
86
87//-------------------------------------------------------------------------
88void vtkToImplicitArrayFilter::SetStrategy(vtkToImplicitStrategy* strat)

Callers

nothing calls this directly

Tested by

no test coverage detected