Changeset 1560 in Sophya for trunk/SophyaLib


Ignore:
Timestamp:
Jul 3, 2001, 5:41:56 PM (24 years ago)
Author:
ansari
Message:

Suite (et fin ?) de lecture/ecriture ASCII pour TArray, Correction petit bug ds tvector.cc - Reza 3/7/2001

Location:
trunk/SophyaLib/TArray
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/tvector.cc

    r1543 r1560  
    1 // $Id: tvector.cc,v 1.12 2001-06-18 14:47:10 ansari Exp $
     1// $Id: tvector.cc,v 1.13 2001-07-03 15:41:56 ansari Exp $
    22//                         C.Magneville          04/99
    33#include "machdefs.h"
     
    2121  : TMatrix<T>()
    2222{
     23  arrtype_ = 2;   // Type = Vector
    2324}
    2425
  • trunk/SophyaLib/TArray/utilarr.cc

    r1558 r1560  
    275275    is.clear();
    276276    is.getline(buff, 256);
     277    //    cout << " DBG : buff=" << buff << " :state=" << is.rdstate() << endl;
    277278    line += buff;
    278279    if (is.good()) {
    279280      nel = Append(line, nbad);
    280       cout << " Decoding line = " << line << " Nel= " << nel << endl;
     281      //      cout << " Decoding line = " << line << " Nel= " << nel << endl;
    281282      if (nel > 0)  {
    282283        nr++;  n += nel;
     
    288289  if (line.length() > 0) {
    289290    nel = Append(line, nbad);
    290     cout << " Decoding Eline = " << line << " Nel= " << nel << endl;
     291    //    cout << " Decoding Eline = " << line << " Nel= " << nel << endl;
    291292    if (nel > 0)  {
    292293      nr++;  n += nel;
Note: See TracChangeset for help on using the changeset viewer.