Skip to content
Snippets Groups Projects
Commit c2aa8b69 authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Do not trace all signals by default

  To trace all default signals, call AbstracHumanoidRobot.traceDefaultSignals
  method.
parent fccc4771
No related branches found
No related tags found
1 merge request!1[major][cpp] starting point to integrate pinocchio
...@@ -426,6 +426,7 @@ class AbstractHumanoidRobot (object): ...@@ -426,6 +426,7 @@ class AbstractHumanoidRobot (object):
# Recompute trace.triger at each iteration to enable tracing. # Recompute trace.triger at each iteration to enable tracing.
self.device.after.addSignal('{0}.triger'.format(self.tracer.name)) self.device.after.addSignal('{0}.triger'.format(self.tracer.name))
def traceDefaultSignals (self):
# Geometry / operational points # Geometry / operational points
for s in self.OperationalPoints + self.tracedSignals['dynamic']: for s in self.OperationalPoints + self.tracedSignals['dynamic']:
self.addTrace(self.dynamic.name, s) self.addTrace(self.dynamic.name, s)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment