Ignore:
Timestamp:
May 18, 2016, 10:03:09 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Children:
c805f7
Parents:
706d48
git-author:
Frederik Heber <heber@…> (03/10/16 14:52:28)
git-committer:
Frederik Heber <heber@…> (05/18/16 22:03:09)
Message:

Moved getNearestLowerGridPoint and ..Higher:: from SamplingGrid to SamplingGridProperties.

  • we only use functions from ..Properties anyway.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Summation/SetValues/SamplingGridProperties.hpp

    r706d48 rc9b843  
    112112  const double getDeltaPerAxis(const size_t axis) const;
    113113
     114  /** Helper function to get point at grid point for given \a axis and less than value.
     115   *
     116   * @param value value to find nearest grid point to
     117   * @param axis axis of the value
     118   * @return nearest lower grid point
     119   */
     120  double getNearestLowerGridPoint(
     121      const double value, const size_t axis) const;
     122
     123  /** Helper function to get point at grid point for given \a axis and greater than value.
     124   *
     125   * @param value value to find nearest grid point to
     126   * @param axis axis of the value
     127   * @return nearest lower grid point
     128   */
     129  double getNearestHigherGridPoint(
     130      const double value, const size_t axis) const;
    114131
    115132public:
Note: See TracChangeset for help on using the changeset viewer.