HiRep 0.1
Loading...
Searching...
No Matches
setup.h
Go to the documentation of this file.
1/***************************************************************************\
2 * Copyright (c) 2008-2014, Vincent Drach *
3 * All rights reserved. *
4 \**************************************************************************/
5
8
15#ifndef SETUP_H
16#define SETUP_H
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
25char *get_input_filename();
26
31
36char *get_error_filename();
37
44int setup_process(int *argc, char ***argv);
45
49void finalize_process(void);
50
55
56#ifdef __cplusplus
57}
58#endif
59#endif
int setup_process(int *argc, char ***argv)
Setup the process at the beginning of each run.
Definition process_init.c:112
char * get_output_filename()
Get output filename, default out_0 in the local directory.
Definition process_init.c:44
void finalize_process(void)
Finalize process at the end of each run.
Definition process_init.c:244
void setup_gauge_fields()
Initialize gauge fields.
Definition process_init.c:80
char * get_input_filename()
Read input filename from command line.
Definition process_init.c:41
char * get_error_filename()
Get filename of file to print errors to, default is err_0 in the current directory.
Definition process_init.c:47