~ubuntu-branches/ubuntu/utopic/travis/utopic

« back to all changes in this revision

Viewing changes to src/interface.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 and Martin Thomas.
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 INTERFACE_H
25
 
#define INTERFACE_H
26
 
 
27
 
#include <stdio.h>
28
 
#include <stdarg.h>
29
 
#include <math.h>
30
 
#include <string.h>
31
 
#include "bintools.h"
32
 
#include "moltools.h"
33
 
#include "xobject.h"
34
 
#include "xobarray.h"
35
 
#include "asciiart.h"
36
 
#include "backtrace.h"
37
 
#include "grace.h"
38
 
#include "acf.h"
39
 
#include "fft.h"
40
 
#include "spectrum.h"
41
 
#include "analysis.h"
42
 
#include "analysisgroup.h"
43
 
#include "timestep.h"
44
 
#include "database.h"
45
 
#include "xintarray.h"
46
 
#include "resp.h"
47
 
#include "react.h"
48
 
#include "globalvar.h"
49
 
 
50
 
void Interface_DefaultConf();
51
 
 
52
 
bool Interface_BeforeAnalysis();
53
 
 
54
 
bool Interface_Initialization();
55
 
 
56
 
void Interface_ProcessStep(CTimeStep *ts);
57
 
 
58
 
void Interface_AfterAnalysis();
59
 
 
60
 
void Interface_DecomposeModes(int n, CxObArray *ccr_matrix);
61
 
 
62
 
#endif
63
 
 
 
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 and Martin Thomas.
 
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 INTERFACE_H
 
25
#define INTERFACE_H
 
26
 
 
27
#include <stdio.h>
 
28
#include <stdarg.h>
 
29
#include <math.h>
 
30
#include <string.h>
 
31
#include "bintools.h"
 
32
#include "moltools.h"
 
33
#include "xobject.h"
 
34
#include "xobarray.h"
 
35
#include "asciiart.h"
 
36
#include "backtrace.h"
 
37
#include "grace.h"
 
38
#include "acf.h"
 
39
#include "fft.h"
 
40
#include "spectrum.h"
 
41
#include "analysis.h"
 
42
#include "analysisgroup.h"
 
43
#include "timestep.h"
 
44
#include "database.h"
 
45
#include "xintarray.h"
 
46
#include "resp.h"
 
47
#include "react.h"
 
48
#include "globalvar.h"
 
49
 
 
50
void Interface_DefaultConf();
 
51
 
 
52
bool Interface_BeforeAnalysis();
 
53
 
 
54
bool Interface_Initialization();
 
55
 
 
56
void Interface_ProcessStep(CTimeStep *ts);
 
57
 
 
58
void Interface_AfterAnalysis();
 
59
 
 
60
void Interface_DecomposeModes(int n, CxObArray *ccr_matrix);
 
61
 
 
62
#endif
 
63