~ubuntu-branches/ubuntu/trusty/travis/trusty

« back to all changes in this revision

Viewing changes to src/config.h

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2014-01-18 20:07:16 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20140118200716-whsmcg7fa1eyqecq
Tags: 140117-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*****************************************************************************
2
 
    TRAVIS - Trajectory Analyzer and Visualizer
3
 
    http://www.travis-analyzer.de/
4
 
 
5
 
    Copyright (c) 2009-2013 Martin Brehm
6
 
                  2012-2013 Martin Thomas
7
 
 
8
 
    This file written by Martin Brehm.
9
 
 
10
 
    This program is free software: you can redistribute it and/or modify
11
 
    it under the terms of the GNU General Public License as published by
12
 
    the Free Software Foundation, either version 3 of the License, or
13
 
    (at your option) any later version.
14
 
 
15
 
    This program is distributed in the hope that it will be useful,
16
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
    GNU General Public License for more details.
19
 
 
20
 
    You should have received a copy of the GNU General Public License
21
 
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 
*****************************************************************************/
23
 
 
24
 
#ifndef CONFIG_H
25
 
#define CONFIG_H
26
 
 
27
 
 
28
 
#define SOURCE_VERSION "Nov 15 2013"
29
 
 
30
 
/* Please uncomment / comment out the flags you want to use / not to use. */
31
 
 
32
 
// You have to change this according to your target Operating System.
33
 
// For a generic platform-independent build, comment out both lines.
34
 
//#define TARGET_WINDOWS
35
 
#define TARGET_LINUX
36
 
 
37
 
// Use color for screen output?
38
 
#define USE_COLOR
39
 
 
40
 
// Maximum number of bonds any atom may form
41
 
#define MAX_BONDS 12
42
 
 
43
 
// Use the FFTW library? Otherwise, the built-in KISS-FFT routine is used (default)
44
 
//#define USE_FFTW
45
 
 
46
 
// Bound checking in dynamic arrays?
47
 
#define DEBUG_ARRAYS
48
 
 
49
 
 
50
 
/***************************************************************************/
51
 
// Some "hardcore" debug flags
52
 
// Warning: They may drastically decrease performance
53
 
/***************************************************************************/
54
 
 
55
 
 
56
 
// Activate debug backtrace?
57
 
//#define DEBUG_BACKTRACE
58
 
//#define DEBUG_EXTENDED_BACKTRACE
59
 
 
60
 
 
61
 
//#define DEBUG_DATABASE
62
 
//#define DEBUG_CSTRING
63
 
//#define DEBUG_MATULTRA
64
 
//#define DEBUG_CVECTOR3
65
 
//#define DEBUG_CDVECTOR3
66
 
 
67
 
 
68
 
//#define DEBUG_COBARRAY
69
 
//#define DEBUG_CPTRARRAY
70
 
//#define DEBUG_CWORDARRAY
71
 
//#define DEBUG_CLONGARRAY
72
 
//#define DEBUG_CINTARRAY
73
 
//#define DEBUG_CFLOATARRAY
74
 
//#define DEBUG_CDOUBLEARRAY
75
 
//#define DEBUG_CVEC3ARRAY
76
 
//#define DEBUG_CDVEC3ARRAY
77
 
 
78
 
 
79
 
#endif
80
 
 
 
1
/*****************************************************************************
 
2
    TRAVIS - Trajectory Analyzer and Visualizer
 
3
    http://www.travis-analyzer.de/
 
4
 
 
5
    Copyright (c) 2009-2014 Martin Brehm
 
6
                  2012-2014 Martin Thomas
 
7
 
 
8
    This file written by Martin Brehm.
 
9
 
 
10
    This program is free software: you can redistribute it and/or modify
 
11
    it under the terms of the GNU General Public License as published by
 
12
    the Free Software Foundation, either version 3 of the License, or
 
13
    (at your option) any later version.
 
14
 
 
15
    This program is distributed in the hope that it will be useful,
 
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
    GNU General Public License for more details.
 
19
 
 
20
    You should have received a copy of the GNU General Public License
 
21
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
*****************************************************************************/
 
23
 
 
24
#ifndef CONFIG_H
 
25
#define CONFIG_H
 
26
 
 
27
 
 
28
#define SOURCE_VERSION "Jan 17 2014"
 
29
 
 
30
/* Please uncomment / comment out the flags you want to use / not to use. */
 
31
 
 
32
// You have to change this according to your target Operating System.
 
33
// For a generic platform-independent build, comment out both lines.
 
34
//#define TARGET_WINDOWS
 
35
#define TARGET_LINUX
 
36
 
 
37
// Use color for screen output?
 
38
#define USE_COLOR
 
39
 
 
40
// Maximum number of bonds any atom may form
 
41
#define MAX_BONDS 12
 
42
 
 
43
// Use the FFTW library? Otherwise, the built-in KISS-FFT routine is used (default)
 
44
//#define USE_FFTW
 
45
 
 
46
// Bound checking in dynamic arrays?
 
47
#define DEBUG_ARRAYS
 
48
 
 
49
 
 
50
/***************************************************************************/
 
51
// Some "hardcore" debug flags
 
52
// Warning: They may drastically decrease performance
 
53
/***************************************************************************/
 
54
 
 
55
 
 
56
// Activate debug backtrace?
 
57
//#define DEBUG_BACKTRACE
 
58
//#define DEBUG_EXTENDED_BACKTRACE
 
59
 
 
60
 
 
61
//#define DEBUG_DATABASE
 
62
//#define DEBUG_CSTRING
 
63
//#define DEBUG_MATULTRA
 
64
//#define DEBUG_CVECTOR3
 
65
//#define DEBUG_CDVECTOR3
 
66
 
 
67
 
 
68
//#define DEBUG_COBARRAY
 
69
//#define DEBUG_CPTRARRAY
 
70
//#define DEBUG_CWORDARRAY
 
71
//#define DEBUG_CLONGARRAY
 
72
//#define DEBUG_CINTARRAY
 
73
//#define DEBUG_CFLOATARRAY
 
74
//#define DEBUG_CDOUBLEARRAY
 
75
//#define DEBUG_CVEC3ARRAY
 
76
//#define DEBUG_CDVEC3ARRAY
 
77
 
 
78
 
 
79
#endif
 
80