source: pacpusframework/branches/2.0-beta1/include/Pacpus/structure/structureOutput.h@ 89

Last change on this file since 89 was 89, checked in by morasjul, 11 years ago

PACPUS 2.0 Beta deployed in new branch

Major changes:
-Add communication interface between components
-Add examples for communications interface (TestComponents)
-Move to Qt5 support

  • Property svn:executable set to *
File size: 839 bytes
Line 
1
2#ifndef _STRUCTURE_OUTPUT_H_
3#define _STRUCTURE_OUTPUT_H_
4
5#include "kernel/road_time.h"
6
7typedef struct {
8 road_time_t time;
9 road_timerange_t tr;
10 double Fx_AVG_E;
11 double Fx_AVD_E;
12 double Fx_ARG_E;
13 double Fx_ARD_E;
14 double Fy_AVG_EKF;
15 double Fy_AVD_EKF;
16 double Fy_ARG_EKF;
17 double Fy_ARD_EKF;
18 double Fy_AVG_PF;
19 double Fy_AVD_PF;
20 double Fy_ARG_PF;
21 double Fy_ARD_PF;
22 double Fz_AVG_E;
23 double Fz_AVD_E;
24 double Fz_ARG_E;
25 double Fz_ARD_E;
26 double derive_EKF;
27 double derive_PF;
28
29 double Fx_AVG;
30 double Fx_AVD;
31 double Fx_ARG;
32 double Fx_ARD;
33 double Fy_AVG;
34 double Fy_AVD;
35 double Fy_ARG;
36 double Fy_ARD;
37 double Fz_AVG;
38 double Fz_AVD;
39 double Fz_ARG;
40 double Fz_ARD;
41 double derive_CDG;
42
43
44}StructureOutput;
45
46
47#endif
48
Note: See TracBrowser for help on using the repository browser.