better file structure for better separation

This commit is contained in:
Bechir
2024-03-06 21:08:52 +01:00
parent 1b7ea707ae
commit 22fb8763be
24 changed files with 29 additions and 43 deletions

View File

@ -1,6 +1,6 @@
// Your First C++ Program
#include <iostream>
#include <FileHandler.hpp>
#include "file_io/FileHandler.hpp"
using JFileHandler = FileHandler<DetectorType::Jungfrau,uint16_t>;
using JFile = File<DetectorType::Jungfrau,uint16_t>;
@ -19,9 +19,7 @@ void test(JFileHandler* f,int frame_number){
}
int main() {
std::filesystem::path fpath("/home/l_bechir/github/aare/data/jungfrau_single_master_0.json");
std::filesystem::path fpath("/home/bb/github/aare/data/jungfrau_single_master_0.json");
auto fileHandler = new JFileHandler (fpath);
delete fileHandler;
}