Skip to content

Commit

Permalink
Removed invalid character at the beginning of some lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredwhite547 committed Mar 11, 2020
1 parent 29afebf commit 48160ea
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/Fitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,20 +228,20 @@ bool fitGaussians(const std::vector<int>& indexData, const std::vector<int>& amp
}

//Write waveform if trace logging
if(spdlog::default_logger()->level() == spdlog::level::trace){
std::string tmp;
for(auto val : indexData){
tmp+=std::to_string(val)+" ";
}
spdlog::trace("Index Data:\n{}", tmp);
tmp.clear();
for(auto val : amplitudeData){
tmp+=std::to_string(val)+" ";
}
spdlog::trace("Amplitude Data:\n{}", tmp);
}
if(spdlog::default_logger()->level() == spdlog::level::trace){
std::string tmp;
for(auto val : indexData){
tmp+=std::to_string(val)+" ";
}
spdlog::trace("Index Data:\n{}", tmp);

tmp.clear();
for(auto val : amplitudeData){
tmp+=std::to_string(val)+" ";
}

spdlog::trace("Amplitude Data:\n{}", tmp);
}

//Create workspace and params
std::unique_ptr<gsl_vector, decltype(&gsl_vector_free)> params
Expand Down

0 comments on commit 48160ea

Please sign in to comment.