mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-13 15:57:14 +02:00
fix ci and add formatting (#48)
* add dependency * dont run blocking zmq example and add formatting * format files
This commit is contained in:
@ -1,14 +1,14 @@
|
||||
// Your First C++ Program
|
||||
#include "aare/File.hpp"
|
||||
#include <iostream>
|
||||
#include "aare/utils/logger.hpp"
|
||||
#include <iostream>
|
||||
|
||||
#define AARE_ROOT_DIR_VAR "PROJECT_ROOT_DIR"
|
||||
|
||||
using aare::File;
|
||||
using aare::Frame;
|
||||
|
||||
void test(File& f, int frame_number) {
|
||||
void test(File &f, int frame_number) {
|
||||
std::cout << "frame number: " << frame_number << std::endl;
|
||||
Frame frame = f.iread(frame_number);
|
||||
std::cout << *((uint16_t *)frame.get(0, 0)) << std::endl;
|
||||
@ -21,7 +21,8 @@ int main() {
|
||||
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");
|
||||
std::filesystem::path fpath(PROJECT_ROOT_DIR / "data" / "moench" /
|
||||
"moench04_noise_200V_sto_both_100us_no_light_thresh_900_master_0.raw");
|
||||
File file(fpath, "r");
|
||||
test(file, 0);
|
||||
test(file, 2);
|
||||
|
Reference in New Issue
Block a user