-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession.h
137 lines (106 loc) · 3.79 KB
/
session.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
// gamma-viewer-3d - 3d visualization of sessions generated by gamma-analyzer
// Copyright (C) 2017 Dag Robole
//
// This program 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.
//
// This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef SESSION_H
#define SESSION_H
#include "exceptions.h"
#include "detector.h"
#include "spectrum.h"
#include "geo.h"
#include <memory>
#include <vector>
#include <QString>
#include <QVector3D>
#include <QColor>
#include <QtSql>
extern "C"
{
#include "lua/lua.h"
#include "lua/lualib.h"
#include "lua/lauxlib.h"
}
namespace Gamma
{
struct LuaStateDeleter
{
void operator () (lua_State *L) const
{
if(L) { lua_close(L); }
}
};
typedef std::unique_ptr<lua_State, LuaStateDeleter> LuaStatePointer;
typedef std::vector<std::unique_ptr<Spectrum>> SpectrumList;
typedef SpectrumList::size_type SpectrumListSize;
class Session
{
public:
Session(QString sessionFileName, QString doserateScriptFileName);
Session(const Session &rhs) = delete;
~Session();
Session &operator = (const Session &) = delete;
const SpectrumList &spectrumList() const;
SpectrumListSize spectrumCount() const { return mSpectrumList.size(); }
const Spectrum &spectrum(SpectrumListSize index) const;
void loadDoserateScript(QString scriptFileName);
void loadDatabaseFile(QString databaseFileName);
QString name() const { return mName; }
double minDoserate() const { return mMinDoserate; }
double maxDoserate() const { return mMaxDoserate; }
double minX() const { return mMinX; }
double maxX() const { return mMaxX; }
double minY() const { return mMinY; }
double maxY() const { return mMaxY; }
double minZ() const { return mMinZ; }
double maxZ() const { return mMaxZ; }
double halfX() const { return mHalfX; }
double halfY() const { return mHalfY; }
double halfZ() const { return mHalfZ; }
double minAltitude() const { return mMinAltitude; }
double maxAltitude() const { return mMaxAltitude; }
void useLogarithmicDoserateColor(bool state) { mLogarithmicColorScale = state; }
QGeoCoordinate centerCoordinate, northCoordinate;
QVector3D centerPosition, northPosition;
void clear();
QColor makeDoserateColor(double doserate) const;
QColor makeDoserateColor(const Spectrum &spec) const;
struct Exception_UnableToCreateLuaState : public Exception
{
explicit Exception_UnableToCreateLuaState(QString source) noexcept
: Exception("Unable to create Lua state: " + source) {}
};
struct Exception_LoadDoserateScriptFailed : public Exception
{
explicit Exception_LoadDoserateScriptFailed(QString filename) noexcept
: Exception("Loading doserate script failed: " + filename) {}
};
private:
void loadSessionQuery(QSqlQuery &query);
QString mName;
QString mComment;
Detector mDetector;
SpectrumList mSpectrumList;
LuaStatePointer L;
bool mScriptLoaded;
double mLivetime;
double mMinDoserate, mMaxDoserate;
double mMinX, mMaxX, mMinY, mMaxY, mMinZ, mMaxZ;
double mHalfX, mHalfY, mHalfZ;
double mMinLatitude, mMaxLatitude;
double mMinLongitude, mMaxLongitude;
double mMinAltitude, mMaxAltitude;
bool mLogarithmicColorScale;
};
} // namespace Gamma
#endif // SESSION_H