|
a |
|
b/Tools/AnyMocap/RunApplication.any |
|
|
1 |
Main = { |
|
|
2 |
|
|
|
3 |
// AnyOperationMacro RunParameterIdentification = |
|
|
4 |
// { |
|
|
5 |
// MacroStr = {"operation Main.ModelSetup.Views.SetViewMacros.KinematicView", |
|
|
6 |
// "run", |
|
|
7 |
// "operation Main.Studies.ParameterIdentification.ParameterOptimization", |
|
|
8 |
// "run", |
|
|
9 |
// "operation Main.ModelSetup.Macros.Save_parameters", |
|
|
10 |
// "run"}; |
|
|
11 |
// }; |
|
|
12 |
// |
|
|
13 |
#if MOCAP_CREATE_PARAMETER_ID_SHORTCUT |
|
|
14 |
|
|
|
15 |
|
|
|
16 |
AnyOperationSequence RunParameterIdentification = |
|
|
17 |
{ |
|
|
18 |
OPERATION_DISPLAY_PRIORITY(PriorityHigh); |
|
|
19 |
AnyOperationSequence ParameterIdentification = |
|
|
20 |
{ |
|
|
21 |
OPERATION_DISPLAY_PRIORITY(PriorityLow); |
|
|
22 |
AnyOperationDummy placeholder_operation= {}; |
|
|
23 |
}; |
|
|
24 |
AnyOperationSequence SaveParameters = |
|
|
25 |
{ |
|
|
26 |
OPERATION_DISPLAY_PRIORITY(PriorityLow); |
|
|
27 |
AnyOperationDummy placeholder_operation= {}; |
|
|
28 |
}; |
|
|
29 |
|
|
|
30 |
}; |
|
|
31 |
#endif |
|
|
32 |
|
|
|
33 |
AnyOperationSequence RunAnalysis= { |
|
|
34 |
OPERATION_DISPLAY_PRIORITY(PriorityHigh); |
|
|
35 |
OPERATION_SELECT_ON_LOAD; |
|
|
36 |
|
|
|
37 |
AnyOperationSequence LoadParameters = |
|
|
38 |
{ |
|
|
39 |
OPERATION_DISPLAY_PRIORITY(PriorityHigh); |
|
|
40 |
AnyOperationSequence SubOperations= {OPERATION_DISPLAY_PRIORITY(PriorityLow); AnyOperationDummy dummy={};}; |
|
|
41 |
}; |
|
|
42 |
|
|
|
43 |
AnyOperationSequence MarkerTracking = |
|
|
44 |
{ |
|
|
45 |
OPERATION_DISPLAY_PRIORITY(PriorityHigh); |
|
|
46 |
AnyOperationSequence SubOperations= {OPERATION_DISPLAY_PRIORITY(PriorityLow); AnyOperationDummy dummy={};}; |
|
|
47 |
}; |
|
|
48 |
|
|
|
49 |
AnyOperationSequence InverseDynamics = |
|
|
50 |
{ |
|
|
51 |
OPERATION_DISPLAY_PRIORITY(PriorityHigh); |
|
|
52 |
AnyOperationSequence SubOperations= {OPERATION_DISPLAY_PRIORITY(PriorityLow); AnyOperationDummy dummy={};}; |
|
|
53 |
}; |
|
|
54 |
AnyOperationSequence SaveOutput = |
|
|
55 |
{ |
|
|
56 |
OPERATION_DISPLAY_PRIORITY(PriorityHigh); |
|
|
57 |
AnyOperation& SaveHDF5= Main.ModelSetup.Macros.SaveOutputToHDF; |
|
|
58 |
}; |
|
|
59 |
}; |
|
|
60 |
|
|
|
61 |
AnyOperationSequence LoadAndReplay= |
|
|
62 |
{ |
|
|
63 |
AnyOperation& LoadParameters= Main.ModelSetup.Macros.Load_parameters; |
|
|
64 |
AnyOperation& LoadHDF5= Main.ModelSetup.Macros.LoadOutputFromHDF; |
|
|
65 |
AnyOperation& Replay= Main.Studies.InverseDynamicStudy.Replay; |
|
|
66 |
}; |
|
|
67 |
}; |