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
00036
00037
00038
00039 #ifndef DataEntry_H
00040 #define DataEntry_H
00041
00042 #include <OpenFOAM/dictionary.H>
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049 template<class Type>
00050 class DataEntry;
00051
00052 template<class Type>
00053 Ostream& operator<<
00054 (
00055 Ostream&,
00056 const DataEntry<Type>&
00057 );
00058
00059
00060
00061
00062
00063 template<class Type>
00064 class DataEntry
00065 {
00066
00067
00068
00069 void operator=(const DataEntry<Type>&);
00070
00071
00072 protected:
00073
00074
00075
00076
00077 const word name_;
00078
00079
00080 public:
00081
00082
00083 TypeName("DataEntry")
00084
00085
00086 declareRunTimeSelectionTable
00087 (
00088 autoPtr,
00089 DataEntry,
00090 dictionary,
00091 (
00092 const word& entryName,
00093 Istream& is
00094 ),
00095 (entryName, is)
00096 );
00097
00098
00099
00100
00101
00102 DataEntry(const word& entryName);
00103
00104
00105 DataEntry(const DataEntry<Type>& de);
00106
00107
00108
00109 static autoPtr<DataEntry<Type> > New
00110 (
00111 const word& entryName,
00112 const dictionary& dict
00113 );
00114
00115
00116
00117 virtual ~DataEntry();
00118
00119
00120
00121
00122
00123
00124
00125 const word& name() const;
00126
00127
00128
00129
00130
00131 virtual Type value(const scalar x) const = 0;
00132
00133
00134 virtual Type integrate(const scalar x1, const scalar x2) const = 0;
00135
00136
00137
00138 friend Ostream& operator<< <Type>
00139 (
00140 Ostream&,
00141 const DataEntry<Type>&
00142 );
00143 };
00144
00145
00146
00147
00148 }
00149
00150
00151
00152 #define makeDataEntry(Type) \
00153 \
00154 defineNamedTemplateTypeNameAndDebug(DataEntry<Type>, 0); \
00155 \
00156 defineTemplateRunTimeSelectionTable \
00157 ( \
00158 DataEntry<Type>, \
00159 dictionary \
00160 );
00161
00162
00163 #define makeDataEntryType(SS, Type) \
00164 \
00165 defineNamedTemplateTypeNameAndDebug(SS<Type>, 0); \
00166 \
00167 DataEntry<Type>::adddictionaryConstructorToTable<SS<Type> > \
00168 add##SS##Type##ConstructorToTable_;
00169
00170
00171
00172
00173 #ifdef NoRepository
00174 # include <lagrangianIntermediate/DataEntry.C>
00175 # include <lagrangianIntermediate/NewDataEntry.C>
00176 #endif
00177
00178
00179
00180 #endif
00181
00182