Erik Fröjdh
5dbb969bcc
Merge branch 'dev/license' of github.com:slsdetectorgroup/aare into dev/license
2025-11-21 14:45:12 +01:00
Erik Fröjdh
d58d8ea82f
added comment in readme
2025-11-21 14:44:54 +01:00
f61f76ccf7
changed License in update_version.py added to etc
Build on RHEL9 / build (push) Failing after 3m26s
Build on RHEL8 / build (push) Failing after 3m36s
2025-11-21 10:29:12 +01:00
Erik Fröjdh
200ae91622
also hpp
2025-11-21 10:14:14 +01:00
Erik Fröjdh
53aed8d8c6
added license
2025-11-20 09:01:28 +01:00
7fb500c44c
Dev/expose sum 2x2 to python ( #238 )
...
Build on RHEL8 / build (push) Failing after 3m15s
Build on RHEL9 / build (push) Failing after 3m16s
Saverio requested that max_sum_2x2 exposes index information in python
- max_sum_2x2 returns a corner as index
- replaced eta corner with corner enum class
- max_sum_2x2 now returns index as well in python
- added link to Documenation in README
Note: Some Tests fail in EtaCalculation due to previous PR about
updating Eta 2x2 will fix in other PR
2025-10-27 20:04:16 +01:00
8989d2eb4a
Merge branch 'main' into dev/expose_sum_2x2_to_python
2025-10-27 19:47:09 +01:00
c8c681faa8
updated release notes
2025-10-27 19:30:43 +01:00
0faaf2bbc7
updated release notes
Build on RHEL8 / build (push) Failing after 3m9s
Build on RHEL9 / build (push) Failing after 3m16s
2025-10-27 18:45:23 +01:00
Erik Fröjdh
ac83eeff9b
added tell and better error checking to cluster file ( #239 )
...
Build on RHEL8 / build (push) Failing after 3m8s
Build on RHEL9 / build (push) Failing after 3m18s
- Check feof and ferror when reading frames
- added tell member function to ClusterFile
2025-10-27 15:46:31 +01:00
df7b9be5a5
added docstrings wrap struct into tuple
Build on RHEL8 / build (push) Failing after 3m42s
Build on RHEL9 / build (push) Failing after 3m41s
2025-10-23 19:16:33 +02:00
dbffea15c0
fix: included deleted file
2025-10-23 17:50:17 +02:00
6e38c3259b
added documentation link in README
2025-10-23 17:40:55 +02:00
73e8fd31c9
vector class no longer needed
2025-10-23 17:36:29 +02:00
b28abb2668
updated tests
2025-10-23 17:35:16 +02:00
01fa61cf47
index now returns enum type
2025-10-23 17:34:54 +02:00
790dd63ba3
make max_sum_2x2 properly accessible from python
2025-10-23 15:00:52 +02:00
45f506b473
Fix/adapt and test interpolation ( #231 )
...
Build on RHEL8 / build (push) Failing after 3m9s
Build on RHEL9 / build (push) Failing after 3m18s
Adapted eta interpolation:
### Issues with previous interpolation:
## Eta Calculation:
- previously assumed photon hit to be in bottom left pixel of cluster
(photon hit assumed in bottom right pixel of cluster)
- clusters are filled from top left to bottom right (previously assumed:
bottom left to top right)
## Actual Interpolation:
- photon hits are given in pixel coordinates (previous interpolation
assumed euclidean coordinates, e.g. positive distance in y coordinate
becomes negative distance in row pixels)
- removed *2 of calculated distance
## General Adaption:
- max_sum_2x2 return subcluster index relative to cluster center e.g.
bottomleft, bottomright
## Added proper test case
- simulated photon hit with normal energy distribution
- Note: Test case for 2x2 cluster fails - Think uniform photon hit
distribution cant be modeled by normalized eta distribution for 2x2
clusters
2025-10-17 10:44:08 +02:00
6f10afbcdc
Merge branch 'main' into fix/adapt_and_test_interpolation
2025-10-17 10:03:26 +02:00
e418986fd2
fix/roi_max ( #237 )
...
Build on RHEL8 / build (push) Successful in 3m3s
Build on RHEL9 / build (push) Successful in 3m13s
roi max should be incremented by 1 for all versions of the file
2025-10-16 16:08:10 +02:00
723c8dd013
add nlohmann_json to support CMake find_package after 3.12 split
2025-10-16 15:30:43 +02:00
351f4626b3
roi max should be incremented by 1 for all versions of the file
2025-10-16 12:26:30 +02:00
516ef88d10
adresses SonarQube comments
2025-10-08 18:19:17 +02:00
5329be816e
removed times 2 in calculated photon center distance
2025-10-08 17:01:38 +02:00
72a2604ca5
test for interpolation with simulated normal energy distribution
2025-10-08 16:35:52 +02:00
c78a73ebaf
changed default CoordType in Cluster constructor in python bindings to uint16_t
2025-10-07 16:49:06 +02:00
77a9788891
changed eta interpolation to take into account photon center
2025-10-07 16:48:14 +02:00
c0ee17275e
Bug/aare file reading ( #230 )
...
Build on RHEL8 / build (push) Successful in 3m10s
Build on RHEL9 / build (push) Successful in 3m12s
MasterFile supports reading new json file format (backwards compatible
for older versions)
Multiple ROI's not supported yet
2025-10-02 10:05:11 +02:00
ad3ef88607
changed default DAC value in ScanParameters
2025-10-01 20:37:40 +02:00
f814b3f4e7
updated release notes
2025-10-01 20:30:25 +02:00
1f46266183
clang-format
2025-10-01 20:25:27 +02:00
d3d9f760b3
updated parse_json to parse new master json file
2025-10-01 20:17:37 +02:00
0891ffb1ee
compile with POSITION_INDEPENDANT_CODE=On ( #228 )
...
Build on RHEL9 / build (push) Successful in 3m17s
Build on RHEL8 / build (push) Successful in 3m20s
The python bindings build a shared library and I cant link against
static libraries. Apparently I have to build with
CMAKE_POSITION_INDEPENDANT_CODE=On.
2025-09-30 17:39:43 +02:00
0b74bc25d5
enabled position independant code only for aare_core
2025-09-30 16:29:42 +02:00
3ec40fa809
Merge branch 'main' into fix/cmake_fix_compile_width_position_independent_code
Build on RHEL8 / build (push) Successful in 3m18s
Build on RHEL9 / build (push) Successful in 3m49s
2025-09-30 10:58:35 +02:00
74280379ce
naive implementation of 3x3 and 5x5 reduction ( #210 )
...
Build on RHEL8 / build (push) Successful in 3m10s
Build on RHEL9 / build (push) Successful in 3m16s
- Still quite far from a state where it can be merged
- Reduce 5x5 to 3x3
- Reduce 3x3 to 2x2
Open issues:
- [ ] Can we generalize it?
- [ ] Which reductions are needed
- [ ] Naming
2025-09-09 09:08:42 +02:00
474c35cc6b
Merge branch 'main' into dev/reduce
Build on RHEL8 / build (push) Successful in 3m16s
Build on RHEL9 / build (push) Successful in 3m35s
2025-09-08 15:39:27 +02:00
e2a97d3c45
General reduce ( #223 )
...
Generalized reduction to 3x3 and 3x3 clusters for general sized
clusters.
2025-09-08 15:22:03 +02:00
bce8e9d5fc
Merge branch 'main' into fix/cmake_fix_compile_width_position_independent_code
2025-09-05 14:11:33 +02:00
4c1e276e2c
compile with POSITION_INDEPENDANT_CODE=On
2025-09-05 14:02:26 +02:00
12114e7275
added documentation
Build on RHEL8 / build (push) Successful in 3m10s
Build on RHEL9 / build (push) Successful in 3m12s
2025-09-01 15:29:58 +02:00
7926993bb2
reduction tests for python
2025-09-01 14:15:08 +02:00
ed7fb1f1f9
induce the cluster size of ClusterCollector from ClusterFinderMT - ha… ( #225 )
...
Build on RHEL8 / build (push) Successful in 3m11s
Build on RHEL9 / build (push) Successful in 3m15s
In ClusterCollector induces cluster size from passed ClusterFinderMT.
2025-08-26 09:30:56 +02:00
Erik Fröjdh
8ab98b356b
Merge branch 'main' into fix/saverio_cluster_finder
Build on RHEL9 / build (push) Successful in 3m0s
Build on RHEL8 / build (push) Successful in 3m12s
2025-08-25 09:26:09 +02:00
d908ad3636
removed option to give clustersize
Build on RHEL8 / build (push) Successful in 3m9s
Build on RHEL9 / build (push) Successful in 3m16s
2025-08-22 15:25:15 +02:00
8733a1d66f
added benchmark
Build on RHEL8 / build (push) Successful in 3m5s
Build on RHEL9 / build (push) Successful in 3m13s
2025-08-22 15:14:05 +02:00
437f7cec89
induce the cluster size of ClusterCollector from ClusterFinderMT - handle backwards compatibility
2025-08-22 10:08:38 +02:00
Erik Fröjdh
6c3524298f
bumped version for release
Build on RHEL8 / build (push) Successful in 3m13s
Build on RHEL9 / build (push) Successful in 3m24s
2025.8.22
2025-08-22 09:52:24 +02:00
b59277c4bf
3x3 reduction for general cluszter sizes
Build on RHEL8 / build (push) Successful in 3m8s
Build on RHEL9 / build (push) Successful in 3m9s
2025-08-19 12:37:55 +02:00
cb163c79b4
reduction to 2x2 clusters for general clusters
2025-08-18 18:23:15 +02:00