MCPcopy Create free account
hub / github.com/MITK/MITK / PrintSelf

Method PrintSelf

Modules/Core/src/DataManagement/mitkTimeGeometry.cpp:172–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170}
171
172void mitk::TimeGeometry::PrintSelf(std::ostream &os, itk::Indent indent) const
173{
174 // Superclass::PrintSelf(os,indent);
175 os << indent << " TimeSteps: " << this->CountTimeSteps() << std::endl;
176
177 os << std::endl;
178 os << indent << " GetGeometryForTimeStep(0): ";
179 if (GetGeometryForTimeStep(0).IsNull())
180 os << "nullptr" << std::endl;
181 else
182 GetGeometryForTimeStep(0)->Print(os, indent);
183}
184
185bool mitk::Equal(const TimeGeometry& leftHandSide, const TimeGeometry& rightHandSide, ScalarType eps, bool verbose)
186{

Callers

nothing calls this directly

Calls 4

GetGeometryForTimeStepFunction · 0.85
CountTimeStepsMethod · 0.45
IsNullMethod · 0.45
PrintMethod · 0.45

Tested by

no test coverage detected