Skip to content
Snippets Groups Projects
Commit 93c5af87 authored by Dimitar Tasev's avatar Dimitar Tasev
Browse files

Removed new column from PeaksWorkspace, re #24007

Adding the new column in the middle is a breaking change to already existing functionality - tests can be adapted, but user scripts might be affected
parent e92e0949
No related merge requests found
......@@ -989,8 +989,6 @@ double Peak::getValueByColName(const std::string &name_in) const {
return this->getIntensity();
else if (name == "sigint")
return this->getSigmaIntensity();
else if (name == "int/sigint")
return this->getIntensityOverSigma();
else if (name == "bincount")
return this->getBinCount();
else if (name == "row")
......
......@@ -53,7 +53,6 @@ const std::string typeFromName(const std::string &name) {
TYPE_INDEX.emplace("DSpacing", "double");
TYPE_INDEX.emplace("Intens", "double");
TYPE_INDEX.emplace("SigInt", "double");
TYPE_INDEX.emplace("Int/SigInt", "double");
TYPE_INDEX.emplace("BinCount", "double");
TYPE_INDEX.emplace("BankName", "str");
TYPE_INDEX.emplace("Row", "double");
......
......@@ -659,7 +659,6 @@ void PeaksWorkspace::initColumns() {
addPeakColumn("DSpacing");
addPeakColumn("Intens");
addPeakColumn("SigInt");
addPeakColumn("Int/SigInt");
addPeakColumn("BinCount");
addPeakColumn("BankName");
addPeakColumn("Row");
......
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