File: parameterSelectorComplement.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 (76 lines) | stat: -rw-r--r-- 2,115 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
/***********************************************/
/**
* @file parameterSelectorComplement.h
*
* @brief Parameter index vector from a complement of other parameter selector(s).
*
* @author Sebastian Strasser
* @date 2019-09-27
*
*/
/***********************************************/

#ifndef __GROOPS_PARAMETERSELECTORCOMPLEMENT__
#define __GROOPS_PARAMETERSELECTORCOMPLEMENT__

// Latex documentation
#ifdef DOCSTRING_ParameterSelector
static const char *docstringParameterSelectorComplement = R"(
\subsection{Complement}\label{parameterSelectorType:complement}
Parameter index vector from a complement of other parameter selector(s).
)";
#endif

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

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

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

/** @brief Parameter index vector from a complement of other parameter selector(s).
* @ingroup parameterSelectorGroup
* @see ParameterSelector */
class ParameterSelectorComplement : public ParameterSelectorBase
{
  ParameterSelectorPtr parameterSelector;

public:
  ParameterSelectorComplement(Config &config);
  std::vector<UInt> indexVector(const std::vector<ParameterName> &parameterNames);
};

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

inline ParameterSelectorComplement::ParameterSelectorComplement(Config &config)
{
  try
  {
    readConfig(config, "parameterSelection", parameterSelector, Config::MUSTSET, "", "parameter order/selection");
    if(isCreateSchema(config)) return;
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW(e)
  }
}

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

inline std::vector<UInt> ParameterSelectorComplement::indexVector(const std::vector<ParameterName> &parameterNames)
{
  try
  {
    return ParameterSelector::indexVectorComplement(parameterSelector->indexVector(parameterNames), parameterNames.size());
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW(e)
  }
}

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

#endif