- add cython .cpp files to .gitignore

- raweat.hpp: add empty constructor and introduce "set_file"
- rawmerge.hpp: add initial channel and write_table method
- add rawmeat example to pyt/example.py
- add raw_merger.hpp to main.cpp
This commit is contained in:
Mario Fink
2020-08-10 14:54:15 +02:00
parent 23f933f68e
commit 7316d59c2c
5 changed files with 120 additions and 8 deletions

View File

@@ -15,7 +15,8 @@ for rf in rawlist :
print("converting " + str(rf) + "...\n" + 90*("-") + "\n")
# setup instance of "raw_eater" and trigger conversion
eatraw = raw_eater.raweater(rf.encode())
# eatraw = raw_eater.raweater(rf.encode())
eatraw = raw_meat.rawmerger(rf.encode())
# check validity of file format
if eatraw.validity() :