commit b9e4ce7bfbe000a60e7aa6a355a89e0234634f78 Author: Christophe Bedard Date: Thu Jun 6 09:17:36 2019 +0200 Make package a ROS 2 package diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..6c918a8 --- /dev/null +++ b/__init__.py @@ -0,0 +1,2 @@ +"""Reading and interpreting of LTTng trace data.""" +__author__ = 'Luetkebohle Ingo (CR/AEX3)' diff --git a/analysis/__init__.py b/analysis/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/conversion/__init__.py b/conversion/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/conversion/ctf.py b/conversion/ctf.py new file mode 100644 index 0000000..e5b233a --- /dev/null +++ b/conversion/ctf.py @@ -0,0 +1,3 @@ + +def ctf_to_pickle(): + print('ctf_to_pickle') diff --git a/convert.py b/convert.py new file mode 100644 index 0000000..3ab6144 --- /dev/null +++ b/convert.py @@ -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()