![]() |
HepPDT Reference DocumentationHepPDT |
00001 // ---------------------------------------------------------------------- 00002 // 00003 // version.cc 00004 // Author: Lynn Garren 00005 // 00006 // for now, this is a free function 00007 // 00008 // ---------------------------------------------------------------------- 00009 00010 #include "HepPID/Version.hh" 00011 00012 namespace HepPID { 00013 00014 std::string versionName( ) 00015 { 00016 return "3.04.01"; 00017 } 00018 00019 void version( ) 00020 { 00021 std::cout << " --------------- HepPID Version " << versionName() 00022 << " --------------- " << std::endl; 00023 } 00024 00025 void writeVersion( std::ostream & os ) 00026 { 00027 os << " HepPID Version: " << versionName() << std::endl; 00028 } 00029 00030 } // HepPID