Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:10

0001 #include "PdbParameter.h"
0002 
0003 #include <iostream>
0004 
0005 PdbParameter::PdbParameter(const double value, const std::string &name)
0006   : thePar(value)
0007   , theName(name)
0008 {
0009 }
0010 
0011 void PdbParameter::print() const
0012 {
0013   std::cout << theName << ": " << thePar << std::endl;
0014 }