mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2026-01-30 13:37:40 +01:00
- Moved definitions of Cluster_2x2 and Cluster_3x3 to it's own file
- Added optional members for ROI, noise_map and gain_map in ClusterFile
**API:**
After creating the ClusterFile the user can set one or all of: roi,
noise_map, gain_map
```python
f = ClusterFile(fname)
f.set_roi(roi) #aare.ROI
f.set_noise_map(noise_map) #numpy array
f.set_gain_map(gain_map) #numpy array
```
**When reading clusters they are evaluated in the order:**
1. If ROI is enabled check that the cluster is within the ROI
1. If noise_map is enabled check that the cluster meets one of the
conditions
- Center pixel above noise
- Highest 2x2 sum above 2x noise
- 3x3 sum above 3x noise
1. If gain_map is set apply the gain map before returning the clusters
(not used for noise cut)
**Open questions:**
1. Check for out of bounds access in noise and gain map?
closes #139
closes #135
closes #90
54 lines
835 B
YAML
54 lines
835 B
YAML
package:
|
|
name: aare
|
|
version: 2025.4.1 #TODO! how to not duplicate this?
|
|
|
|
|
|
|
|
|
|
source:
|
|
path: ..
|
|
|
|
build:
|
|
number: 0
|
|
script:
|
|
- unset CMAKE_GENERATOR && {{ PYTHON }} -m pip install . -vv # [not win]
|
|
- {{ PYTHON }} -m pip install . -vv # [win]
|
|
|
|
requirements:
|
|
build:
|
|
- python {{python}}
|
|
- numpy {{ numpy }}
|
|
- {{ compiler('cxx') }}
|
|
|
|
|
|
host:
|
|
- cmake
|
|
- ninja
|
|
- python {{python}}
|
|
- numpy {{ numpy }}
|
|
- pip
|
|
- scikit-build-core
|
|
- pybind11 >=2.13.0
|
|
- fmt
|
|
- zeromq
|
|
- nlohmann_json
|
|
- catch2
|
|
|
|
run:
|
|
- python {{python}}
|
|
- numpy {{ numpy }}
|
|
|
|
|
|
test:
|
|
imports:
|
|
- aare
|
|
# requires:
|
|
# - pytest
|
|
# source_files:
|
|
# - tests
|
|
# commands:
|
|
# - pytest tests
|
|
|
|
about:
|
|
summary: An example project built with pybind11 and scikit-build.
|
|
# license_file: LICENSE |