Changeset 1762 in Sophya for trunk/ArchTOIPipe
- Timestamp:
- Nov 13, 2001, 5:22:47 PM (24 years ago)
- Location:
- trunk/ArchTOIPipe
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/toi.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: toi.cc,v 1.1 0 2001-11-13 16:14:43aubourg Exp $5 // $Id: toi.cc,v 1.11 2001-11-13 16:22:47 aubourg Exp $ 6 6 7 7 #include "toiprocessor.h" … … 44 44 } 45 45 46 void TOI::PrintStatus( std::ostream & os) const46 void TOI::PrintStatus(::ostream & os) const 47 47 { 48 48 os << "TOI::PrintStatus() - Name=" << getName() << endl; -
trunk/ArchTOIPipe/Kernel/toi.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toi.h,v 1.1 3 2001-11-13 16:14:43aubourg Exp $7 // $Id: toi.h,v 1.14 2001-11-13 16:22:47 aubourg Exp $ 8 8 9 9 #ifndef TOI_H … … 35 35 36 36 // ----- Rajouts Reza 12/3/2001 37 virtual void PrintStatus( std::ostream & os) const;37 virtual void PrintStatus(::ostream & os) const; 38 38 // Fin rajouts Reza 12/3/2001 ------ 39 39 … … 148 148 }; 149 149 150 inline std::ostream & operator << (std::ostream & os, TOI const & toi)150 inline ::ostream & operator << (::ostream & os, TOI const & toi) 151 151 { toi.PrintStatus(os); return os; } 152 152 -
trunk/ArchTOIPipe/Kernel/toiprocessor.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: toiprocessor.cc,v 1.1 8 2001-11-13 16:14:43aubourg Exp $5 // $Id: toiprocessor.cc,v 1.19 2001-11-13 16:22:47 aubourg Exp $ 6 6 7 7 #include "toiprocessor.h" … … 180 180 } 181 181 182 void TOIProcessor::PrintStatus( std::ostream & os)182 void TOIProcessor::PrintStatus(::ostream & os) 183 183 { 184 184 chkinit(); -
trunk/ArchTOIPipe/Kernel/toiprocessor.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toiprocessor.h,v 1.1 4 2001-11-13 16:14:43aubourg Exp $7 // $Id: toiprocessor.h,v 1.15 2001-11-13 16:22:47 aubourg Exp $ 8 8 9 9 … … 124 124 125 125 // Methodes rajoutees par Reza 11/3/2001 126 virtual void PrintStatus( std::ostream & os) ; // const plus tard126 virtual void PrintStatus(::ostream & os) ; // const plus tard 127 127 // Fin rajout Reza 11/3/2001 128 128 … … 167 167 }; 168 168 169 inline std::ostream & operator << (std::ostream & os, TOIProcessor /*const*/ & toip)169 inline ::ostream & operator << (::ostream & os, TOIProcessor /*const*/ & toip) 170 170 { toip.PrintStatus(os); return os; } 171 171 -
trunk/ArchTOIPipe/Kernel/toiseqbuff.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: toiseqbuff.cc,v 1. 8 2001-11-13 16:14:43aubourg Exp $5 // $Id: toiseqbuff.cc,v 1.9 2001-11-13 16:22:47 aubourg Exp $ 6 6 7 7 #include "toiprocessor.h" … … 54 54 } 55 55 56 void TOISeqBuffered::PrintStatus( std::ostream & os) const56 void TOISeqBuffered::PrintStatus(::ostream & os) const 57 57 { 58 58 os << "---TOISeqBuffered::PrintStatus() - Name=" << getName() -
trunk/ArchTOIPipe/Kernel/toiseqbuff.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toiseqbuff.h,v 1. 8 2001-11-13 16:14:44aubourg Exp $7 // $Id: toiseqbuff.h,v 1.9 2001-11-13 16:22:47 aubourg Exp $ 8 8 9 9 #ifndef TOISEQBUFF_H … … 28 28 { AllocBuffer(wsz); } // apres le demarrage des threads 29 29 30 virtual void PrintStatus( std::ostream & os) const;30 virtual void PrintStatus(::ostream & os) const; 31 31 32 32 inline void setDebugLevel(int lev=0) { dbglev=lev; } -
trunk/ArchTOIPipe/ProcWSophya/genwproc.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: genwproc.cc,v 1. 7 2001-11-13 16:14:42aubourg Exp $5 // $Id: genwproc.cc,v 1.8 2001-11-13 16:22:46 aubourg Exp $ 6 6 7 7 #include "array.h" … … 68 68 69 69 //////////////////////////////////////////////////////////////// 70 void GenWindowTOIProcessor::PrintStatus( std::ostream & os)70 void GenWindowTOIProcessor::PrintStatus(::ostream & os) 71 71 { 72 72 os<<"\n ------------------------------------------------------ \n" -
trunk/ArchTOIPipe/ProcWSophya/genwproc.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: genwproc.h,v 1. 8 2001-11-13 16:14:42aubourg Exp $7 // $Id: genwproc.h,v 1.9 2001-11-13 16:22:46 aubourg Exp $ 8 8 9 9 … … 72 72 {PutWData(0,numsample,data,flag);} 73 73 74 virtual void PrintStatus( std::ostream & os);74 virtual void PrintStatus(::ostream & os); 75 75 76 76 virtual void UserInit(int_8 kstart); -
trunk/ArchTOIPipe/ProcWSophya/ktoibad.cc
r1761 r1762 23 23 } 24 24 25 void FlagOutOfRange::Print( std::ostream & os)25 void FlagOutOfRange::Print(::ostream & os) 26 26 { 27 27 os<<"FlagOutOfRange::Print Range: ["<<VMin<<","<<VMax<<"] flgBad="<<flgBad<<endl; … … 115 115 } 116 116 117 void FlagGlitch::Print( std::ostream & os)117 void FlagGlitch::Print(::ostream & os) 118 118 { 119 119 os<<"FlagGlitch::Print" … … 321 321 } 322 322 323 void FlagAroundFlag::Print( std::ostream & os)323 void FlagAroundFlag::Print(::ostream & os) 324 324 { 325 325 os<<"FlagAroundFlag::Print" -
trunk/ArchTOIPipe/ProcWSophya/ktoibad.h
r1761 r1762 20 20 21 21 //! Print 22 void Print( std::ostream & os);22 void Print(::ostream & os); 23 23 inline void Print(void) {Print(cout);} 24 24 … … 47 47 inline void SetBuffUpd(uint_4 bupd=1000) {BuffUpdate = bupd;} 48 48 //! Print 49 void Print( std::ostream & os);49 void Print(::ostream & os); 50 50 inline void Print(void) {Print(cout);} 51 51 //! Debugging print lp=ab … … 85 85 {VMin=vmin; VMax=vmax; flgBad = flag;} 86 86 //! Print 87 void Print( std::ostream & os);87 void Print(::ostream & os); 88 88 inline void Print(void) {Print(cout);} 89 89 -
trunk/ArchTOIPipe/ProcWSophya/map2toi.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: map2toi.cc,v 1. 8 2001-11-13 16:14:43aubourg Exp $5 // $Id: map2toi.cc,v 1.9 2001-11-13 16:22:47 aubourg Exp $ 6 6 7 7 #include "toimanager.h" … … 24 24 25 25 //////////////////////////////////////////////////////////////////////// 26 void Map2TOI::Print( std::ostream & os)26 void Map2TOI::Print(::ostream & os) 27 27 { 28 28 os<<"Map2TOI::Print -- Sphere NLat = "<<mSph.SizeIndex()<<endl -
trunk/ArchTOIPipe/ProcWSophya/map2toi.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: map2toi.h,v 1. 5 2001-11-13 16:14:43aubourg Exp $7 // $Id: map2toi.h,v 1.6 2001-11-13 16:22:47 aubourg Exp $ 8 8 9 9 #ifndef MAP2TOI_H … … 50 50 {mTypCoorMap = mfg;} 51 51 // Print 52 void Print( std::ostream & os);52 void Print(::ostream & os); 53 53 54 54 protected: -
trunk/ArchTOIPipe/ProcWSophya/simtoipr.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: simtoipr.cc,v 1.1 5 2001-11-13 16:14:43aubourg Exp $5 // $Id: simtoipr.cc,v 1.16 2001-11-13 16:22:47 aubourg Exp $ 6 6 7 7 #include "array.h" … … 47 47 } 48 48 49 void SimpleDeglitcher::PrintStatus( std::ostream & os)49 void SimpleDeglitcher::PrintStatus(::ostream & os) 50 50 { 51 51 os << "\n ------------------------------------------------------ \n" … … 421 421 } 422 422 423 void SimpleFilter::PrintStatus( std::ostream & os)423 void SimpleFilter::PrintStatus(::ostream & os) 424 424 { 425 425 os << "\n ------------------------------------------------------ \n" … … 547 547 } 548 548 549 void SimpleAdder::PrintStatus( std::ostream & os)549 void SimpleAdder::PrintStatus(::ostream & os) 550 550 { 551 551 os << "\n ------------------------------------------------------ \n" … … 644 644 645 645 646 void SimpleFourierFilter::PrintStatus( std::ostream & os)646 void SimpleFourierFilter::PrintStatus(::ostream & os) 647 647 { 648 648 os << "\n ------------------------------------------------------ \n" … … 811 811 812 812 813 void SimpleFanOut::PrintStatus( std::ostream & os)813 void SimpleFanOut::PrintStatus(::ostream & os) 814 814 { 815 815 os << "\n ------------------------------------------------------ \n" -
trunk/ArchTOIPipe/ProcWSophya/simtoipr.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: simtoipr.h,v 1.1 0 2001-11-13 16:14:43aubourg Exp $7 // $Id: simtoipr.h,v 1.11 2001-11-13 16:22:47 aubourg Exp $ 8 8 9 9 … … 56 56 inline int_8 OutOfRangeSampleCount() const { return out_range_nscount; } 57 57 58 virtual void PrintStatus( std::ostream & os) ; // const plus tard58 virtual void PrintStatus(::ostream & os) ; // const plus tard 59 59 60 60 protected: … … 108 108 Vector FilterCoefficients() const; 109 109 110 virtual void PrintStatus( std::ostream & os) ; // const plus tard110 virtual void PrintStatus(::ostream & os) ; // const plus tard 111 111 112 112 virtual void init(); … … 135 135 inline int_8 ProcessedSampleCount() const { return totnscount; } 136 136 137 virtual void PrintStatus( std::ostream & os) ; // const plus tard137 virtual void PrintStatus(::ostream & os) ; // const plus tard 138 138 139 139 virtual void init(); … … 160 160 { Vector rcv; rcv = ffcoef; return(rcv); } 161 161 162 virtual void PrintStatus( std::ostream & os) ; // const plus tard162 virtual void PrintStatus(::ostream & os) ; // const plus tard 163 163 164 164 virtual void init(); … … 192 192 inline int_8 ProcessedSampleCount() const { return totnscount; } 193 193 194 virtual void PrintStatus( std::ostream & os) ; // const plus tard194 virtual void PrintStatus(::ostream & os) ; // const plus tard 195 195 196 196 virtual void init(); -
trunk/ArchTOIPipe/ProcWSophya/smoothtoi.cc
r1761 r1762 25 25 } 26 26 27 void DataSmooth::Print( std::ostream & os)27 void DataSmooth::Print(::ostream & os) 28 28 { 29 29 os<<"DataSmooth::Print LSmooth="<<LSmooth -
trunk/ArchTOIPipe/ProcWSophya/smoothtoi.h
r1761 r1762 33 33 34 34 //! Print 35 void Print( std::ostream & os);35 void Print(::ostream & os); 36 36 inline void Print(void) {Print(cout);} 37 37 -
trunk/ArchTOIPipe/ProcWSophya/toi2map.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: toi2map.cc,v 1.1 4 2001-11-13 16:14:43aubourg Exp $5 // $Id: toi2map.cc,v 1.15 2001-11-13 16:22:47 aubourg Exp $ 6 6 7 7 #include "machdefs.h" … … 52 52 53 53 //////////////////////////////////////////////////////////////////////// 54 void TOI2Map::Print( std::ostream & os)54 void TOI2Map::Print(::ostream & os) 55 55 { 56 56 os<<"TOI2Map::Print -- Sphere NLat = "<<mSph->SizeIndex()<<endl -
trunk/ArchTOIPipe/ProcWSophya/toi2map.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toi2map.h,v 1. 9 2001-11-13 16:14:43aubourg Exp $7 // $Id: toi2map.h,v 1.10 2001-11-13 16:22:47 aubourg Exp $ 8 8 9 9 #ifndef TOI2MAP_H … … 61 61 {mTMax = tmax; mValMax = vmax;} 62 62 // Print 63 void Print( std::ostream & os);63 void Print(::ostream & os); 64 64 65 65 protected: -
trunk/ArchTOIPipe/Processors/nooppr.cc
r1761 r1762 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: nooppr.cc,v 1. 8 2001-11-13 16:14:43aubourg Exp $5 // $Id: nooppr.cc,v 1.9 2001-11-13 16:22:47 aubourg Exp $ 6 6 7 7 #include <typeinfo> … … 20 20 21 21 22 void NoOpProcessor::PrintStatus( std::ostream & os)22 void NoOpProcessor::PrintStatus(::ostream & os) 23 23 { 24 24 os << "\n ------------------------------------------------------ \n" -
trunk/ArchTOIPipe/Processors/nooppr.h
r1761 r1762 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: nooppr.h,v 1. 4 2001-11-13 16:14:43aubourg Exp $7 // $Id: nooppr.h,v 1.5 2001-11-13 16:22:47 aubourg Exp $ 8 8 9 9 … … 25 25 inline int_8 ProcessedSampleCount() const { return totnscount; } 26 26 27 virtual void PrintStatus( std::ostream & os) ; // const plus tard27 virtual void PrintStatus(::ostream & os) ; // const plus tard 28 28 29 29 virtual void init(); -
trunk/ArchTOIPipe/TestPipes/tstdemopipe.cc
r1761 r1762 97 97 virtual void run(void); 98 98 99 void PrintStatus( std::ostream & os);99 void PrintStatus(::ostream & os); 100 100 101 101 inline int_8 ProcessedSampleCount() const {return totnscount;} … … 115 115 } 116 116 117 void DemoPipe::PrintStatus( std::ostream & os)117 void DemoPipe::PrintStatus(::ostream & os) 118 118 { 119 119 os<<"DemoPipe::Print -- nread = "<<nread<<endl
Note:
See TracChangeset
for help on using the changeset viewer.