mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-07 13:10:42 +02:00

* reading moench and raw files * read mythen3 files * read multiport mythen3 * delete .vscode and .env.dev --------- Co-authored-by: Bechir <bechir.brahem420@gmail.com>
27 lines
997 B
C++
27 lines
997 B
C++
// Your First C++ Program
|
|
#include "aare/ContextManager.hpp"
|
|
#include <iostream>
|
|
#include "aare/utils/logger.hpp"
|
|
|
|
#define AARE_ROOT_DIR_VAR "PROJECT_ROOT_DIR"
|
|
|
|
void test(File *f, int frame_number) {
|
|
std::cout << "frame number: " << frame_number << std::endl;
|
|
Frame frame = f->get_frame(frame_number);
|
|
std::cout << *((uint16_t *)frame.get(0, 0)) << std::endl;
|
|
std::cout << *((uint16_t *)frame.get(0, 1)) << std::endl;
|
|
std::cout << *((uint16_t *)frame.get(0, 95)) << std::endl;
|
|
}
|
|
|
|
int main() {
|
|
ContextManager ctx_manager;
|
|
auto PROJECT_ROOT_DIR = std::filesystem::path(getenv(AARE_ROOT_DIR_VAR));
|
|
if (PROJECT_ROOT_DIR.empty()) {
|
|
throw std::runtime_error("environment variable PROJECT_ROOT_DIR is not set");
|
|
}
|
|
std::filesystem::path fpath(PROJECT_ROOT_DIR / "data" /"moench"/ "moench04_noise_200V_sto_both_100us_no_light_thresh_900_master_0.raw");
|
|
File *file = ctx_manager.get_file(fpath);
|
|
test(file, 0);
|
|
test(file, 2);
|
|
test(file, 99);
|
|
} |