SOLARPROP  1.0
 All Classes Functions Variables
properties.h
1 /*
2  * properties.h
3  *
4  * Author: kappl
5  */
6 
7 #ifndef PROPERTIES_H_
8 #define PROPERTIES_H_
9 
10 #include <string>
11 
15 typedef struct properties
16 {
20  int charge;
24  double mass;
28  double T;
29 } Tproperties;
30 
34 typedef struct modelInformation {
38  std::string model;
42  double kappaScaling;
46  double BfieldScaling;
50  double angle;
54  int polarity;
62  int dt;
64 
68 typedef struct stepData {
72  double tanPsi;
76  double beta;
80  double rigidity;
84  double parallel;
88  double perpendicular;
92  double alphaH;
93 } TstepData;
94 
98 typedef enum importStatus {
99  success,
100  error,
101  version
102 } TimportStatus;
103 
104 #endif /* PROPERTIES_H_ */