Skip to content
Snippets Groups Projects
Commit a9f2091b authored by Giacomo Strangolino's avatar Giacomo Strangolino
Browse files

fix: lambda curve color and style linked to lambda 1,2,3... number

parent 64df851a
Branches master
No related merge requests found
......@@ -5,7 +5,7 @@ include($${CUMBIA_ROOT}/include/quapps/quapps.pri)
CONFIG += debug
DEFINES -= QT_NO_DEBUG_OUTPUT
# DEFINES -= QT_NO_DEBUG_OUTPUT
# RESOURCES +=
......
......@@ -75,7 +75,6 @@ bool I0MMonPlot::yAutoScale() const {
}
void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int, double> lambdamap, int nsamples)
{
qDebug() << __PRETTY_FUNCTION__ << lambdamap;
m_multiread_plu_i->unsetSources();
foreach(const QString& cn, m_curvesymap.keys())
removeCurve(cn);
......@@ -100,7 +99,6 @@ void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int,
}
m_curvesymap[cuna] = m_symstyles[(lambdai-1) % m_symstyles.size()];
}
qDebug() << __PRETTY_FUNCTION__ << "settings sources: x " << x << " y " << y << "time mode" << m_time_mode;
if(m_time_mode) {
if(m_multiread_plu_i)
m_multiread_plu_i->insertSource(y, 0);
......@@ -114,9 +112,6 @@ void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int,
}
}
updateLegend();
printf("I0MMonPlot::setSources curvesSize %d\n", curves().size());
foreach(QwtPlotCurve *c, curves())
printf("- %s\n", qstoc(c->title().text()));
}
void I0MMonPlot::setYBounds(double ymi, double yma) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment