-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathluna.h
139 lines (101 loc) · 2.92 KB
/
luna.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// --------------------------------------------------------------------
//
// This file is part of Luna.
//
// LUNA is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Luna is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Luna. If not, see <http://www.gnu.org/licenses/>.
//
// Please see LICENSE.txt for more details.
//
// --------------------------------------------------------------------
#ifndef __LUNA_H__
#define __LUNA_H__
#include <cstddef>
#include "eval.h"
#include "dummy.h"
#include "cmddefs.h"
#include "defs/defs.h"
#include "helper/helper.h"
#include "helper/zfile.h"
#include "helper/token-eval.h"
#include "helper/token.h"
#include "helper/logger.h"
#include "helper/xml-parser.h"
#include "helper/json.h"
#include "helper/mapper.h"
#include "helper/validate.h"
#include "tinyxml/tinyxml.h"
#include "tinyxml/xmlreader.h"
#include "stats/Eigen/Dense"
#include "stats/eigen_ops.h"
#include "stats/cluster.h"
#include "stats/kmeans.h"
#include "stats/cpt.h"
#include "stats/nmf.h"
#include "stats/gpa.h"
#include "miscmath/miscmath.h"
#include "miscmath/dynam.h"
#include "miscmath/crandom.h"
#include "stats/glm.h"
#include "stats/lda.h"
#include "stats/qda.h"
#include "dynamics/qdynam.h"
#include "dynamics/e-cycles.h"
#include "annot/annot.h"
#include "annot/annotate.h"
#include "annot/align-annots.h"
#include "edf/edf.h"
#include "edf/canonical.h"
#include "edf/slice.h"
#include "edf/sedf.h"
#include "edf/freezer.h"
#include "edf/align-epochs.h"
#include "edf/insert.h"
#include "timeline/timeline.h"
#include "annot/nsrr-remap.h"
#include "dsp/dsp.h"
#include "dsp/libsamplerate/samplerate.h"
#include "spectral/welch.h"
#include "spectral/irasa.h"
#include "spectral/mtm/mtm.h"
#include "fftw/fftwrap.h"
#include "ica/ica.h"
#include "spindles/spindles.h"
#include "spindles/slow-waves.h"
#include "artifacts/artifacts.h"
#include "artifacts/correct.h"
#include "cwt/cwt.h"
#include "pdc/pdc.h"
#include "staging/staging.h"
#include "suds/suds.h"
#include "lgbm/lgbm.h"
#include "pops/pops.h"
#include "assoc/assoc.h"
#include "assoc/massoc.h"
#include "clocs/topo.h"
#include "clocs/clocs.h"
#include "db/db.h"
#include "db/retval.h"
#include "sstore/sstore.h"
#include "resp/hb.h"
#include "models/predict.h"
#include "lunapi/lunapi.h"
#include "lunapi/segsrv.h"
#include <iostream>
#include <unistd.h>
#include <dirent.h>
extern globals global;
extern writer_t writer;
extern logger_t logger;
extern freezer_t freezer;
#endif