Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef curve_H
00036 #define curve_H
00037
00038 #include <OpenFOAM/string.H>
00039 #include <OpenFOAM/primitiveFields.H>
00040 #include <OpenFOAM/autoPtr.H>
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048
00049 class curve;
00050 Ostream& operator<<(Ostream&, const curve&);
00051
00052
00053
00054
00055
00056
00057 class curve
00058 :
00059 public scalarField
00060 {
00061
00062 public:
00063
00064
00065 class curveStyle
00066 {
00067
00068 public:
00069
00070
00071 enum curveStyleNo
00072 {
00073 CONTINUOUS,
00074 SYMBOL,
00075 SYMBOL_CURVE,
00076 SYMBOL_WITH_ERROR_BARS,
00077 SYMBOL_WITH_VARIABLE_SIZE
00078 };
00079
00080
00081 private:
00082
00083
00084 curveStyleNo CurveStyleNo;
00085
00086
00087 public:
00088
00089
00090
00091
00092
00093 curveStyle(const curveStyleNo csn)
00094 :
00095 CurveStyleNo(csn)
00096 {}
00097
00098
00099 curveStyle(Istream& is)
00100 :
00101 CurveStyleNo(curveStyleNo(readInt(is)))
00102 {}
00103
00104
00105
00106
00107 friend Ostream& operator<<(Ostream& os, const curveStyle& cs)
00108 {
00109 os << int(cs.CurveStyleNo);
00110 return os;
00111 }
00112 };
00113
00114
00115 private:
00116
00117
00118
00119 string name_;
00120 curveStyle style_;
00121
00122
00123 public:
00124
00125
00126
00127
00128
00129
00130
00131 curve
00132 (
00133 const string& name,
00134 const curveStyle& style,
00135 const label l
00136 );
00137
00138
00139 curve
00140 (
00141 const string&,
00142 const curveStyle&,
00143 const scalarField& y
00144 );
00145
00146 autoPtr<curve> clone() const
00147 {
00148 return autoPtr<curve>(new curve(*this));
00149 }
00150
00151
00152
00153
00154
00155
00156 const string& name() const
00157 {
00158 return name_;
00159 }
00160
00161 const curveStyle& style() const
00162 {
00163 return style_;
00164 }
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175 friend Ostream& operator<<(Ostream&, const curve&);
00176 };
00177
00178
00179
00180
00181 }
00182
00183
00184
00185 #endif
00186
00187