EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PdbParameter.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PdbParameter.cc
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 
19 void PdbParameter::print() const
20 {
21  cout << theName << ": " << thePar << endl;
22 }