PSCF v1.2
ParameterModifier.cpp
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "ParameterModifier.h"
9
10namespace Pscf {
11
12 // Constructor
15
16 // Destructor
19
20 /*
21 * Return specialized sweep parameter types to add to the Sweep object.
22 */
24 {
25 // Default behavior: return empty array
27 return arr;
28 }
29
30 /*
31 * Set the value of a specialized sweep parameter, and throw an error
32 * if the parameter is not found.
33 */
34 void ParameterModifier::setParameter(std::string name,
35 DArray<int> ids, double value)
36 {
37 bool success(true);
38 setParameter(name, ids, value, success);
39 if (!success) {
40 UTIL_THROW(("Parameter name " + name + " not recognized.").c_str());
41 }
42 }
43
44 /*
45 * Get the value of a specialized sweep parameter, and throw an error
46 * if the parameter is not found.
47 */
48 double ParameterModifier::getParameter(std::string name, DArray<int> ids)
49 const
50 {
51 bool success(true);
52 double val = getParameter(name, ids, success);
53 if (!success) {
54 UTIL_THROW(("Parameter name " + name + " not recognized.").c_str());
55 }
56 return val;
57 }
58
59}
virtual GArray< ParameterType > getParameterTypes()
Return specialized sweep parameter types to add to the Sweep object.
virtual void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
virtual double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1