Ignore:
Timestamp:
Feb 12, 2016, 11:15:24 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, 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_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
90821d
Parents:
65c323
git-author:
Frederik Heber <heber@…> (10/29/15 12:52:29)
git-committer:
Frederik Heber <heber@…> (02/12/16 23:15:24)
Message:

Extracted all ObservedValue functionality out of GLMoleculeObject_molecule.

  • see previous commit for explanations.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject_molecule.cpp

    r65c323 r494478  
    4040#include <Qt3D/qglbuilder.h>
    4141
     42#include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.hpp"
     43
    4244#include "CodePatterns/MemDebug.hpp"
    4345
     
    4749#include "CodePatterns/IteratorAdaptors.hpp"
    4850#include "CodePatterns/Log.hpp"
    49 #include "CodePatterns/Observer/Notification.hpp"
    50 #include "CodePatterns/Observer/ObserverLog.hpp"
    51 
    52 #include "Atom/atom.hpp"
    53 #include "molecule.hpp"
    54 #include "Descriptors/AtomIdDescriptor.hpp"
    55 #include "Descriptors/MoleculeIdDescriptor.hpp"
    56 #include "Element/element.hpp"
     51
    5752#include "LinearAlgebra/Vector.hpp"
    5853#include "LinkedCell/PointCloudAdaptor.hpp"
     
    6661#include "World.hpp"
    6762
    68 #include "ObservedValue_wCallback.hpp"
    69 #include "ObservedValue_UpdateAtoms.hpp"
    70 
    7163using namespace boost::assign;
    72 
    73 #include "GLMoleculeObject_atom.hpp"
    7464
    7565static Observable::channels_t getAllAtomicChangesChannels()
     
    8070}
    8171
    82 static Observable::channels_t getAllAtomicObservedChannels()
    83 {
    84   Observable::channels_t channels;
    85   channels += molecule::AtomInserted, molecule::AtomRemoved, molecule::AtomMoved;
    86   return channels;
    87 }
    88 
    89 // static instances
    9072const Observable::channels_t GLMoleculeObject_molecule::HullChannels(getAllAtomicChangesChannels());
    91 const Observable::channels_t GLMoleculeObject_molecule::BoundingBoxChannels(1, molecule::BoundingBoxChanged);
    92 const Observable::channels_t GLMoleculeObject_molecule::IndexChannels(1, molecule::IndexChanged);
    93 const Observable::channels_t GLMoleculeObject_molecule::NameChannels(1, molecule::MoleculeNameChanged);
    9473
    9574static QGLSceneNode *createMoleculeMesh(const QGeometryData &_geo)
     
    10483GLMoleculeObject_molecule::GLMoleculeObject_molecule(
    10584    QObject *parent,
    106     const moleculeId_t _molid,
    107     QtObservedInstanceBoard * _board,
    108     std::vector<boost::any> _ObservedValues) :
     85    QtObservedInstanceBoard &_board,
     86    QtObservedMolecule::ptr _ObservedMolecule) :
    10987  GLMoleculeObject((QGLSceneNode *)NULL, parent),
    110   Observer(std::string("GLMoleculeObject_molecule")+toString(_molid)),
    11188  owner(NULL),
    112   molref(getMolecule(_molid)),
     89  molref(QtObservedMolecule::getMolecule(_ObservedMolecule->getMolIndex())),
    11390  /* We must not use boost::cref(this) as "this" has not been properly constructed and seemingly
    11491   * boost::cref tries to do some magic to grasp the inheritance hierarchy which fails because
    11592   * the class has not been fully constructed yet. "This" itself seems to be working fine.
    11693   */
    117   ObservedValues(_ObservedValues),
    118   subjectKilledCount(0),
    11994  TesselationHullUpdater(
    12095      boost::bind(&GLMoleculeObject_molecule::updateTesselationHull, this)
     
    12398      molref,
    12499      TesselationHullUpdater,
    125       "MoleculeTesselationHull_"+toString(_molid),
     100      "MoleculeTesselationHull_"+toString(_ObservedMolecule->getMolIndex()),
    126101      HullChannels),
    127102  hoverAtomId(-1),
    128   AllsignedOnChannels(getAllAtomicObservedChannels().size()),
    129   signedOnChannels(0),
    130   board(_board)
    131 {
    132   init(_molid);
     103  board(_board),
     104  ObservedMolecule(_ObservedMolecule)
     105{
     106  init(ObservedMolecule->getMolIndex());
    133107}
    134108
     
    136110    QGLSceneNode *mesh[],
    137111    QObject *parent,
    138     const moleculeId_t _molid,
    139     QtObservedInstanceBoard * _board,
    140     std::vector<boost::any> _ObservedValues) :
     112    QtObservedInstanceBoard &_board,
     113    QtObservedMolecule::ptr _ObservedMolecule) :
    141114  GLMoleculeObject(mesh, parent),
    142   Observer(std::string("GLMoleculeObject_molecule")+toString(_molid)),
    143115  owner(NULL),
    144   molref(getMolecule(_molid)),
     116  molref(QtObservedMolecule::getMolecule(_ObservedMolecule->getMolIndex())),
    145117  /* We must not use boost::cref(this) as "this" has not been properly constructed and seemingly
    146118   * boost::cref tries to do some magic to grasp the inheritance hierarchy which fails because
    147119   * the class has not been fully constructed yet. "This" itself seems to be working fine.
    148120   */
    149   ObservedValues(_ObservedValues),
    150   subjectKilledCount(0),
    151121  TesselationHullUpdater(
    152122      boost::bind(&GLMoleculeObject_molecule::updateTesselationHull, this)
     
    155125      molref,
    156126      TesselationHullUpdater,
    157       "MoleculeTesselationHull_"+toString(_molid),
     127      "MoleculeTesselationHull_"+toString(_ObservedMolecule->getMolIndex()),
    158128      HullChannels),
    159129  hoverAtomId(-1),
    160   AllsignedOnChannels(getAllAtomicObservedChannels().size()),
    161   signedOnChannels(0),
    162   board(_board)
    163 {
    164   init(_molid);
     130  board(_board),
     131  ObservedMolecule(_ObservedMolecule)
     132{
     133  init(ObservedMolecule->getMolIndex());
    165134}
    166135
     
    175144  m_visible = false;
    176145
    177   activateObserver();
    178 
    179146  connect (this, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SLOT(hoverChangedSignalled(GLMoleculeObject *)));
    180147  connect (this, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SIGNAL(changed()));
    181   connect (this, SIGNAL(TesselationHullChanged()), this, SLOT(resetTesselationHull()), Qt::QueuedConnection);
    182   connect (this, SIGNAL(BoundingBoxChanged()), this, SLOT(resetBoundingBox()), Qt::QueuedConnection);
    183   connect (this, SIGNAL(IdChanged()), this, SLOT(resetIndex()), Qt::QueuedConnection);
    184   connect (this, SIGNAL(AtomInserted(const atomId_t)), this, SLOT(atomInserted(const atomId_t)), Qt::QueuedConnection);
    185   connect (this, SIGNAL(AtomRemoved(const atomId_t)), this, SLOT(atomRemoved(const atomId_t)), Qt::QueuedConnection);
    186   if (board != NULL) {
    187     connect(board, SIGNAL(atomInserted(const atomId_t)),
    188         this, SLOT(atomInserted(const atomId_t)));
    189     connect(board, SIGNAL(atomRemoved(const atomId_t)),
    190         this, SLOT(atomRemoved(const atomId_t)));
    191   }
     148  connect (ObservedMolecule.get(), SIGNAL(tesselationhullChanged()), this, SLOT(resetTesselationHull()));
     149  connect (ObservedMolecule.get(), SIGNAL(boundingboxChanged()), this, SLOT(resetBoundingBox()));
     150  connect (ObservedMolecule.get(), SIGNAL(indexChanged()), this, SLOT(resetIndex()));
     151  connect (ObservedMolecule.get(), SIGNAL(atomInserted(const atomId_t)), this, SLOT(atomInserted(const atomId_t)));
     152  connect (ObservedMolecule.get(), SIGNAL(atomRemoved(const atomId_t)), this, SLOT(atomRemoved(const atomId_t)));
    192153
    193154  connect( this, SIGNAL(clicked()), this, SLOT(wasClicked()));
     
    195156
    196157GLMoleculeObject_molecule::~GLMoleculeObject_molecule()
    197 {
    198   deactivateObserver();
    199   board->returnMoleculeObservedValues(getMolIndex(), ObservedValues);
    200 }
    201 
    202 void GLMoleculeObject_molecule::deactivateObserver()
    203 {
    204   if (owner != NULL) {
    205     Observable::channels_t channels = getAllAtomicObservedChannels();
    206     for (Observable::channels_t::const_iterator iter = channels.begin();
    207         iter != channels.end(); ++iter)
    208       owner->signOff(this, *iter);
    209     owner = NULL;
    210     signedOnChannels = 0;
    211   }
    212 }
    213 
    214 void GLMoleculeObject_molecule::activateObserver()
    215 {
    216   // sign on as observer (obtain non-const instance before)
    217   const molecule * const _molecule = getMolecule(getMolIndex());
    218   if (_molecule != NULL) {
    219     Observable::channels_t channels = getAllAtomicObservedChannels();
    220     owner = static_cast<const Observable *>(_molecule);
    221     for (Observable::channels_t::const_iterator iter = channels.begin();
    222         iter != channels.end(); ++iter)
    223       owner->signOn(this, *iter);
    224   } else {
    225     ELOG(1, "GLMoleculeObject_molecule() - added null object for not present mol id " << getMolIndex());
    226   }
    227 
    228 }
     158{}
    229159
    230160void GLMoleculeObject_molecule::addAtomBonds(
     
    249179  QGeometryData geo;
    250180
    251   const molecule * const molref = getMolecule(getMolIndex());
     181  const molecule * const molref =
     182      QtObservedMolecule::getMolecule(ObservedMolecule->getMolIndex());
    252183  if (molref == NULL) {
    253     ELOG(1, "Could not createMoleculeMesh, molecule with id " << getMolIndex() << " already gone.");
     184    ELOG(1, "Could not createMoleculeMesh, molecule with id "
     185        << ObservedMolecule->getMolIndex() << " already gone.");
    254186    return geo;
    255187  }
     
    273205    // Tesselate the points.
    274206    Tesselation T;
    275     PointCloudAdaptor<molecule> cloud(const_cast<molecule *>(molref), getMolName());
     207    PointCloudAdaptor<molecule> cloud(
     208        const_cast<molecule *>(molref),
     209        ObservedMolecule->getMolName());
    276210    T(cloud, minradius);
    277211
     
    320254}
    321255
    322 molecule::BoundingBoxInfo GLMoleculeObject_molecule::initBoundingBox()
    323 {
    324   molecule::BoundingBoxInfo info;
    325   info.position = zeroVec;
    326   info.radius = 0.;
    327   return info;
    328 }
    329 
    330 molecule::BoundingBoxInfo GLMoleculeObject_molecule::updateBoundingBox(
    331     const boost::function<const moleculeId_t ()> &_getMolIndex)
    332 {
    333   const molecule * const mol = getMolecule(_getMolIndex());
    334   return mol->getBoundingBox();
    335 }
    336 
    337 moleculeId_t GLMoleculeObject_molecule::updateIndex()
    338 {
    339   return const_cast<const World &>(World::getInstance()).lastChangedMolId();
    340 }
    341 
    342 std::string GLMoleculeObject_molecule::updateName(
    343     const boost::function<const moleculeId_t ()> &_getMolIndex)
    344 {
    345   const molecule * const mol = getMolecule(_getMolIndex());
    346   return mol->getName();
    347 }
    348 
    349256void GLMoleculeObject_molecule::resetTesselationHull()
    350257{
     
    356263void GLMoleculeObject_molecule::resetBoundingBox()
    357264{
    358   molecule::BoundingBoxInfo info = getBoundingBox();
     265  molecule::BoundingBoxInfo info = ObservedMolecule->getBoundingBox();
    359266  setPosition(QVector3D(info.position[0], info.position[1], info.position[2]));
    360267  setScale(info.radius + 0.3); // getBoundingSphere() only sees atoms as points, so make the box a bit bigger
     
    363270void GLMoleculeObject_molecule::resetIndex()
    364271{
    365   const atomId_t newId = getMolIndex();
     272  const atomId_t newId = ObservedMolecule->getMolIndex();
    366273  const size_t oldId = objectId();
    367274  ASSERT( newId != oldId,
     
    371278
    372279  emit indexChanged(this, oldId, newId);
    373 }
    374 
    375 void GLMoleculeObject_molecule::resetName()
    376 {
    377280}
    378281
     
    418321}
    419322
    420 void GLMoleculeObject_molecule::update(Observable *publisher)
    421 {
    422   ASSERT(0,
    423       "GLMoleculeObject_molecule::update() - general update from unexpected source.");
    424 }
    425 
    426 void GLMoleculeObject_molecule::subjectKilled(Observable *publisher)
    427 {
    428   ++signedOnChannels;
    429 
    430   if (signedOnChannels == AllsignedOnChannels) {
    431     // remove owner: no more signOff needed
    432     owner = NULL;
    433 
    434     board->moleculecountsubjectKilled(getMolIndex());
    435   }
    436 }
    437 
    438 void GLMoleculeObject_molecule::recieveNotification(Observable *publisher, Notification_ptr notification)
    439 {
    440   const molecule * const _molecule = getMolecule(getMolIndex());
    441   // when molecule is NULL we will soon get destroyed anyway
    442   if (_molecule == NULL)
    443     return;
    444   if (publisher == dynamic_cast<const Observable*>(_molecule)){
    445     // notification from atom
    446 #ifdef LOG_OBSERVER
    447     observerLog().addMessage() << "++ Update of Observer "<< observerLog().getName(static_cast<Observer *>(this))
    448           << " received notification from molecule " << getMolIndex() << " for channel "
    449           << notification->getChannelNo() << ".";
    450 #endif
    451     switch (notification->getChannelNo()) {
    452       case molecule::AtomInserted:
    453       case molecule::AtomRemoved:
    454       case molecule::AtomMoved:
    455       {
    456   #ifdef LOG_OBSERVER
    457         observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that atom "+toString(_id)+" has been inserted.";
    458   #endif
    459         emit TesselationHullChanged();
    460         emit BoundingBoxChanged();
    461         break;
    462       }
    463       case molecule::IndexChanged:
    464       {
    465   #ifdef LOG_OBSERVER
    466         const atomId_t _id = _molecule->lastChangedAtomId();
    467         observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that atom "+toString(_id)+"'s index has changed.";
    468   #endif
    469         emit IdChanged();
    470         break;
    471       }
    472       default:
    473         break;
    474     }
    475   }
    476 }
    477323
    478324void GLMoleculeObject_molecule::initialize(QGLView *view, QGLPainter *painter)
     
    573419          GLMoleculeObject::meshSphere,
    574420          this,
    575           board->getObservedAtom(_id));
     421          board.getObservedAtom(_id));
    576422  ASSERT( atomObject != NULL,
    577423      "GLMoleculeObject_molecule::atomInserted - could not create atom object for "+toString(_id));
     
    582428
    583429  qRegisterMetaType<atomId_t>("atomId_t");
    584   qRegisterMetaType<bond::ptr>("bond::ptr");
    585430  qRegisterMetaType<GLMoleculeObject_bond::SideOfBond>("GLMoleculeObject_bond::SideOfBond");
    586431  connect (atomObject, SIGNAL(clicked(atomId_t)), this, SIGNAL(atomClicked(atomId_t)));
     
    645490    if (moleculeObject == this){
    646491      // Propagate signal.
    647       emit hoverChanged(getMolIndex(), 0);
     492      emit hoverChanged(ObservedMolecule->getMolIndex(), 0);
    648493    }
    649494  }
     
    748593void GLMoleculeObject_molecule::wasClicked()
    749594{
    750   LOG(4, "INFO: GLMoleculeObject_molecule: atom " << getMolIndex() << " has been clicked");
    751   emit moleculeClicked(getMolIndex());
     595  LOG(4, "INFO: GLMoleculeObject_molecule: atom "
     596      << ObservedMolecule->getMolIndex() << " has been clicked");
     597  emit moleculeClicked(ObservedMolecule->getMolIndex());
    752598}
    753599
     
    777623}
    778624
    779 const molecule * const GLMoleculeObject_molecule::getMolecule(const moleculeId_t _id)
    780 {
    781   const molecule * const mol = const_cast<const World &>(World::getInstance()).
    782       getMolecule(MoleculeById(_id));
    783   return mol;
    784 }
    785 
    786 void GLMoleculeObject_molecule::initObservedValues(
    787     std::vector<boost::any> &_ObservedValues,
    788     const moleculeId_t _molid,
    789     const molecule * const _molref,
    790     const boost::function<void(const moleculeId_t)> &_subjectKilled)
    791 {
    792   /* This is an old note from when the code was still part of cstor's initializer body.
    793    * TODO: Probably does not apply anymore but has not yet been tested.
    794    *
    795    * We must not use boost::cref(this) as "this" has not been properly constructed and seemingly
    796    * boost::cref tries to do some magic to grasp the inheritance hierarchy which fails because
    797    * the class has not been fully constructed yet. "This" itself seems to be working fine.
    798    */
    799 
    800   ASSERT( _ObservedValues.size() == MAX_ObservedTypes,
    801       "GLMoleculeObject_molecule::initObservedValues() - given ObservedValues has not correct size.");
    802 
    803   // fill ObservedValues: index first
    804   const boost::function<moleculeId_t ()> MolIndexUpdater(
    805       boost::bind(&GLMoleculeObject_molecule::updateIndex));
    806 
    807   ObservedValue_wCallback<moleculeId_t> * const IndexObservable =
    808       new ObservedValue_wCallback<moleculeId_t>(
    809         _molref,
    810         MolIndexUpdater,
    811         "MoleculeIndex_"+toString(_molid),
    812         _molid,
    813         IndexChannels,
    814         _subjectKilled);
    815   _ObservedValues[MolIndex] = IndexObservable;
    816 
    817   const boost::function<const moleculeId_t ()> MolIndexGetter =
    818       boost::bind(&ObservedValue_wCallback<moleculeId_t>::get,
    819           IndexObservable);
    820 
    821   // fill ObservedValues: then all the other that need index
    822   const boost::function<std::string ()> MolNameUpdater(
    823       boost::bind(&GLMoleculeObject_molecule::updateName, MolIndexGetter));
    824   const boost::function<molecule::BoundingBoxInfo ()> BoundingBoxUpdater(
    825       boost::bind(&GLMoleculeObject_molecule::updateBoundingBox, MolIndexGetter));
    826 
    827   _ObservedValues[MolName] = new ObservedValue_wCallback<std::string, moleculeId_t>(
    828       _molref,
    829       MolNameUpdater,
    830       "MoleculeName_"+toString(_molid),
    831       MolNameUpdater(),
    832       NameChannels,
    833       _subjectKilled,
    834       MolIndexGetter);
    835   _ObservedValues[BoundingBox] = new ObservedValue_wCallback<molecule::BoundingBoxInfo, moleculeId_t>(
    836       _molref,
    837       BoundingBoxUpdater,
    838       "MoleculeBoundingBox_"+toString(_molid),
    839       initBoundingBox(),
    840       BoundingBoxChannels,
    841       _subjectKilled,
    842       MolIndexGetter);
    843 }
    844 
    845 void GLMoleculeObject_molecule::destroyObservedValues(
    846     std::vector<boost::any> &_ObservedValues)
    847 {
    848   delete boost::any_cast<ObservedValue_wCallback<moleculeId_t> *>(_ObservedValues[MolIndex]);
    849   delete boost::any_cast<ObservedValue_wCallback<std::string, moleculeId_t> *>(_ObservedValues[MolName]);
    850   delete boost::any_cast<ObservedValue_wCallback<molecule::BoundingBoxInfo, moleculeId_t> *>(_ObservedValues[BoundingBox]);
    851   _ObservedValues.clear();
    852 }
    853 
    854 moleculeId_t GLMoleculeObject_molecule::getMolIndex() const
    855 {
    856   return boost::any_cast<ObservedValue_wCallback<moleculeId_t> *>(ObservedValues[MolIndex])->get();
    857 }
    858 
    859 std::string GLMoleculeObject_molecule::getMolName() const
    860 {
    861   return boost::any_cast<ObservedValue_wCallback<std::string, moleculeId_t> *>(ObservedValues[MolName])->get();
    862 }
    863 
    864 molecule::BoundingBoxInfo GLMoleculeObject_molecule::getBoundingBox() const
    865 {
    866   return boost::any_cast<ObservedValue_wCallback<molecule::BoundingBoxInfo, moleculeId_t> *>(ObservedValues[BoundingBox])->get();
    867 }
    868625
    869626GLMoleculeObject_molecule::atoms_t GLMoleculeObject_molecule::getPresentAtoms() const
Note: See TracChangeset for help on using the changeset viewer.