Line data Source code
1 : // ---------------------------------------------------------------------- 2 : // 3 : // version.cc 4 : // Author: Lynn Garren 5 : // 6 : // for now, this is a free function 7 : // 8 : // ---------------------------------------------------------------------- 9 : 10 : #include "HepPID/Version.hh" 11 : 12 : namespace HepPID { 13 : 14 0 : std::string versionName( ) 15 : { 16 0 : return "3.04.01"; 17 : } 18 : 19 0 : void version( ) 20 : { 21 0 : std::cout << " --------------- HepPID Version " << versionName() 22 : << " --------------- " << std::endl; 23 0 : } 24 : 25 0 : void writeVersion( std::ostream & os ) 26 : { 27 0 : os << " HepPID Version: " << versionName() << std::endl; 28 0 : } 29 : 30 : } // HepPID