Class Reference for E1039 Core & Analysis Software
PdbParameterError.cc
Go to the documentation of this file.
1 // The pdbcal package
2 // Copyright (C) PHENIX collaboration, 2004
3 //
4 // Implementation of class PdbParameter
5 //
6 // Author: Cesar
7 
8 #include "PdbParameterError.h"
9 
10 #include <iostream>
11 #include <cmath>
12 
13 using namespace std;
14 
16  theParError(NAN)
17 {}
18 
19 PdbParameterError::PdbParameterError(const double value, const double error, const string &name):
20  PdbParameter(value,name),
21  theParError(error)
22 {}
23 
24 void
26 {
27  cout << theName << ": " << thePar << " +/- " << theParError << endl;
28 }
virtual void print() const
double thePar
Definition: PdbParameter.h:31
std::string theName
Definition: PdbParameter.h:32