1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/Model/Data/RangeUtil.cpp
//! @brief Implements namespace RangeUtil.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "GUI/Model/Data/RangeUtil.h"
#include "GUI/Model/Axis/AmplitudeAxisItem.h"
#include "GUI/Model/Data/Data1DItem.h"
#include "GUI/Model/Data/Data2DItem.h"
#include <utility>
namespace {
double commonMin(const QVector<AmplitudeAxisItem*>& axes)
{
double min = +std::numeric_limits<double>::max();
for (auto* axis : axes)
if (min > axis->min().dVal())
min = axis->min().dVal();
return min;
}
double commonMax(const QVector<AmplitudeAxisItem*>& axes)
{
double max = -std::numeric_limits<double>::max();
for (auto* axis : axes)
if (max < axis->max().dVal())
max = axis->max().dVal();
return max;
}
std::pair<double, double> commonRange(const QVector<AmplitudeAxisItem*>& axes)
{
return {commonMin(axes), commonMax(axes)};
}
QVector<AmplitudeAxisItem*> valueAxesFromData1DItems(const QVector<Data1DItem*>& items)
{
QVector<AmplitudeAxisItem*> axes;
for (auto* item : items)
axes.append(item->axItemY());
return axes;
}
QVector<AmplitudeAxisItem*> valueAxesFromData2DItems(const QVector<Data2DItem*>& items)
{
QVector<AmplitudeAxisItem*> axes;
for (auto* item : items)
axes.append(item->zAxisItem());
return axes;
}
} // namespace
void GUI::Util::Ranges::setCommonRangeY(QVector<Data1DItem*> items)
{
std::pair<double, double> range = commonRange(valueAxesFromData1DItems(items));
for (auto* item : items)
item->setYrange(range.first, range.second);
}
void GUI::Util::Ranges::setCommonRangeZ(QVector<Data2DItem*> items)
{
std::pair<double, double> range = commonRange(valueAxesFromData2DItems(items));
for (auto* item : items)
item->setZrange(range.first, range.second);
}
|