Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STFitEntry.h

    r1932 r972  
    2828  STFitEntry(const STFitEntry& other);
    2929
    30   STFitEntry& operator=(const STFitEntry& other);
    31 
    3230  ~STFitEntry();
    3331
     
    3634  void setComponents(const std::vector<int>& c)
    3735    { components_ = c; }
    38   void setParameters(const std::vector<float>& p)
     36  void setParameters(const std::vector<double>& p)
    3937    { parameters_ = p; }
    40   void setErrors(const std::vector<float>& p)
    41     { errors_ = p; }
    4238  void setParmasks(const std::vector<bool>& m)
    4339    { parmasks_ = m; }
    4440  void setFrameinfo(const std::vector<std::string>& f)
    4541    { frameinfo_ = f; }
     42
    4643  std::vector<std::string> getFunctions() const { return functions_; }
    4744  std::vector<int> getComponents() const { return components_; }
    48   std::vector<float> getParameters() const { return parameters_; }
    49   std::vector<float> getErrors() const { return errors_; }
     45  std::vector<double> getParameters() const { return parameters_; }
    5046  std::vector<bool> getParmasks() const { return parmasks_; }
    5147  std::vector<std::string> getFrameinfo() const { return frameinfo_; }
    5248
    5349private:
    54 
    5550  std::vector<std::string> functions_;
    5651  std::vector<int> components_;
    57   std::vector<float> parameters_;
    58   std::vector<float> errors_;
     52  std::vector<double> parameters_;
    5953  std::vector<bool> parmasks_;
    6054  std::vector<std::string> frameinfo_;
Note: See TracChangeset for help on using the changeset viewer.