Class Reference for E1039 Core & Analysis Software
PdbParameter.cc
Go to the documentation of this file.
1 #include "PdbParameter.h"
2 
3 #include <cmath>
4 #include <iostream>
5 
6 using namespace std;
7 
9  thePar(NAN)
10 {}
11 
12 
13 PdbParameter::PdbParameter(const double value, const string &name):
14  thePar(value),
15  theName(name)
16 {}
17 
18 void
20 {
21  cout << theName << ": " << thePar << endl;
22 }
23 
double thePar
Definition: PdbParameter.h:31
std::string theName
Definition: PdbParameter.h:32
virtual void print() const
Definition: PdbParameter.cc:19