1 |
mocchiut |
1.1 |
#ifndef OrbitalInfo_h |
2 |
mocchiut |
1.2 |
#define OrbitalInfo_h |
3 |
mocchiut |
1.1 |
|
4 |
|
|
#include <TObject.h> |
5 |
pam-fi |
1.5 |
#include <OrbitalInfoStruct.h> |
6 |
mocchiut |
1.1 |
|
7 |
pam-rm2 |
1.9 |
/** |
8 |
|
|
* Class that stores position, time, inclination, magnetic field and |
9 |
|
|
* cutoff informations. |
10 |
|
|
*/ |
11 |
mocchiut |
1.1 |
class OrbitalInfo : public TObject { |
12 |
|
|
public: |
13 |
|
|
OrbitalInfo(); |
14 |
mocchiut |
1.3 |
OrbitalInfo* GetOrbitalInfo(){return this;}; // Elena |
15 |
mocchiut |
1.1 |
|
16 |
mocchiut |
1.11 |
UInt_t absTime; ///< Absolute Time (seconds) |
17 |
|
|
UInt_t OBT; ///< On Board Time (ms) |
18 |
|
|
UInt_t pkt_num; ///< CPU packet number |
19 |
|
|
|
20 |
|
|
Float_t lon; ///< degrees from -180 to 180 |
21 |
|
|
Float_t lat; ///< degrees from -90 to 90 |
22 |
|
|
Float_t alt; ///< meters asl |
23 |
pam-rm2 |
1.9 |
|
24 |
|
|
// B components. |
25 |
mocchiut |
1.11 |
Float_t Bnorth; ///< gauss |
26 |
|
|
Float_t Beast; ///< gauss |
27 |
|
|
Float_t Bdown; ///< gauss |
28 |
pam-rm2 |
1.9 |
|
29 |
mocchiut |
1.11 |
Float_t Babs; ///< abs value (guass) |
30 |
pam-rm2 |
1.9 |
|
31 |
mocchiut |
1.11 |
Float_t BB0; ///< B abs over the B minimum on this field line |
32 |
pam-rm2 |
1.9 |
|
33 |
mocchiut |
1.11 |
Float_t L; ///< McIlwain's L shell (in earth radii) |
34 |
pam-rm2 |
1.9 |
|
35 |
mocchiut |
1.12 |
// Dipolar magnetic coordinates (not used). |
36 |
mocchiut |
1.11 |
Float_t londip; ///< degrees from -180 to 180 |
37 |
|
|
Float_t latdip; ///< degrees from -90 to 90 |
38 |
|
|
Float_t altdip; ///< meters |
39 |
pam-rm2 |
1.9 |
|
40 |
mocchiut |
1.12 |
// Corrected magnetic coordinates (not used). |
41 |
mocchiut |
1.11 |
Float_t loncgm; ///< degrees from -180 to 180 |
42 |
|
|
Float_t latcgm; ///< degrees from -90 to 90 |
43 |
|
|
Float_t altcgm; ///< meters |
44 |
pam-rm2 |
1.9 |
|
45 |
mocchiut |
1.12 |
// Corrected B min magnetic coordinates (not used). |
46 |
mocchiut |
1.11 |
Float_t loncbm; ///< degrees from -180 to 180 |
47 |
|
|
Float_t latcbm; ///< degrees from -90 to 90 |
48 |
|
|
Float_t altcbm; ///< meters |
49 |
pam-rm2 |
1.7 |
|
50 |
|
|
Float_t cutoff[20]; |
51 |
|
|
|
52 |
mocchiut |
1.12 |
// Quaternions |
53 |
mocchiut |
1.13 |
Float_t q0; ///< Quaternion 0 |
54 |
|
|
Float_t q1; ///< Quaternion 1 |
55 |
|
|
Float_t q2; ///< Quaternion 2 |
56 |
|
|
Float_t q3; ///< Quaternion 3 |
57 |
|
|
|
58 |
|
|
// Euler angles (Resurs velocity reference frame) |
59 |
|
|
Float_t theta; ///< Euler angle theta in the velocity reference frame (pitch) |
60 |
|
|
Float_t phi; ///< Euler angle phi in the velocity reference frame (yaw) |
61 |
|
|
Float_t etha; ///< Euler angle etha in the velocity reference frame (roll) |
62 |
pam-rm2 |
1.7 |
|
63 |
mocchiut |
1.13 |
/** |
64 |
|
|
* The variable mode means a character time distant between two quaternions, inside which stay every events |
65 |
|
|
*/ |
66 |
|
|
Int_t mode; // 0 - means that time different pair of quaternions exuals to 0.25 seconds in R10 mode |
67 |
|
|
// (it mean that all quaternions in array is correct) |
68 |
|
|
// 1 - means that we have R10 mode and use just first value of quaternions array |
69 |
|
|
// 2 - means that we have non R10 mode and use every quaternions from array. |
70 |
|
|
// 3 - means normal transition from R10 to non R10 or from non R10 to R10. |
71 |
|
|
// 4 - means that we have eliminable hole between R10 and non R10 or between non R10 and R10 |
72 |
|
|
// 5 - means that we have uneliminable hole between R10 and non R10 or between non R10 and R10 |
73 |
|
|
// 6 - means that we have eliminable hole inside R10 (in such keys eliminable depends from other factors also) |
74 |
|
|
// 7 - means that we have uneliminable hole inside R10 |
75 |
|
|
// 8 - means that we have eliminable hole inside non R10 |
76 |
|
|
// 9 - means that we have uneliminable hole inside non R10 |
77 |
|
|
|
78 |
pam-rm2 |
1.9 |
/** |
79 |
|
|
\return Returns the B minimum along the field line. |
80 |
|
|
*/ |
81 |
mocchiut |
1.8 |
Float_t GetB0() { return Babs/BB0; }; |
82 |
|
|
|
83 |
pam-rm2 |
1.9 |
/** |
84 |
|
|
\return Returns the Stormer vertical cutoff using L shell: |
85 |
|
|
14.9/L^2 (GV/c). |
86 |
|
|
*/ |
87 |
mocchiut |
1.8 |
Float_t GetCutoffSVL() { return cutoff[0]; }; |
88 |
pam-rm2 |
1.7 |
|
89 |
pam-fi |
1.5 |
void SetFromLevel2Struct(cOrbitalInfo *l2); |
90 |
|
|
void GetLevel2Struct(cOrbitalInfo *l2) const; |
91 |
|
|
|
92 |
mocchiut |
1.4 |
void Clear(); // emiliano |
93 |
|
|
// |
94 |
mocchiut |
1.13 |
ClassDef(OrbitalInfo, 3) |
95 |
mocchiut |
1.1 |
}; |
96 |
|
|
#endif |