-
Notifications
You must be signed in to change notification settings - Fork 2
/
myglobalvars.h
50 lines (42 loc) · 993 Bytes
/
myglobalvars.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
#ifndef MYGLOBALVARS_H
#define MYGLOBALVARS_H
#include <qstring.h>
QT_BEGIN_NAMESPACE
class QString;
class QStringList;
QT_END_NAMESPACE
extern QString OutputFileName;
extern QString TempFileName;
extern QString TempOutFile;
extern QString PlotPath;
extern QString documentFolderPath;
extern QString DataPath;
extern QString WSIMPath;
extern QString simEngine;
extern QString rootPath;
extern QString delimator;
extern QStringList RawData;
extern QStringList titleVals;
extern QStringList Legends;
extern QString propertiesFile;
extern int columNum;
extern double temperature;
extern double globalMagField;
extern double timestep;
extern int Simindex;
extern bool runProcess;
//Physical constants
extern double P_lambda;
extern double hbar;
extern double ecnst;
extern double Tc;
extern double Bc2;
extern double Kbolt;
extern double Pi;
extern double Phi0;
class myglobalvars
{
public:
myglobalvars();
};
#endif // MYGLOBALVARS_H