Changeset 1762 in Sophya for trunk/ArchTOIPipe/ProcWSophya
- Timestamp:
- Nov 13, 2001, 5:22:47 PM (24 years ago)
- Location:
- trunk/ArchTOIPipe/ProcWSophya
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
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:
Note:
See TracChangeset
for help on using the changeset viewer.