#ifndef TOMOPROCESS_CONFIGURATION_HPP
#define TOMOPROCESS_CONFIGURATION_HPP

#define NDEBUG 1 // Set it to 1 in order to disable debug.

#if NDEBUG
#  define DEBUG 0
#else
#  define DEBUG 1
#endif

//
// Version and autoring
//

/// Tomoprocess version
#define TOMOPROCESS_VERSION 1.3
#define TOMOPROCESS_MAJOR_VERSION 1
#define TOMOPROCESS_MINOR_VERSION 3
#define TOMOPROCESS_PATCH_VERSION 0

/// Author
#define TOMOPROCESS_AUTHOR "* Author: Leblanc Christophe.\n"

/// E-mail
#define TOMOPROCESS_EMAIL "* Emails: christophe.leblanc@ulg.ac.be - cleblancad@gmail.com\n"

/// Affiliation.
#define TOMOPROCESS_UNIVERSITY "* LTAS department, Aerospace and mechanics, University of Liège (ULg) - http://www.ulg.ac.be\n"

#endif // TOMOPROCESS_CONFIGURATION_HPP
