Skip to content

Commit fa7c6a0

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/attest-build-provenance-3.2.0
2 parents 8dba7d7 + faeaf04 commit fa7c6a0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
python-version: ["3.11", "3.12", "3.13"]
26-
os: [ubuntu-latest, macos-13]
26+
os: [ubuntu-latest, macos-14]
2727

2828
steps:
2929
- uses: actions/checkout@v5

src/legenddataflowscripts/par/geds/dsp/dplms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def par_geds_dsp_dplms() -> None:
6565
energies = lh5.read_as(
6666
f"{args.raw_table_name}/daqenergy", fft_files, library="np"
6767
)
68-
idxs = np.where(energies == 0)[0]
68+
idxs = np.where(energies <= 10)[0]
6969
raw_fft = lh5.read(
7070
args.raw_table_name,
7171
fft_files,

src/legenddataflowscripts/par/geds/dsp/nopt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def par_geds_dsp_nopt() -> None:
6363
energies = lh5.read_as(
6464
f"{args.raw_table_name}/daqenergy", raw_files, library="np"
6565
)
66-
idxs = np.where(energies == 0)[0]
66+
idxs = np.where(energies <= 10)[0]
6767
tb_data = lh5.read(
6868
args.raw_table_name, raw_files, n_rows=opt_dict["n_events"], idx=idxs
6969
)

0 commit comments

Comments
 (0)