1 |
3. Each time data of the data set is stored in classes TimeData1D, 2D, 3D, Vec.
-
These are subclasses of the abstract class TimeData.
-
Class TimeData1D consists of time value, x value array, and y array. Since these values are protected by the server, the users who will create new filters can only read these values. They can't update these values.
-
X and y arrays are also growable. If the client wants to add new data to the data set, the server will also check the data set name and time value.
-
If all are same, data will be appended to existing data set and time data.
-
TimeData2D, 3D, Vec act the same as TimeData1D.
|