OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
Real.cpp
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2// $RCSfile: Real.cpp,v $
3// ------------------------------------------------------------------------
4// $Revision: 1.2 $
5// ------------------------------------------------------------------------
6// Copyright: see Copyright.readme
7// ------------------------------------------------------------------------
8//
9// Class Real:
10// A class used to parse real attributes.
11//
12// ------------------------------------------------------------------------
13//
14// $Date: 2000/12/15 10:08:28 $
15// $Author: opal $
16//
17// ------------------------------------------------------------------------
18
19#include "Attributes/Real.h"
23#include "Expressions/SValue.h"
25#include "Parser/StringStream.h"
26#include "Parser/Token.h"
29
30using namespace Expressions;
31using std::cerr;
32using std::endl;
33
34
35// Class Real
36// ------------------------------------------------------------------------
37
38namespace Attributes {
39
40 Real::Real(const std::string &name, const std::string &help):
41 AttributeHandler(name, help, 0)
42 {}
43
44
46 {}
47
48
49 const std::string &Real::getType() const {
50 static const std::string type("real");
51 return type;
52 }
53
54
55 void Real::parse(Attribute &attr, Statement &statement, bool eval) const {
56 PtrToScalar<double> expr = parseReal(statement);
57
58 if(eval || expr->isConstant()) {
59 attr.set(new SValue<double>(expr->evaluate()));
60 } else if(isDeferred()) {
61 attr.set(new SDeferred<double>(expr));
62 } else {
63 attr.set(new SAutomatic<double>(expr));
64 }
65 }
66
67};
Inform & endl(Inform &inf)
Definition: Inform.cpp:42
const std::string name
Representation objects and parsers for attribute expressions.
Definition: Expressions.h:64
PtrToScalar< double > parseReal(Statement &)
Parse real expression.
A collection of routines to construct object Attributes and retrieve.
Definition: Attributes.cpp:85
boost::function< boost::tuple< double, bool >(arguments_t)> type
Definition: function.hpp:21
A representation of an Object attribute.
Definition: Attribute.h:52
void set(AttributeBase *newBase)
Define new value.
Definition: Attribute.cpp:139
Abstract base class for attribute parsers.
bool isDeferred() const
Return defer flag.
virtual void parse(Attribute &, Statement &, bool) const
Parse the attribute.
Definition: Real.cpp:55
virtual ~Real()
Definition: Real.cpp:45
virtual const std::string & getType() const
Return attribute type string `‘real’'.
Definition: Real.cpp:49
Interface for statements.
Definition: Statement.h:38
Object attribute with an `‘automatic’' scalar value.
Definition: SAutomatic.h:38
Object attribute with a `‘deferred’' scalar value.
Definition: SDeferred.h:39
Object attribute with a constant scalar value.
Definition: SValue.h:34