Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 97d15e51 authored by kraus's avatar kraus
Browse files

Resolve "Option MINBINEMITTED and MINSTEPFORREBIN not working"

parent d5f06b35
No related branches found
No related tags found
No related merge requests found
......@@ -295,6 +295,8 @@ Option::Option(const std::string &name, Option *parent):
Attributes::setReal(itsAttr[MTSSUBSTEPS], mtsSubsteps);
Attributes::setReal(itsAttr[REMOTEPARTDEL], remotePartDel);
Attributes::setReal(itsAttr[REPARTFREQ], repartFreq);
Attributes::setReal(itsAttr[MINBINEMITTED], minBinEmitted);
Attributes::setReal(itsAttr[MINSTEPFORREBIN], minStepForRebin);
Attributes::setReal(itsAttr[REBINFREQ], rebinFreq);
Attributes::setBool(itsAttr[RHODUMP], rhoDump);
Attributes::setBool(itsAttr[EBDUMP], ebDump);
......@@ -437,6 +439,14 @@ void Option::execute() {
repartFreq = int(Attributes::getReal(itsAttr[REPARTFREQ]));
}
if (itsAttr[MINBINEMITTED]) {
minBinEmitted = int(Attributes::getReal(itsAttr[MINBINEMITTED]));
}
if (itsAttr[MINSTEPFORREBIN]) {
minStepForRebin = int(Attributes::getReal(itsAttr[MINSTEPFORREBIN]));
}
if(itsAttr[REBINFREQ]) {
rebinFreq = int(Attributes::getReal(itsAttr[REBINFREQ]));
}
......
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