Ignore:
Timestamp:
Jun 21, 2018, 8:31:25 AM (8 years ago)
Author:
Frederik Heber <frederik.heber@…>
Branches:
Candidate_v1.6.1, Candidate_v1.7.0, Candidate_v1.7.1, ChemicalSpaceEvaluator, stable
Children:
d83d64, f5ea10
Parents:
3e334e (diff), 4fc0ea (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'TremoloParser_IncreasedPrecision' into Candidate_v1.6.1

Conflicts:

tests/Python/ForceAnnealing/post/five_carbon_test_bondgraph.data
tests/Python/ForceAnnealing/post/five_carbon_test_no-bondgraph.data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Atom/atom_atominfo.cpp

    r3e334e r8d56a6  
    191191{
    192192  OBSERVE;
    193   NOTIFY(AtomObservable::PositionChanged);
    194193  VectorTrajectory_t::iterator iter = AtomicPosition.find(_step);
    195194  if (iter !=  AtomicPosition.end()) {
    196195    iter->second[i] = value;
    197196  } else {
     197    NOTIFY(TrajectoryChanged);
    198198    Vector newPos;
    199199    newPos[i] = value;
     
    206206        +" present after all?");
    207207  }
     208  if (WorldTime::getTime() == _step)
     209    NOTIFY(AtomObservable::PositionChanged);
    208210}
    209211
     
    278280    iter->second = _newvelocity;
    279281  } else {
     282    NOTIFY(TrajectoryChanged);
    280283#ifndef NDEBUG
    281284    std::pair<VectorTrajectory_t::iterator, bool> inserter =
     
    320323    iter->second = _newforce;
    321324  } else {
     325    NOTIFY(TrajectoryChanged);
    322326#ifndef NDEBUG
    323327    std::pair<VectorTrajectory_t::iterator, bool> inserter =
Note: See TracChangeset for help on using the changeset viewer.