ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PdbParameterError.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PdbParameterError.h
1 // Declaration of class PdbParameterError
2 // Purpose: single parameter storage class
3 // Author: Cesar & federica
4 
5 #ifndef PDBCAL_BASE_PDBPARAMETERERROR_H
6 #define PDBCAL_BASE_PDBPARAMETERERROR_H
7 
8 #include "PdbParameter.h"
9 
10 #include <string>
11 
13 {
14  public:
16  PdbParameterError(const double, const double, const std::string &name);
17  ~PdbParameterError() override {}
18 
19  double getParameterError() const { return theParError; }
20 
21  void setParameterError(const double val) { theParError = val; }
22 
23  void print() const override;
24 
25  protected:
26 
27  double theParError;
28 
30 };
31 
32 #endif /* PDBCAL_BASE_PDBPARAMETERERROR_H */