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
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ include($${CUMBIA_ROOT}/include/quapps/quapps.pri) ...@@ -5,7 +5,7 @@ include($${CUMBIA_ROOT}/include/quapps/quapps.pri)
CONFIG += debug CONFIG += debug
DEFINES -= QT_NO_DEBUG_OUTPUT # DEFINES -= QT_NO_DEBUG_OUTPUT
# RESOURCES += # RESOURCES +=
......
...@@ -75,7 +75,6 @@ bool I0MMonPlot::yAutoScale() const { ...@@ -75,7 +75,6 @@ bool I0MMonPlot::yAutoScale() const {
} }
void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int, double> lambdamap, int nsamples) 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(); m_multiread_plu_i->unsetSources();
foreach(const QString& cn, m_curvesymap.keys()) foreach(const QString& cn, m_curvesymap.keys())
removeCurve(cn); removeCurve(cn);
...@@ -100,7 +99,6 @@ void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int, ...@@ -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()]; 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_time_mode) {
if(m_multiread_plu_i) if(m_multiread_plu_i)
m_multiread_plu_i->insertSource(y, 0); m_multiread_plu_i->insertSource(y, 0);
...@@ -114,9 +112,6 @@ void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int, ...@@ -114,9 +112,6 @@ void I0MMonPlot::setSources(const QString &x, const QString &y, const QMap<int,
} }
} }
updateLegend(); 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) { 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