Changeset d88397 for src/UIElements


Ignore:
Timestamp:
Sep 9, 2016, 10:09:47 AM (8 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_StructOpt_integration_tests, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, GeometryObjects, Gui_displays_atomic_force_velocity, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, Ubuntu_1604_changes, stable
Children:
546f7d
Parents:
4aed01
git-author:
Frederik Heber <heber@…> (09/02/16 08:34:18)
git-committer:
Frederik Heber <heber@…> (09/09/16 10:09:47)
Message:

FIX: Skipping empty curves in QtHomologyList::refill().

  • this does not solve the whole problem. For a large molecule, we have many different graphs to the same "morse_61" potential, which appears then frequently in the plot list ... BUT each shows the data of the first/last plot curve as they are distinguished by name.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Views/Qt4/QtHomologyList.cpp

    r4aed01 rd88397  
    272272        }
    273273
    274         QSeisData data(xvalues, yvalues, QString(potentialname.c_str()));
    275         // couple to QSeisPlotCurve and register the curve
    276         QSeisPlotCurve *curve = new QSeisPlotCurve(QString(potentialname.c_str()), "energy");
    277         curve->updateCurve(&data);
    278         if (!QSeisCurveRegistry::getInstance().isPresentByName(curve->getName()))
    279           QSeisCurveRegistry::getInstance().registerInstance(curve);
    280         else
    281           delete curve;
    282         // couple to QSeisPlotPage
    283         widget->addCurve(potentialname);
    284 
     274        if ((!xvalues.empty()) && (!yvalues.empty())) {
     275          QSeisData data(xvalues, yvalues, QString(potentialname.c_str()));
     276          // couple to QSeisPlotCurve and register the curve
     277          QSeisPlotCurve *curve = new QSeisPlotCurve(QString(potentialname.c_str()), "energy");
     278          curve->updateCurve(&data);
     279          if (!QSeisCurveRegistry::getInstance().isPresentByName(curve->getName()))
     280            QSeisCurveRegistry::getInstance().registerInstance(curve);
     281          else
     282            delete curve;
     283          // couple to QSeisPlotPage
     284          widget->addCurve(potentialname);
     285        }
    285286      }
    286287    }
Note: See TracChangeset for help on using the changeset viewer.