Make package a ROS 2 package
This commit is contained in:
commit
b9e4ce7bfb
5 changed files with 14 additions and 0 deletions
2
__init__.py
Normal file
2
__init__.py
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
"""Reading and interpreting of LTTng trace data."""
|
||||||
|
__author__ = 'Luetkebohle Ingo (CR/AEX3)'
|
0
analysis/__init__.py
Normal file
0
analysis/__init__.py
Normal file
0
conversion/__init__.py
Normal file
0
conversion/__init__.py
Normal file
3
conversion/ctf.py
Normal file
3
conversion/ctf.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
def ctf_to_pickle():
|
||||||
|
print('ctf_to_pickle')
|
9
convert.py
Normal file
9
convert.py
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# Entrypoint/script to convert CTF trace data to a pickle file
|
||||||
|
# TODO
|
||||||
|
|
||||||
|
from tracetools_analysis.conversion.ctf import *
|
||||||
|
|
||||||
|
def main():
|
||||||
|
print('main called')
|
||||||
|
ctf_to_pickle()
|
Loading…
Add table
Add a link
Reference in a new issue