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

STYLE : supress cout/endl

parent 15add151
No related branches found
No related tags found
No related merge requests found
......@@ -223,7 +223,6 @@ void
AtmosphericRadiativeTerms
::SetIntrinsicAtmosphericReflectance(unsigned int id, const double & val)
{
std::cout<<m_Values.size()<<" "<<id+1<<std::endl;
if ( m_Values.size()<id+1 )
{
for (unsigned int j=0; j<(id+1-m_Values.size());++j)
......@@ -232,7 +231,6 @@ AtmosphericRadiativeTerms
m_Values.push_back(temp);
}
}
std::cout<<m_Values.size()<<" "<<id+1<<std::endl;
m_Values[id]->SetIntrinsicAtmosphericReflectance(val);
}
void
......
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