Skip to content

Commit

Permalink
Merge pull request #519 from patgo25/evt_tier
Browse files Browse the repository at this point in the history
First implementation of `build_evt()` and `build_skm()`
  • Loading branch information
gipert authored Jan 30, 2024
2 parents 7eacdd8 + 78134ca commit 724655c
Show file tree
Hide file tree
Showing 20 changed files with 3,234 additions and 14 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
TQDM_MININTERVAL: 10

jobs:

build-and-test:
Expand Down
3 changes: 2 additions & 1 deletion src/pygama/evt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
Utilities for grouping hit data into events.
"""

from .build_evt import build_evt
from .build_tcm import build_tcm
from .tcm import generate_tcm_cols

__all__ = ["build_tcm", "generate_tcm_cols"]
__all__ = ["build_tcm", "generate_tcm_cols", "build_evt"]
Loading

0 comments on commit 724655c

Please sign in to comment.