WARPXM v1.10.0
Loading...
Searching...
No Matches
decay.h
Go to the documentation of this file.
1#ifndef WXM_APPS_DECAY_H
2#define WXM_APPS_DECAY_H
3
4// Wm includes
6
7namespace wxm
8{
9namespace apps
10{
11
12class decay_t : public WmApplication
13{
14public:
16
18
19 void setup(const WxCryptSet& wxc) override;
20
21 const std::vector<int>& getInputVariableIndexes(int flag) const override
22 {
23 return _variables;
24 }
25 const std::vector<int>& getOutputVariableIndexes(int flag) const override
26 {
27 return _variables;
28 }
29
30protected:
32
33 std::vector<int> _variables;
34
35private:
36 decay_t& operator=(const decay_t& var);
37 decay_t(const decay_t& var);
38};
39} // namespace apps
40} // namespace wxm
41
42#endif // WXM_APPS_DECAY_H
Base Class for physics applications.
Definition: wmapplication.h:93
WxCryptSet extends WxCrypt by providing, in addition to name-value pairs, an set of named WxCryptSets...
Definition: wxcryptset.h:35
Definition: decay.h:13
const std::vector< int > & getInputVariableIndexes(int flag) const override
Definition: decay.h:21
std::vector< int > _variables
Definition: decay.h:33
real _decay_rate
Definition: decay.h:31
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Definition: decay.h:25
void setup(const WxCryptSet &wxc) override
list apps
Definition: shock_tube.py:33
Base namespace for everything not included in the global namespace.
Definition: field_source.h:8
#define real
Definition: wmoclunstructuredreconstruction.h:11