/usr/include/CLHEP/ClhepVersion.h is in libclhep-dev 2.1.4.1+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #ifndef CLHEP_VERSION_H
#define CLHEP_VERSION_H 1
//
// ClhepVersion.h
//
// Sample Usage:
// std::string version = CLHEP::Version::String()
// int mjr = CLHEP::Version::Major();
//
#include <string>
namespace CLHEP {
struct Version {
static std::string String() { return "2.1.4.1"; }
static int Major() { return 2; }
static int SubMajor() { return 1; }
static int Minor() { return 4; }
static int SubMinor() { return 1; }
};
} // namespace
#endif // CLHEP_VERSION_H
|