Changeset e480fc for src


Ignore:
Timestamp:
Jun 8, 2016, 6:12:14 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Children:
9ab682
Parents:
c805f7
git-author:
Frederik Heber <heber@…> (05/27/16 18:07:36)
git-committer:
Frederik Heber <heber@…> (06/08/16 18:12:14)
Message:

Renamed SamplingGrid::getDiscreteWindowIndices() -> ::..WindowCopyIndies().

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Summation/SetValues/SamplingGrid.cpp

    rc805f7 re480fc  
    426426}
    427427
    428 void SamplingGrid::getDiscreteWindowIndices(
     428void SamplingGrid::getDiscreteWindowCopyIndices(
    429429    const double *larger_wbegin,
    430430    const double *larger_wend,
     
    459459    // total is used as safe-guard against loss due to discrete conversion
    460460    ASSERT( pre_offset[index]+post_offset[index]+length[index] == total[index],
    461         "SamplingGrid::getDiscreteWindowIndices() - pre, post, and length don't sum up to total for "
     461        "SamplingGrid::getDiscreteWindowCopyIndices() - pre, post, and length don't sum up to total for "
    462462        +toString(index)+"th component.");
    463463  }
     
    489489  size_t length[NDIM];
    490490  size_t total[NDIM];
    491   getDiscreteWindowIndices(
     491  getDiscreteWindowCopyIndices(
    492492      larger_wbegin, larger_wend,
    493493      smaller_wbegin, smaller_wend,
  • src/Fragmentation/Summation/SetValues/SamplingGrid.hpp

    rc805f7 re480fc  
    227227   * \param total total number of points for checking, should be sum of other three
    228228   */
    229   void getDiscreteWindowIndices(
     229  void getDiscreteWindowCopyIndices(
    230230      const double *larger_wbegin,
    231231      const double *larger_wend,
  • src/Potentials/PartialNucleiChargeFitter.cpp

    rc805f7 re480fc  
    8686  size_t length[3];
    8787  size_t total[3];
    88   grid.getDiscreteWindowIndices(
     88  grid.getDiscreteWindowCopyIndices(
    8989      grid.begin, grid.end,
    9090      grid.begin_window, grid.end_window,
Note: See TracChangeset for help on using the changeset viewer.