Changeset 1028
- Timestamp:
- 04/22/06 08:12:00 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STFitter.h
r891 r1028 27 27 //# AUSTRALIA 28 28 //# 29 //# $Id: 29 //# $Id:$ 30 30 //#--------------------------------------------------------------------------- 31 #ifndef S DFITTER_H32 #define S DFITTER_H31 #ifndef STFITTER_H 32 #define STFITTER_H 33 33 34 34 #include <string> … … 53 53 bool setParameters(std::vector<float> params); 54 54 bool setFixedParameters(std::vector<bool> fixed); 55 55 56 56 std::vector<float> getResidual() const; 57 57 std::vector<float> getFit() const; 58 58 std::vector<float> getParameters() const; 59 59 std::vector<bool> getFixedParameters() const; 60 60 61 61 std::vector<float> getEstimate() const; 62 62 std::vector<float> getErrors() const; … … 65 65 bool fit(); 66 66 bool computeEstimate(); 67 67 68 68 std::vector<float> evaluate(int whichComp) const; 69 69 private: … … 77 77 casa::Vector<casa::Float> parameters_; 78 78 casa::Vector<casa::Bool> fixedpar_; 79 79 80 80 casa::Vector<casa::Float> error_; 81 81 casa::Vector<casa::Float> thefit_;
Note:
See TracChangeset
for help on using the changeset viewer.