Skip to content

Commit

Permalink
Add yadbox runcards module
Browse files Browse the repository at this point in the history
  • Loading branch information
alecandido committed Nov 12, 2021
1 parent a5f5103 commit 5d58def
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Empty file added src/yadbox/__init__.py
Empty file.
Empty file added src/yadbox/runcards/__init__.py
Empty file.
8 changes: 8 additions & 0 deletions src/yadbox/runcards/theory.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
def ffns(nf):
theory = {}

for i, q in enumerate("cbt"):
theory[f"ZM{q}"] = True
theory[f"kDIS{q}Thr"] = 0.0 if nf >= i + 4 else float("inf")

return theory

0 comments on commit 5d58def

Please sign in to comment.