Move lib out of ./simulations

This commit is contained in:
Eric Teunis de Boone 2022-06-27 16:23:19 +02:00
parent 84b3a6dca9
commit 6763bbc64c
14 changed files with 10 additions and 0 deletions

View File

@ -5,3 +5,13 @@ Introductory work for my Master's Internship at HEP, organised in Jupyter Notebo
Topics:
* [Fourier Transforms](./fourier)
* [Antenna Simulations](./simulations)
[`lib`](./lib) contains a library.
\
Notebooks can pick it up by using
```python
import os
import sys
# Append parent directory to import path so refcurve can be found
sys.path.append(os.path.dirname(os.path.abspath(os.getcwd())))
```