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

Method PrintSelf

Common/ExecutionModel/vtkAlgorithm.cxx:865–898  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

863
864//------------------------------------------------------------------------------
865void vtkAlgorithm::PrintSelf(ostream& os, vtkIndent indent)
866{
867 this->Superclass::PrintSelf(os, indent);
868 if (this->HasExecutive())
869 {
870 os << indent << "Executive: " << this->Executive << "\n";
871 }
872 else
873 {
874 os << indent << "Executive: (none)\n";
875 }
876
877 os << indent << "ErrorCode: " << vtkErrorCode::GetStringFromErrorCode(this->ErrorCode) << endl;
878
879 if (this->Information)
880 {
881 os << indent << "Information: " << this->Information << "\n";
882 }
883 else
884 {
885 os << indent << "Information: (none)\n";
886 }
887
888 os << indent << "AbortExecute: " << (this->AbortExecute ? "On\n" : "Off\n");
889 os << indent << "Progress: " << this->Progress << "\n";
890 if (this->ProgressText)
891 {
892 os << indent << "Progress Text: " << this->ProgressText << "\n";
893 }
894 else
895 {
896 os << indent << "Progress Text: (None)\n";
897 }
898}
899
900//------------------------------------------------------------------------------
901vtkTypeBool vtkAlgorithm::HasExecutive()

Callers

nothing calls this directly

Calls 1

HasExecutiveMethod · 0.95

Tested by

no test coverage detected