QDP++
qdp_init.h
Go to the documentation of this file.
1// -*- C++ -*-
2
9
10// Info/error routines
11namespace QDP {
12
14void QDP_initialize (int *argc, char ***argv);
15
17bool QDP_isInitialized ();
18
20void QDP_finalize ();
21
23void QDP_abort (int status);
24
26int QDP_info (const char* format, ...);
27
29int QDP_error (const char* format, ...);
30
32void QDP_error_exit (const char *format, ...);
33
35void QDP_resume();
36
38void QDP_suspend();
39
40}
41
Yet another random number generator.
bool QDP_isInitialized()
Is the machine initialized?
void QDP_error_exit(const char *format,...)
Simple error display and abort routine.
Definition qdp_util.cc:93
void QDP_initialize(int *argc, char ***argv)
Turn on the machine.
int QDP_error(const char *format,...)
Simple error display routine.
Definition qdp_util.cc:69
void QDP_suspend()
Suspends QDP communications.
void QDP_abort(int status)
Panic button.
void QDP_resume()
Resumes QDP communications.
void QDP_finalize()
Turn off the machine.
int QDP_info(const char *format,...)
Simple information display routine.
Definition qdp_util.cc:43