Changeset 2361 in Sophya for trunk/ArchTOIPipe/ProcWSophya/ring2cout.h
- Timestamp:
- Apr 17, 2003, 3:47:34 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/ProcWSophya/ring2cout.h
r2354 r2361 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: ring2cout.h,v 1. 2 2003-03-26 09:48:53cecile Exp $7 // $Id: ring2cout.h,v 1.3 2003-04-17 13:47:34 cecile Exp $ 8 8 9 9 #ifndef TOI2RING_H … … 17 17 class Ring2cout : public TOIProcessor { 18 18 public: 19 Ring2cout(long n );19 Ring2cout(long ns,long nr); 20 20 virtual ~Ring2cout(); 21 21 22 22 inline void setNSamples( long n=1024) 23 23 {Nsamples = n;} 24 25 inline void setNRings( long n=1) 26 {Nrings = n;} 24 27 25 28 virtual void init(void); … … 31 34 void Print(::ostream & os); 32 35 inline long ProcessedSampleCount() const { return totnscount; } 33 inline long ProcessedRingCount() const { return nRings; }36 inline long ProcessedRingCount() const { return Nrings; } 34 37 35 38 protected: 36 39 long Nsamples; 37 40 long totnscount; 38 long nRings;41 long Nrings; 39 42 40 43 };
Note:
See TracChangeset
for help on using the changeset viewer.