1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 08:55:37 +00:00
LatAnalyze/lib/FitInterface.cpp

534 lines
12 KiB
C++
Raw Normal View History

2016-03-08 19:37:51 +00:00
/*
* FitInterface.cpp, part of LatAnalyze 3
*
* Copyright (C) 2013 - 2016 Antonin Portelli
*
* LatAnalyze 3 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LatAnalyze 3 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LatAnalyze 3. If not, see <http://www.gnu.org/licenses/>.
*/
#include <LatAnalyze/FitInterface.hpp>
#include <LatAnalyze/includes.hpp>
using namespace std;
using namespace Latan;
// error checks ////////////////////////////////////////////////////////////////
#define checkXDim(i)\
if ((i) >= getNXDim())\
{\
LATAN_ERROR(Range, "X dimension " + strFrom(i) + " out of range");\
}
#define checkXIndex(vi, i)\
if ((vi) >= getXSize(i))\
{\
LATAN_ERROR(Range, "index " + strFrom(vi) + " in X dimension "\
+ strFrom(i) + " out of range");\
}
#define checkYDim(j)\
if ((j) >= getNYDim())\
{\
LATAN_ERROR(Range, "Y dimension " + strFrom(j) + " out of range");\
}
#define checkDataIndex(k)\
if ((k) >= maxDataIndex_)\
{\
LATAN_ERROR(Range, "data point index " + strFrom(k) + " invalid");\
}
#define checkDataCoord(v)\
if (static_cast<Index>((v).size()) != getNXDim())\
{\
LATAN_ERROR(Size, "number of coordinates and number of X dimensions "\
"mismatch");\
}\
for (unsigned int i_ = 0; i_ < (v).size(); ++i_)\
{\
checkXIndex((v)[i_], i_);\
}
#define checkPoint(k, j)\
if (!isXUsed(k, j))\
{\
LATAN_ERROR(Range, "no data point in Y dimension " + strFrom(j)\
+ " with index " + strFrom(k));\
}
2016-03-08 19:37:51 +00:00
/******************************************************************************
* FitInterface implementation *
******************************************************************************/
// constructor /////////////////////////////////////////////////////////////////
FitInterface::FitInterface(void)
{}
// add dimensions //////////////////////////////////////////////////////////////
void FitInterface::addXDim(const string name, const Index nData,
const bool isExact)
2016-03-08 19:37:51 +00:00
{
if (getYSize() != 0)
{
LATAN_ERROR(Logic, "cannot add an X dimension if fit data is "
"not empty");
}
else
{
xDimName_.push_back(name);
xSize_.push_back(nData);
xIsExact_.push_back(isExact);
xDimIndex_[name] = xDimName_.size();
maxDataIndex_ *= nData;
updateDataSize();
}
2016-03-08 19:37:51 +00:00
}
void FitInterface::addYDim(const string name)
{
yDimName_.push_back(name);
yDataIndex_.push_back(map<Index, bool>());
yDimIndex_[name] = yDimName_.size();
2016-03-08 19:37:51 +00:00
}
// size access /////////////////////////////////////////////////////////////////
Index FitInterface::getNXDim(void) const
2016-03-08 19:37:51 +00:00
{
return xDimName_.size();
}
Index FitInterface::getNYDim(void) const
2016-03-08 19:37:51 +00:00
{
return yDimName_.size();
}
Index FitInterface::getXSize(void) const
{
Index size = 0;
for (Index i = 0; i < getNXDim(); ++i)
{
size += getXSize(i);
}
return size;
}
Index FitInterface::getXSize(const Index i) const
{
checkXDim(i);
return xSize_[i];
}
Index FitInterface::getYSize(void) const
{
Index size = 0;
for (Index j = 0; j < getNYDim(); ++j)
{
size += getYSize(j);
}
return size;
}
Index FitInterface::getYSize(const Index j) const
{
checkYDim(j);
return static_cast<Index>(yDataIndex_[j].size());
}
Index FitInterface::getXFitSize(void) const
{
Index size = 0;
for (Index i = 0; i < getNXDim(); ++i)
{
size += getXFitSize(i);
}
return size;
}
Index FitInterface::getXFitSize(const Index i) const
{
set<Index> fitCoord;
vector<Index> v;
checkXDim(i);
for (Index j = 0; j < getNYDim(); ++j)
{
for (auto &p: yDataIndex_[j])
{
if (p.second)
{
v = dataCoord(p.first);
fitCoord.insert(v[i]);
}
}
}
return fitCoord.size();
}
Index FitInterface::getYFitSize(void) const
{
Index size = 0;
for (Index j = 0; j < getNYDim(); ++j)
{
size += getYFitSize(j);
}
return size;
}
Index FitInterface::getYFitSize(const Index j) const
{
Index size;
auto pred = [](const pair<Index, bool> &p)
{
return p.second;
};
checkYDim(j);
size = count_if(yDataIndex_[j].begin(), yDataIndex_[j].end(), pred);
return size;
}
// Y dimension index helper ////////////////////////////////////////////////////
Index FitInterface::dataIndex(const vector<Index> &v) const
{
Index k, n = static_cast<Index>(v.size());
checkDataCoord(v);
k = xSize_[1]*v[0];
for (unsigned int d = 1; d < n-1; ++d)
{
k = xSize_[d+1]*(v[d] + k);
}
k += v[n-1];
return k;
}
vector<Index> FitInterface::dataCoord(const Index k) const
2016-03-08 19:37:51 +00:00
{
vector<Index> v(getNXDim());
Index buf, dimProd;
checkDataIndex(k);
buf = k;
dimProd = 1;
for (Index d = getNXDim() - 1; d >= 0; --d)
2016-03-08 19:37:51 +00:00
{
v[d] = (buf/dimProd)%xSize_[d];
buf -= dimProd*v[d];
dimProd *= xSize_[d];
2016-03-08 19:37:51 +00:00
}
return v;
2016-03-08 19:37:51 +00:00
}
// enable fit points ///////////////////////////////////////////////////////////
void FitInterface::fitPoint(const bool isFitPoint, const Index k, const Index j)
2016-03-08 19:37:51 +00:00
{
checkPoint(k, j);
yDataIndex_[j][k] = isFitPoint;
}
// variance interface //////////////////////////////////////////////////////////
void FitInterface::assumeXExact(const bool isExact, const Index i)
{
checkXDim(i);
xIsExact_[i] = isExact;
}
void FitInterface::addCorr(set<array<Index, 4>> &s, const bool isCorr,
const array<Index, 4> &c)
{
if (isCorr)
{
s.insert(c);
}
else
{
auto it = s.find(c);
if (it != s.end())
{
s.erase(it);
}
}
}
void FitInterface::assumeXXCorrelated(const bool isCorr, const Index i1,
const Index i2, const Index vi1,
const Index vi2)
{
array<Index, 4> c{{i1, i2, vi1, vi2}};
checkXIndex(vi1, i1);
checkXIndex(vi2, i2);
if ((i1 != i2) or (vi1 != vi2))
{
addCorr(xxCorr_, isCorr, c);
}
}
void FitInterface::assumeYYCorrelated(const bool isCorr, const Index j1,
const Index j2, const Index k1,
const Index k2)
{
array<Index, 4> c{{j1, j2, k1, k2}};
checkPoint(k1, j1);
checkPoint(k2, j2);
if ((j1 != j2) or (k1 != k2))
{
addCorr(yyCorr_, isCorr, c);
}
}
void FitInterface::assumeXYCorrelated(const bool isCorr, const Index i,
const Index j, const Index vi,
const Index k)
{
array<Index, 4> c{{i, j, vi, k}};
checkXIndex(vi, i);
checkPoint(k, j);
addCorr(xyCorr_, isCorr, c);
}
// tests ///////////////////////////////////////////////////////////////////////
bool FitInterface::isXUsed(const Index k) const
{
bool isUsed = false;
for (Index j = 0; j < getNYDim(); ++j)
{
isUsed = isUsed or isXUsed(k, j);
}
return isUsed;
}
bool FitInterface::isXUsed(const Index k, const Index j) const
{
checkYDim(j);
return !(yDataIndex_[j].find(k) == yDataIndex_[j].end());
}
bool FitInterface::isFitPoint(const Index k, const Index j) const
{
checkPoint(k, j);
return yDataIndex_[j].at(k);
}
// register a data point ///////////////////////////////////////////////////////
void FitInterface::registerDataPoint(const Index k, const Index j)
{
checkYDim(j);
yDataIndex_[j][k] = true;
}
// global layout management ////////////////////////////////////////////////////
void FitInterface::updateLayout(void)
{
Index size;
layout_.totalSize = 0;
layout_.totalXSize = 0;
layout_.totalYSize = 0;
layout_.xSize.clear();
layout_.ySize.clear();
layout_.dataIndex.clear();
layout_.xTrans.clear();
layout_.dataTrans.clear();
for (Index i = 0; i < getNXDim(); ++i)
{
if (!xIsExact_[i])
{
size = getXFitSize(i);
layout_.xSize.push_back(size);
layout_.totalXSize += size;
layout_.xTrans[i] = static_cast<Index>(layout_.xSize.size() - 1);
}
}
for (Index j = 0; j < getNYDim(); ++j)
{
size = getYFitSize(j);
layout_.ySize.push_back(size);
layout_.totalYSize += size;
}
layout_.totalSize = layout_.totalXSize + layout_.totalYSize;
layout_.dataIndex.resize(layout_.ySize.size());
for (Index j = 0; j < getNYDim(); ++j)
{
for (auto &p: yDataIndex_[j])
{
if (p.second)
{
layout_.dataIndex[j].push_back(p.first);
layout_.dataTrans[p.first] = layout_.dataIndex[j].size() - 1;
}
}
}
}
// WARNING: NO INDEX CHECKS IN INDEXING FUNCTIONS
Index FitInterface::indX(const Index vi, const Index i) const
{
Index ind, iTrans;
iTrans = layout_.xTrans.at(i);
ind = layout_.totalYSize;
for (Index a = 0; a < iTrans; ++a)
{
ind += layout_.xSize[a];
}
ind += vi;
return ind;
}
Index FitInterface::indY(const Index k, const Index j) const
{
Index ind = 0;
for (Index a = 0; a < j; ++a)
{
ind += layout_.ySize[a];
}
ind += layout_.dataTrans.at(k);
return ind;
}
DMat FitInterface::makeCorrFilter(void) const
{
DMat f = DMat::Identity(layout_.totalSize, layout_.totalSize);
for (auto &c: xxCorr_)
{
f(indX(c[2], c[0]), indX(c[3], c[1])) = 1.;
f(indX(c[3], c[1]), indX(c[2], c[0])) = 1.;
}
for (auto &c: yyCorr_)
{
if (isFitPoint(c[2], c[0]) and isFitPoint(c[3], c[1]))
{
f(indY(c[2], c[0]), indY(c[3], c[1])) = 1.;
f(indY(c[3], c[1]), indY(c[2], c[0])) = 1.;
}
}
for (auto &c: xyCorr_)
{
if (isFitPoint(c[3], c[1]))
{
f(indX(c[2], c[0]), indY(c[3], c[1])) = 1.;
f(indY(c[3], c[1]), indX(c[2], c[0])) = 1.;
}
}
return f;
}
// IO //////////////////////////////////////////////////////////////////////////
ostream & Latan::operator<<(ostream &out, FitInterface &f)
{
out << "X dimensions: " << f.getNXDim() << endl;
for (Index i = 0; i < f.getNXDim(); ++i)
{
out << " * " << i << " \"" << f.xDimName_[i] << "\": ";
out << f.getXSize(i) << " value(s)" << endl;
}
out << "Y dimensions: " << f.getNYDim() << endl;
for (Index j = 0; j < f.getNYDim(); ++j)
{
out << " * " << j << " \"" << f.yDimName_[j] << "\": ";
out << f.getYSize(j) << " value(s)" << endl;
for (auto &p: f.yDataIndex_[j])
{
out << " " << setw(3) << p.first << " (";
for (auto vi: f.dataCoord(p.first))
{
out << vi << ",";
}
out << "\b) fit: " << (p.second ? "true" : "false") << endl;
}
}
out << "X/X correlations (i1 i2 vi1 vi2): ";
if (f.xxCorr_.empty())
{
out << "no" << endl;
}
else
{
out << endl;
for (auto &c: f.xxCorr_)
{
out << " * ";
for (auto i: c)
{
out << i << " ";
}
out << endl;
}
}
out << "Y/Y correlations (j1 j2 k1 k2): ";
if (f.yyCorr_.empty())
{
out << "no" << endl;
}
else
{
out << endl;
for (auto &c: f.yyCorr_)
{
out << " * ";
for (auto i: c)
{
out << i << " ";
}
out << endl;
}
}
out << "X/Y correlations (i j vi k): ";
if (f.xyCorr_.empty())
{
out << "no";
}
else
{
out << endl;
for (auto &c: f.xyCorr_)
{
out << " * ";
for (auto i: c)
{
out << i << " ";
}
out << endl;
}
}
return out;
2016-03-08 19:37:51 +00:00
}