Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions atlas/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -212,3 +212,5 @@ __marimo__/
ntuple_production/production_status.json
# preprocess json
preprocess_output.json
# Dask reports
*html
681 changes: 653 additions & 28 deletions atlas/analysis.ipynb

Large diffs are not rendered by default.

File renamed without changes.
359 changes: 359 additions & 0 deletions atlas/servicex/TopCP_ServiceX.ipynb

Large diffs are not rendered by default.

56 changes: 0 additions & 56 deletions atlas/tpcpt_efficiency_summary.txt

This file was deleted.

7 changes: 7 additions & 0 deletions atlas/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ def dsid_rtag_campaign(name: str) -> tuple[str, str, str]:

return dsid, rtag, campaign

def hplus_signal_mass(name: str) -> str:
"""get the mass from these signal samples"""
m = re.search(r'(?i)mhc(\d+)(?=\.)', name) # case-insensitive, stop at the dot
return str(m.group(1)+"GeV") if m else None




def integrated_luminosity(campaign: str, total=False) -> float:
"""get integrated luminosity in pb for each MC campaign"""
Expand Down