Changeset 668 in Sophya for trunk/SophyaLib/SkyT/radspecvector.h
- Timestamp:
- Nov 29, 1999, 3:16:10 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyT/radspecvector.h
r607 r668 30 30 public: 31 31 //Constructor 32 RadSpectraVec (); 32 33 RadSpectraVec (Vector const & nu, Vector const & fdenu, double numin=0., double numax=9.e49); 33 34 … … 47 48 inline Vector& getNuVec() { return _vecOfNu; } 48 49 inline Vector& getFNuVec() { return _vecOfFDeNu; } 50 inline double getNuVec(int i) const { return _vecOfNu(i); } 51 inline double getFNuVec(int i) const { return _vecOfFDeNu(i); } 52 inline int NbElts() const { return _size;} 53 virtual void ReadSelf(PInPersist& s); 54 virtual void WriteSelf(POutPersist& s); 49 55 50 56 virtual void Print(ostream& os) const; … … 53 59 Vector _vecOfNu; 54 60 Vector _vecOfFDeNu; 55 61 int _size; 56 62 }; 57 63
Note:
See TracChangeset
for help on using the changeset viewer.