aboutsummaryrefslogtreecommitdiff
path: root/src/id.hh
blob: 1bfeb562f087f4a90e42e40d405e42f599a936d8 (plain)
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 FORMALINE_ID_HH
#define FORMALINE_ID_HH

#include "cctk.h"

namespace Formaline
{
  
  // Get the configuration id
  char const *
  get_config_id (cGH const * const cctkGH);
  
  // Get the unique build id
  char const *
  get_build_id (cGH const * const cctkGH);
  
  // Get a unique simulation id
  char const *
  get_simulation_id (cGH const * const cctkGH);
  
  // Get a unique run id
  char const *
  get_run_id (cGH const * const cctkGH);
  
} // namespace Formaline

#endif // #ifndef FORMALINE_ID_HH