Skip to content
Snippets Groups Projects
Commit 51f46b44 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH: follow ITK guidelines and add indentation in PrintSelf method

parent f4f833a6
No related merge requests found
......@@ -72,11 +72,11 @@ AtmosphericCorrectionParameters
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
os << "Atmospheric pressure : " << m_AtmosphericPressure << std::endl;
os << "Water vapor amount : " << m_WaterVaporAmount << std::endl;
os << "Ozone amount : " << m_OzoneAmount << std::endl;
os << "Aerosol model : " << m_AerosolModel << std::endl;
os << "Aerosol optical : " << m_AerosolOptical << std::endl;
os << indent << "Atmospheric pressure : " << m_AtmosphericPressure << std::endl;
os << indent << "Water vapor amount : " << m_WaterVaporAmount << std::endl;
os << indent << "Ozone amount : " << m_OzoneAmount << std::endl;
os << indent << "Aerosol model : " << m_AerosolModel << std::endl;
os << indent << "Aerosol optical : " << m_AerosolOptical << std::endl;
}
} // end namespace otb
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment