Class Reference for E1039 Core & Analysis Software
PdbParameterError.h
Go to the documentation of this file.
1 // Declaration of class PdbParameterError
2 // Purpose: single parameter storage class
3 // Author: Cesar & federica
4 
5 #ifndef PDBPARAMETERERROR_HH__
6 #define PDBPARAMETERERROR_HH__
7 
8 #include "PdbParameter.h"
9 
11 {
12  public:
14  PdbParameterError(const double, const double, const std::string &name);
15  virtual ~PdbParameterError() {}
16 
17  double getParameterError() const { return theParError; }
18 
19  void setParameterError(const double val) { theParError = val; }
20 
21  virtual void print() const;
22 
23  protected:
24 
25  double theParError;
26 
28 };
29 
30 #endif /* PDBPARAMETERERROR_HH__ */
virtual void print() const
ClassDef(PdbParameterError, 1)
void setParameterError(const double val)
virtual ~PdbParameterError()
double getParameterError() const