Class Reference for E1039 Core & Analysis Software
PdbParameter.h
Go to the documentation of this file.
1 // Declaration of class PdbParameter
2 // Purpose: single parameter storage class
3 // Author: federica
4 
5 #ifndef PDBPARAMETER_HH__
6 #define PDBPARAMETER_HH__
7 
8 #include "PdbCalChan.h"
9 
10 #include <string>
11 
12 class PdbParameter : public PdbCalChan {
13 public:
14  PdbParameter(); // this ctor should not be called but it cannot be
15  // made private since CINT needs a
16  // default ctor when reading from file
17 
18  PdbParameter(const double, const std::string &name);
19  virtual ~PdbParameter() {}
20 
21  double getParameter() const { return thePar; }
22  const std::string getName() const { return theName; }
23 
24  void setParameter(const double val) { thePar = val; }
25  void setName(const std::string &name) {theName = name;}
26 
27  virtual void print() const;
28 
29 protected:
30 
31  double thePar;
32  std::string theName;
33 
35 };
36 
37 #endif /* __PDBPARAMETER_DDL__ */
virtual ~PdbParameter()
Definition: PdbParameter.h:19
ClassDef(PdbParameter, 1)
void setParameter(const double val)
Definition: PdbParameter.h:24
void setName(const std::string &name)
Definition: PdbParameter.h:25
double getParameter() const
Definition: PdbParameter.h:21
const std::string getName() const
Definition: PdbParameter.h:22
double thePar
Definition: PdbParameter.h:31
std::string theName
Definition: PdbParameter.h:32
virtual void print() const
Definition: PdbParameter.cc:19