Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic-graph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
dynamic-graph
Commits
5e416c05
Commit
5e416c05
authored
14 years ago
by
Francois Bleibel
Browse files
Options
Downloads
Patches
Plain Diff
Updated doxygen configuration file; added documentation for entity Tracer.
parent
a0ede2e5
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/CMakeLists.txt
+1
-1
1 addition, 1 deletion
doc/CMakeLists.txt
doc/additionalDoc/package.h
+39
-12
39 additions, 12 deletions
doc/additionalDoc/package.h
doc/package.dox.cmake
+1404
-132
1404 additions, 132 deletions
doc/package.dox.cmake
with
1444 additions
and
145 deletions
doc/CMakeLists.txt
+
1
−
1
View file @
5e416c05
...
@@ -57,7 +57,7 @@ CONFIGURE_FILE(package.dox.cmake package.dox)
...
@@ -57,7 +57,7 @@ CONFIGURE_FILE(package.dox.cmake package.dox)
# Generating the Doxygen documentation
# Generating the Doxygen documentation
ADD_CUSTOM_COMMAND
(
ADD_CUSTOM_COMMAND
(
OUTPUT html/index.html
OUTPUT
${
BUILD_DIR
}
/
html/index.html
COMMAND
${
DOXYGEN_EXECUTABLE
}
package.dox
COMMAND
${
DOXYGEN_EXECUTABLE
}
package.dox
COMMENT Generating Doxygen documentation
COMMENT Generating Doxygen documentation
)
)
...
...
This diff is collapsed.
Click to expand it.
doc/additionalDoc/package.h
+
39
−
12
View file @
5e416c05
...
@@ -64,23 +64,50 @@ corresponding headers in this module are:
...
@@ -64,23 +64,50 @@ corresponding headers in this module are:
\section entities List of entities in this package
\section entities List of entities in this package
Since most of the functionality in projects using the dynamic-graph framework
Since most of the functionality in projects using the dynamic-graph framework
is exposed from entities, here is a short description of all the entities contained in
is exposed from entities, here is a short description of all the entities contained in
this package:
this package. Note that most entities are contained in a binary file that closely matches
\li Tracer (generated plugin file tracer.dll or tracer.so)
the entities' names in the scripts; loading this file with the plugin loader will
The Tracer entity monitors a set of signals. With a change of the entity's <trigger> signal,
enable creation of this entity through the factory.
\li \link dynamicgraph::Tracer Tracer \endlink (generated plugin file tracer.dll or tracer.so)\n
The \b Tracer entity monitors a set of signals. With an input change on the entity's <trigger> signal,
the tracked signal values are recorded and traced to a file. The behavior of the trace-to-file
the tracked signal values are recorded and traced to a file. The behavior of the trace-to-file
function can be changed, from printing to a file immediately after recording, to printing out
function can be changed, from printing to a file immediately after recording, to printing out
only when asked explicitly.\br
only when asked explicitly.\n
The commands that this entity exposes are (you can also type [entity name].help at the
The \b commands that this entity exposes are (you can also type [entity name].help at the
dynamic-graph shell command line to see this list):\br
dynamic-graph shell command line to see this list):
open, close, add (a signal), clear, record, trace, start, stop
\code
\br\br
open, close (a file);
add (a signal)
clear (recorded values);
record (signal values)
trace (recorded values to file)
start, stop (traces)
\endcode
\n
For more information on the signals exposed by this entity, please check the
For more information on the signals exposed by this entity, please check the
code documentation of the dynamicgraph::Tracer class.
code documentation of the dynamicgraph::Tracer class.
\n\n
\li TracerRealTime
\b Sample \b usage \n
The following code creates a TracerRealTime entity, then sets the tracing buffer
size to 10MB. It then tells the tracer to create files with names of the form:
jl_XXX.dat where XXX is the signal name, and adds a few signals after
clearing the traces;
\code
new TracerRealTime tr
tr.bufferSize 10485760
tr.open ${TRACE_REPOSITORY} jl_ .dat
OpenHRP.periodicCall addSignal tr.triger
(...)
# --- TRACE ---
tr.clear
tr.add OpenHRP.forceRARM
tr.add dyn.0
tr.add jgain.gain
\endcode
\li \link dynamicgraph::TracerRealTime TracerRealTime \endlink
\li ShellProcedure
\li ShellProcedure
\li ShellFunctions
\li ShellFunctions
\li
Contiifstream
\li
\link dynamicgraph::Contiifstream Contiifstream \endlink
The entities will be placed in ${PREFIX}/lib/plugin (since this may change, it is advised to
The entities will be placed in ${PREFIX}/lib/plugin (since this may change, it is advised to
check the install log or the CMakeLists.txt file to check the installation path).
check the install log or the CMakeLists.txt file to check the installation path).
...
@@ -105,7 +132,7 @@ all deriving from the common class dynamicgraph::SignalBase :
...
@@ -105,7 +132,7 @@ all deriving from the common class dynamicgraph::SignalBase :
Signals can be grouped together using dynamicgraph::SignalArray.
Signals can be grouped together using dynamicgraph::SignalArray.
Signals implement a caching mechanism by storing the last computation time tick.
Signals implement a caching mechanism by storing the last computation time tick.
Signals can be plug into one another or set through shell commands.
Signals can be plug
ged
into one another or set through shell commands.
@}
@}
\namespace dynamicgraph This is the namespace where every object and class of this library is located.
\namespace dynamicgraph This is the namespace where every object and class of this library is located.
...
...
This diff is collapsed.
Click to expand it.
doc/package.dox.cmake
+
1404
−
132
View file @
5e416c05
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment