Changeset 960 for trunk/src/STFitEntry.h


Ignore:
Timestamp:
03/31/06 17:07:57 (18 years ago)
Author:
mar637
Message:

c++ side of Ticket #7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STFitEntry.h

    r955 r960  
    2626public:
    2727  STFitEntry();
    28 
     28 
    2929  ~STFitEntry();
    30 
     30 
    3131  void setFunctions(const std::vector<std::string>& f)
    3232    { functions_ = f; }
     
    4040    { frameinfo_ = f; }
    4141
    42   const std::vector<std::string>& getFunctions() const { return functions_; }
    43   const std::vector<int>& getComponents() const { return components_; }
    44   const std::vector<double>& getParameters() const { return parameters_; }
    45   const std::vector<bool>& getParmasks() const { return parmasks_; }
    46   const std::vector<std::string>& getFrameinfo() const { return frameinfo_; }
     42  std::vector<std::string> getFunctions() const { return functions_; }
     43  std::vector<int> getComponents() const { return components_; }
     44  std::vector<double> getParameters() const { return parameters_; }
     45  std::vector<bool> getParmasks() const { return parmasks_; }
     46  std::vector<std::string> getFrameinfo() const { return frameinfo_; }
    4747
    4848private:
    49     std::vector<std::string> functions_;
    50     std::vector<int> components_;
    51     std::vector<double> parameters_;
    52     std::vector<bool> parmasks_;
    53     std::vector<std::string> frameinfo_;
     49  std::vector<std::string> functions_;
     50  std::vector<int> components_;
     51  std::vector<double> parameters_;
     52  std::vector<bool> parmasks_;
     53  std::vector<std::string> frameinfo_;
    5454};
    5555
Note: See TracChangeset for help on using the changeset viewer.