KaliVeda
Toolkit for HIC analysis
KVVersion.h
1 #pragma once
2 /*
3  Paths and other infos set when project is configured
4 */
5 
6 #include <string>
7 
8 namespace kaliveda
9 {
10  namespace build_infos
11  {
12  using std::string;
13  /* Root directory of installation */
14  string KV_ROOT="/usr/local";
15 
16  /* String with version information */
17  string KV_VERSION="1.15/0";
21 
22  /* Date when project was built */
23  string KV_BUILD_DATE="2025-07-11";
24 
25  /* Time when project was built */
26  string KV_BUILD_TIME="07:55:03";
27 
28  /* Username of person who performed the build */
29  string KV_BUILD_USER="";
30 
31  /* Directory containing the sources for the build */
32  string KV_SOURCE_DIR="/tmp/kaliveda/src";
33 
34  /* Directory used for the build */
35  string KV_BUILD_DIR="/tmp/kaliveda";
36 
37  /* CMake build type (Release, Debug, RelWithDebInfo, ...) */
38  string KV_BUILD_TYPE="RelWithDebInfo";
39 
40  /* String with ROOT version information */
41  string KV_ROOT_VERSION="6.32.09";
42 
43  /* Directory with class templates */
44  string TEMPLATEDIR="/usr/local/share/kaliveda/templates";
45 
46  /* Directory with configuration files */
47  string ETCDIR="/usr/local/share/kaliveda/etc";
48 
49  /* Directory containing dataset directories and all read-only data files used by classes */
50  string DATADIR="/usr/local/share/kaliveda";
51 
52  /* Directory containing class libraries */
53  string LIBDIR="/usr/local/lib/kaliveda";
54 
55  /* Directory containing header files */
56  string INCDIR="/usr/local/include/kaliveda";
57 
58  /* Directory containing executables */
59  string BINDIR="/usr/local/bin";
60 
61  /* Directory containing dataset directories */
62  string DATASETDIR="/usr/local/share/kaliveda";
63  }
64 }