Changeset 1761 in Sophya for trunk/ArchTOIPipe/ProcWSophya


Ignore:
Timestamp:
Nov 13, 2001, 5:14:44 PM (24 years ago)
Author:
aubourg
Message:

std::ostream car pour magique ostream is ambiguous

Location:
trunk/ArchTOIPipe/ProcWSophya
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/ProcWSophya/genwproc.cc

    r1738 r1761  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: genwproc.cc,v 1.6 2001-11-08 15:47:45 aubourg Exp $
     5// $Id: genwproc.cc,v 1.7 2001-11-13 16:14:42 aubourg Exp $
    66
    77#include "array.h"
     
    6868
    6969////////////////////////////////////////////////////////////////
    70 void GenWindowTOIProcessor::PrintStatus(ostream & os)
     70void GenWindowTOIProcessor::PrintStatus(std::ostream & os)
    7171{
    7272os<<"\n ------------------------------------------------------ \n"
  • trunk/ArchTOIPipe/ProcWSophya/genwproc.h

    r1759 r1761  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: genwproc.h,v 1.7 2001-11-13 15:47:26 aubourg Exp $
     7// $Id: genwproc.h,v 1.8 2001-11-13 16:14:42 aubourg Exp $
    88
    99
     
    7272                      {PutWData(0,numsample,data,flag);}
    7373
    74   virtual void PrintStatus(ostream & os);
     74  virtual void PrintStatus(std::ostream & os);
    7575
    7676  virtual void UserInit(int_8 kstart);
  • trunk/ArchTOIPipe/ProcWSophya/ktoibad.cc

    r1739 r1761  
    2323}
    2424
    25 void FlagOutOfRange::Print(ostream & os)
     25void FlagOutOfRange::Print(std::ostream & os)
    2626{
    2727 os<<"FlagOutOfRange::Print Range: ["<<VMin<<","<<VMax<<"] flgBad="<<flgBad<<endl;
     
    115115}
    116116
    117 void FlagGlitch::Print(ostream & os)
     117void FlagGlitch::Print(std::ostream & os)
    118118{
    119119 os<<"FlagGlitch::Print"
     
    321321}
    322322
    323 void FlagAroundFlag::Print(ostream & os)
     323void FlagAroundFlag::Print(std::ostream & os)
    324324{
    325325 os<<"FlagAroundFlag::Print"
  • trunk/ArchTOIPipe/ProcWSophya/ktoibad.h

    r1737 r1761  
    2020
    2121  //! Print
    22   void Print(ostream & os);
     22  void Print(std::ostream & os);
    2323  inline void Print(void) {Print(cout);}
    2424
     
    4747  inline void SetBuffUpd(uint_4 bupd=1000) {BuffUpdate = bupd;}
    4848  //! Print
    49   void Print(ostream & os);
     49  void Print(std::ostream & os);
    5050  inline void Print(void) {Print(cout);}
    5151  //! Debugging print lp=ab
     
    8585              {VMin=vmin; VMax=vmax; flgBad = flag;}
    8686  //! Print
    87   void Print(ostream & os);
     87  void Print(std::ostream & os);
    8888  inline void Print(void) {Print(cout);}
    8989
  • trunk/ArchTOIPipe/ProcWSophya/map2toi.cc

    r1738 r1761  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: map2toi.cc,v 1.7 2001-11-08 15:47:45 aubourg Exp $
     5// $Id: map2toi.cc,v 1.8 2001-11-13 16:14:43 aubourg Exp $
    66
    77#include "toimanager.h"
     
    2424
    2525////////////////////////////////////////////////////////////////////////
    26 void Map2TOI::Print(ostream & os)
     26void Map2TOI::Print(std::ostream & os)
    2727{
    2828  os<<"Map2TOI::Print -- Sphere NLat = "<<mSph.SizeIndex()<<endl
  • trunk/ArchTOIPipe/ProcWSophya/map2toi.h

    r1738 r1761  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: map2toi.h,v 1.4 2001-11-08 15:47:45 aubourg Exp $
     7// $Id: map2toi.h,v 1.5 2001-11-13 16:14:43 aubourg Exp $
    88
    99#ifndef MAP2TOI_H
     
    5050              {mTypCoorMap = mfg;}
    5151  // Print
    52   void Print(ostream & os);
     52  void Print(std::ostream & os);
    5353
    5454protected:
  • trunk/ArchTOIPipe/ProcWSophya/simtoipr.cc

    r1738 r1761  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: simtoipr.cc,v 1.14 2001-11-08 15:47:45 aubourg Exp $
     5// $Id: simtoipr.cc,v 1.15 2001-11-13 16:14:43 aubourg Exp $
    66
    77#include "array.h"
     
    4747}
    4848
    49 void SimpleDeglitcher::PrintStatus(ostream & os)
     49void SimpleDeglitcher::PrintStatus(std::ostream & os)
    5050{
    5151  os << "\n ------------------------------------------------------ \n"
     
    421421}
    422422
    423 void SimpleFilter::PrintStatus(ostream & os)
     423void SimpleFilter::PrintStatus(std::ostream & os)
    424424{
    425425  os << "\n ------------------------------------------------------ \n"
     
    547547}
    548548
    549 void SimpleAdder::PrintStatus(ostream & os)
     549void SimpleAdder::PrintStatus(std::ostream & os)
    550550{
    551551  os << "\n ------------------------------------------------------ \n"
     
    644644
    645645
    646 void SimpleFourierFilter::PrintStatus(ostream & os)
     646void SimpleFourierFilter::PrintStatus(std::ostream & os)
    647647{
    648648  os << "\n ------------------------------------------------------ \n"
     
    811811
    812812
    813 void SimpleFanOut::PrintStatus(ostream & os)
     813void SimpleFanOut::PrintStatus(std::ostream & os)
    814814{
    815815  os << "\n ------------------------------------------------------ \n"
  • trunk/ArchTOIPipe/ProcWSophya/simtoipr.h

    r1738 r1761  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: simtoipr.h,v 1.9 2001-11-08 15:47:45 aubourg Exp $
     7// $Id: simtoipr.h,v 1.10 2001-11-13 16:14:43 aubourg Exp $
    88
    99
     
    5656  inline int_8  OutOfRangeSampleCount() const { return out_range_nscount; }
    5757 
    58   virtual void  PrintStatus(ostream & os) ; // const plus tard
     58  virtual void  PrintStatus(std::ostream & os) ; // const plus tard
    5959 
    6060protected:
     
    108108  Vector        FilterCoefficients() const;
    109109
    110   virtual void  PrintStatus(ostream & os) ; // const plus tard
     110  virtual void  PrintStatus(std::ostream & os) ; // const plus tard
    111111
    112112  virtual void  init(); 
     
    135135  inline int_8  ProcessedSampleCount() const { return totnscount; }
    136136
    137   virtual void  PrintStatus(ostream & os) ; // const plus tard
     137  virtual void  PrintStatus(std::ostream & os) ; // const plus tard
    138138
    139139  virtual void  init(); 
     
    160160                { Vector rcv; rcv = ffcoef; return(rcv); }
    161161
    162   virtual void  PrintStatus(ostream & os) ; // const plus tard
     162  virtual void  PrintStatus(std::ostream & os) ; // const plus tard
    163163
    164164  virtual void  init(); 
     
    192192  inline int_8  ProcessedSampleCount() const { return totnscount; }
    193193
    194   virtual void  PrintStatus(ostream & os) ; // const plus tard
     194  virtual void  PrintStatus(std::ostream & os) ; // const plus tard
    195195
    196196  virtual void  init(); 
  • trunk/ArchTOIPipe/ProcWSophya/smoothtoi.cc

    r1739 r1761  
    2525}
    2626
    27 void DataSmooth::Print(ostream & os)
     27void DataSmooth::Print(std::ostream & os)
    2828{
    2929 os<<"DataSmooth::Print LSmooth="<<LSmooth
  • trunk/ArchTOIPipe/ProcWSophya/smoothtoi.h

    r1739 r1761  
    3333
    3434  //! Print
    35   void Print(ostream & os);
     35  void Print(std::ostream & os);
    3636  inline void Print(void) {Print(cout);}
    3737
  • trunk/ArchTOIPipe/ProcWSophya/toi2map.cc

    r1746 r1761  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: toi2map.cc,v 1.13 2001-11-12 11:19:03 cmv Exp $
     5// $Id: toi2map.cc,v 1.14 2001-11-13 16:14:43 aubourg Exp $
    66
    77#include "machdefs.h"
     
    5252
    5353////////////////////////////////////////////////////////////////////////
    54 void TOI2Map::Print(ostream & os)
     54void TOI2Map::Print(std::ostream & os)
    5555{
    5656  os<<"TOI2Map::Print -- Sphere NLat = "<<mSph->SizeIndex()<<endl
  • trunk/ArchTOIPipe/ProcWSophya/toi2map.h

    r1739 r1761  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: toi2map.h,v 1.8 2001-11-08 17:47:23 cmv Exp $
     7// $Id: toi2map.h,v 1.9 2001-11-13 16:14:43 aubourg Exp $
    88
    99#ifndef TOI2MAP_H
     
    6161              {mTMax = tmax; mValMax = vmax;}
    6262  // Print
    63   void Print(ostream & os);
     63  void Print(std::ostream & os);
    6464
    6565protected:
Note: See TracChangeset for help on using the changeset viewer.