Skip to content
Snippets Groups Projects
Commit 661647c7 authored by adrien-matta's avatar adrien-matta
Browse files

* Fixing conversion to int instead of double in SSSD analysis config

parent 4cd1ab12
No related branches found
No related tags found
No related merge requests found
......@@ -372,7 +372,7 @@ void TSSSDPhysics::ReadAnalysisConfig(){
else if (whatToDo=="PEDESTAL_THRESHOLD") {
AnalysisConfigFile >> DataBuffer;
m_Pedestal_Threshold = atoi(DataBuffer.c_str() );
m_Pedestal_Threshold = atof(DataBuffer.c_str() );
cout << "PEDESTAL THRESHOLD " << m_Pedestal_Threshold << 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