Newer
Older
# ==================================================================
# WorkingMemoryToArVizApp properties
# ==================================================================
# ArmarX.AdditionalPackages: List of additional ArmarX packages which should be in the list of default packages. If you have custom packages, which should be found by the gui or other apps, specify them here. Comma separated List.
# Attributes:
# - Default: Default value not mapped.
# - Case sensitivity: yes
# - Required: no
# ArmarX.AdditionalPackages = Default value not mapped.
# ArmarX.ApplicationName: Application name
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.ApplicationName = ""
# ArmarX.CachePath: Path for cache files. If relative path AND env. variable ARMARX_CONFIG_DIR is set, the cache path will be made relative to ARMARX_CONFIG_DIR. Otherwise if relative it will be relative to the default ArmarX config dir (${ARMARX_WORKSPACE}/armarx_config)
# Attributes:
# - Default: mongo/.cache
# - Case sensitivity: yes
# - Required: no
# ArmarX.CachePath = mongo/.cache
# ArmarX.Config: Comma-separated list of configuration files
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.Config = ""
# ArmarX.DataPath: Semicolon-separated search list for data files
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.DataPath = ""
# ArmarX.DefaultPackages: List of ArmarX packages which are accessible by default. Comma separated List. If you want to add your own packages and use all default ArmarX packages, use the property 'AdditionalPackages'.
# Attributes:
# - Default: Default value not mapped.
# - Case sensitivity: yes
# - Required: no
# ArmarX.DefaultPackages = Default value not mapped.
# ArmarX.DependenciesConfig: Path to the (usually generated) config file containing all data paths of all dependent projects. This property usually does not need to be edited.
# Attributes:
# - Default: ./config/dependencies.cfg
# - Case sensitivity: yes
# - Required: no
# ArmarX.DependenciesConfig = ./config/dependencies.cfg
# ArmarX.DisableLogging: Turn logging off in whole application
# Attributes:
# - Default: false
# - Case sensitivity: yes
# - Required: no
# - Possible values: {0, 1, false, no, true, yes}
# ArmarX.DisableLogging = false
# ArmarX.EnableProfiling: Enable profiling of CPU load produced by this application
# Attributes:
# - Default: false
# - Case sensitivity: yes
# - Required: no
# - Possible values: {0, 1, false, no, true, yes}
# ArmarX.EnableProfiling = false
# ArmarX.LoadLibraries: Libraries to load at start up of the application. Must be enabled by the Application with enableLibLoading(). Format: PackageName:LibraryName;... or /absolute/path/to/library;...
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.LoadLibraries = ""
# ArmarX.LoggingGroup: The logging group is transmitted with every ArmarX log message over Ice in order to group the message in the GUI.
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.LoggingGroup = ""
# ArmarX.RedirectStdout: Redirect std::cout and std::cerr to ArmarXLog
# Attributes:
# - Default: true
# - Case sensitivity: yes
# - Required: no
# - Possible values: {0, 1, false, no, true, yes}
# ArmarX.RedirectStdout = true
# ArmarX.RemoteHandlesDeletionTimeout: The timeout (in ms) before a remote handle deletes the managed object after the use count reached 0. This time can be used by a client to increment the count again (may be required when transmitting remote handles)
# Attributes:
# - Default: 3000
# - Case sensitivity: yes
# - Required: no
# ArmarX.RemoteHandlesDeletionTimeout = 3000
# ArmarX.SecondsStartupDelay: The startup will be delayed by this number of seconds (useful for debugging)
# Attributes:
# - Default: 0
# - Case sensitivity: yes
# - Required: no
# ArmarX.SecondsStartupDelay = 0
# ArmarX.StartDebuggerOnCrash: If this application crashes (segmentation fault) qtcreator will attach to this process and start the debugger.
# Attributes:
# - Default: false
# - Case sensitivity: yes
# - Required: no
# - Possible values: {0, 1, false, no, true, yes}
# ArmarX.StartDebuggerOnCrash = false
# ArmarX.ThreadPoolSize: Size of the ArmarX ThreadPool that is always running.
# Attributes:
# - Default: 1
# - Case sensitivity: yes
# - Required: no
# ArmarX.ThreadPoolSize = 1
# ArmarX.TopicSuffix: Suffix appended to all topic names for outgoing topics. This is mainly used to direct all topics to another name for TopicReplaying purposes.
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.TopicSuffix = ""
# ArmarX.UseTimeServer: Enable using a global Timeserver (e.g. from ArmarXSimulator)
# Attributes:
# - Default: false
# - Case sensitivity: yes
# - Required: no
# - Possible values: {0, 1, false, no, true, yes}
# ArmarX.UseTimeServer = false
# ArmarX.Verbosity: Global logging level for whole application
# Attributes:
# - Default: Info
# - Case sensitivity: yes
# - Required: no
# - Possible values: {Debug, Error, Fatal, Important, Info, Undefined, Verbose, Warning}
# ArmarX.Verbosity = Info
# ArmarX.WorkingMemoryToArViz.ArVizStorageName: Name of the ArViz storage
# Attributes:
# - Default: ArVizStorage
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.ArVizStorageName = ArVizStorage
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# ArmarX.WorkingMemoryToArViz.ArVizTopicName: Name of the ArViz topic
# Attributes:
# - Default: ArVizTopic
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.ArVizTopicName = ArVizTopic
# ArmarX.WorkingMemoryToArViz.EnableProfiling: enable profiler which is used for logging performance events
# Attributes:
# - Default: false
# - Case sensitivity: yes
# - Required: no
# - Possible values: {0, 1, false, no, true, yes}
# ArmarX.WorkingMemoryToArViz.EnableProfiling = false
# ArmarX.WorkingMemoryToArViz.MinimumLoggingLevel: Local logging level only for this component
# Attributes:
# - Default: Undefined
# - Case sensitivity: yes
# - Required: no
# - Possible values: {Debug, Error, Fatal, Important, Info, Undefined, Verbose, Warning}
# ArmarX.WorkingMemoryToArViz.MinimumLoggingLevel = Undefined
# ArmarX.WorkingMemoryToArViz.ObjectClassBlackWhitelistTopic: The topic where updates to the object class black-whitelist are published.
# Attributes:
# - Default: WorkingMemoryToArVizObjectClassBlackWhitelistUpdates
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.ObjectClassBlackWhitelistTopic = WorkingMemoryToArVizObjectClassBlackWhitelistUpdates
# ArmarX.WorkingMemoryToArViz.ObjectClassBlacklist: These object classes will never be shown (comma separated list).
# Attributes:
# - Default: [empty blacklist]
# - Case sensitivity: yes
# - Required: no
# - Possible values: {[empty blacklist]}
# ArmarX.WorkingMemoryToArViz.ObjectClassBlacklist = [empty blacklist]
# ArmarX.WorkingMemoryToArViz.ObjectClassWhitelist: If not empty, only these object classes are shown (comma separated list).
# Attributes:
# - Default: [empty whitelist]
# - Case sensitivity: yes
# - Required: no
# - Possible values: {[empty whitelist]}
# ArmarX.WorkingMemoryToArViz.ObjectClassWhitelist = [empty whitelist]
# ArmarX.WorkingMemoryToArViz.ObjectName: Name of IceGrid well-known object
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.ObjectName = ""
# ArmarX.WorkingMemoryToArViz.PriorKnowledgeName: Prior knowledge name.
# Attributes:
# - Default: PriorKnowledge
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.PriorKnowledgeName = PriorKnowledge
# ArmarX.WorkingMemoryToArViz.RobotStateComponentName: Robot state component name.
# Attributes:
# - Default: RobotStateComponent
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.RobotStateComponentName = RobotStateComponent
# ArmarX.WorkingMemoryToArViz.WorkingMemoryName: Working memory name.
# Attributes:
# - Default: WorkingMemory
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.WorkingMemoryName = WorkingMemory
# ArmarX.WorkingMemoryToArViz.p.UpdateFrequency: Target number of updates per second.
# Attributes:
# - Default: 30
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.p.UpdateFrequency = 30
# ArmarX.WorkingMemoryToArViz.p.floor.Height: Height (z) of the floor plane.
# Set slightly below 0 to avoid z-fighting when drawing planes on the ground.
# Attributes:
# - Default: -1
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.p.floor.Height = -1
# ArmarX.WorkingMemoryToArViz.p.floor.Show: Whether to show the floor.
# Attributes:
# - Default: true
# - Case sensitivity: yes
# - Required: no
# - Possible values: {0, 1, false, no, true, yes}
# ArmarX.WorkingMemoryToArViz.p.floor.Show = true
# ArmarX.WorkingMemoryToArViz.p.loadDatasets: Only load the files for the following datasets, separated by ;. Load all if input is empty.
# Attributes:
# - Default: ""
# - Case sensitivity: yes
# - Required: no
# ArmarX.WorkingMemoryToArViz.p.loadDatasets = ""