~vbursian/research-assistant/trunk

« back to all changes in this revision

Viewing changes to RANet/DataTableFolder.cpp

  • Committer: Viktor Bursian
  • Date: 2020-07-16 22:38:41 UTC
  • mfrom: (9.25.2 DIST) (9.16.21 VB)
  • Revision ID: vik@pryanik-20200716223841-0gp0sf6m5imdjtb3
Tags: version_1.5.0
releasing version 1.5.0, closing v.1.4 development

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    :sTableDataFunction(a_stream,version)
51
51
    ,sFolderNode(a_stream,version)
52
52
{
53
 
  if( ! (sVersion(0,9) < version) ){
 
53
  if( version <= sVersion(0,9) ){
54
54
    sPhysPair                 M(a_stream,version);
55
55
    TheMultiplier = M;
56
 
  }
57
 
  if( ! (sVersion(0,9) < version) ){
58
56
    a_stream.READ_INTO(TheNumberOfPoints);
59
57
    ASSERT( TheNumberOfPoints > 0 );
60
58
    XValues= new real [TheNumberOfPoints];
61
59
    YValues= new real [TheNumberOfPoints];
 
60
    realIOv14 R;
62
61
    for( int PointNo=0 ; PointNo < TheNumberOfPoints ; PointNo++ ){
63
 
      a_stream.READ_INTO(XValues[PointNo]);
64
 
      a_stream.READ_INTO(YValues[PointNo]);
 
62
      a_stream.READ_INTO(R);  XValues[PointNo]=R;
 
63
      a_stream.READ_INTO(R);  YValues[PointNo]=R;
65
64
    }
66
65
  }
67
66
}