Skip to content
Snippets Groups Projects
Commit fdafa414 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

STYLE : english printself

parent 0fee08b9
No related branches found
No related tags found
No related merge requests found
......@@ -43,8 +43,8 @@ AtmosphericRadiativeTermsSingleChannel
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os,indent);
os << indent << "Intrinsic Atmospheric Reflectance : " << m_IntrinsicAtmosphericReflectance << std::endl;
os << indent << "Atmospher Shperical Albedo : " << m_SphericalAlbedo << std::endl;
os << indent << "Atmospheric Intrinsic Reflectance : " << m_IntrinsicAtmosphericReflectance << std::endl;
os << indent << "Atmosphere Shperical Albedo : " << m_SphericalAlbedo << std::endl;
os << indent << "Total Gaseous Transmission : " << m_TotalGaseousTransmission << std::endl;
os << indent << "Atmospher Downward Transmittance : " << m_DownwardTransmittance << std::endl;
os << indent << "Atmospher Upward Transmittance : " << m_UpwardTransmittance << std::endl;
......@@ -519,15 +519,15 @@ AtmosphericRadiativeTerms
{
os << "Channel "<< i << " : "<< std::endl;
//ValueType::(os,indent);
os << indent << "Intrinsic Atmospheric Reflectance : " << m_Values[i]->GetIntrinsicAtmosphericReflectance() << std::endl;
os << indent << "Shperical Albedo of the Atmosphere : " << m_Values[i]->GetSphericalAlbedo() << std::endl;
os << indent << "Total Gaseous Transmission : " << m_Values[i]->GetTotalGaseousTransmission() << std::endl;
os << indent << "Downward Transmittance of the Atmospher : " << m_Values[i]->GetDownwardTransmittance() << std::endl;
os << indent << "Upward Transmittance of the Atmospher : " << m_Values[i]->GetUpwardTransmittance() << std::endl;
os << indent << "Upward diffuse transmittance : " << m_Values[i]->GetUpwardDiffuseTransmittance() << std::endl;
os << indent << "Upward direct transmittance : " << m_Values[i]->GetUpwardDirectTransmittance() << std::endl;
os << indent << "Upward diffuse transmittance for rayleigh: " << m_Values[i]->GetUpwardDiffuseTransmittanceForRayleigh() << std::endl;
os << indent << "Upward diffuse transmittance for aerosols: " << m_Values[i]->GetUpwardDiffuseTransmittanceForAerosol() << std::endl;
os << indent << "Intrinsic Atmospheric Reflectance : " << m_Values[i]->GetIntrinsicAtmosphericReflectance() << std::endl;
os << indent << "Shperical Albedo of the Atmosphere : " << m_Values[i]->GetSphericalAlbedo() << std::endl;
os << indent << "Total Gaseous Transmission : " << m_Values[i]->GetTotalGaseousTransmission() << std::endl;
os << indent << "Atmosphere Downward Transmittance : " << m_Values[i]->GetDownwardTransmittance() << std::endl;
os << indent << "Atmosphere Upward Transmittance : " << m_Values[i]->GetUpwardTransmittance() << std::endl;
os << indent << "Upward Diffuse Transmittance : " << m_Values[i]->GetUpwardDiffuseTransmittance() << std::endl;
os << indent << "Upward Direct Transmittance : " << m_Values[i]->GetUpwardDirectTransmittance() << std::endl;
os << indent << "Rayleigh Upward Diffuse Transmittance : " << m_Values[i]->GetUpwardDiffuseTransmittanceForRayleigh() << std::endl;
os << indent << "Aerosols Upward Diffuse Transmittance : " << m_Values[i]->GetUpwardDiffuseTransmittanceForAerosol() << std::endl;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment