File: loopUniformSampling.h

package info (click to toggle)
groops 0%2Bgit20250907%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 11,140 kB
  • sloc: cpp: 135,607; fortran: 1,603; makefile: 20
file content (91 lines) | stat: -rw-r--r-- 2,775 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/***********************************************/
/**
* @file loopUniformSampling.h
*
* @brief Loop over sequence of numbers.
*
* @author Torsten Mayer-Guerr
* @author Sebastian Strasser
* @date 2017-01-27
*
*/
/***********************************************/

#ifndef __GROOPS_LOOPUNIFORMSAMPLING__
#define __GROOPS_LOOPUNIFORMSAMPLING__

// Latex documentation
#ifdef DOCSTRING_Loop
static const char *docstringLoopUniformSampling = R"(
\subsection{UniformSampling}
Loop over sequence of numbers.
)";
#endif

/***********************************************/

#include "base/import.h"
#include "classes/loop/loop.h"

/***** CLASS ***********************************/

/** @brief Loop over sequence of numbers.
* @ingroup loopGroup
* @see Loop */
class LoopUniformSampling : public Loop
{
  std::string         nameNumber, nameIndex, nameCount;
  std::vector<Double> numbers;

public:
  LoopUniformSampling(Config &config);

  UInt count() const override {return numbers.size();}
  Bool iteration(VariableList &varList) override;
};

/***********************************************/
/***** Inlines *********************************/
/***********************************************/

inline LoopUniformSampling::LoopUniformSampling(Config &config)
{
  try
  {
    Double rangeStart, rangeEnd, sampling;

    readConfig(config, "rangeStart",         rangeStart, Config::MUSTSET,   "",           "start of range");
    readConfig(config, "rangeEnd",           rangeEnd,   Config::MUSTSET,   "",           "end of range (inclusive)");
    readConfig(config, "sampling",           sampling,   Config::MUSTSET,   "",           "sampling");
    readConfig(config, "variableLoopNumber", nameNumber, Config::OPTIONAL,  "loopNumber", "name of the variable to be replaced");
    readConfig(config, "variableLoopIndex",  nameIndex,  Config::OPTIONAL,  "",           "variable with index of current iteration (starts with zero)");
    readConfig(config, "variableLoopCount",  nameCount,  Config::OPTIONAL,  "",           "variable with total number of iterations");
    readConfigCondition(config);
    if(isCreateSchema(config)) return;

    for(UInt i=0; rangeStart+i*sampling<=rangeEnd; i++)
      numbers.push_back(rangeStart + i*sampling);
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW(e)
  }
}

/***********************************************/

inline Bool LoopUniformSampling::iteration(VariableList &varList)
{
  if(index() >= count())
    return FALSE;

  if(!nameNumber.empty()) varList.setVariable(nameNumber, numbers.at(index()));
  if(!nameIndex.empty())  varList.setVariable(nameIndex,  index());
  if(!nameCount.empty())  varList.setVariable(nameCount,  count());

  return checkCondition(varList);
}

/***********************************************/

#endif