Skip to content

Commit

Permalink
fix: look at haxpes tiled for data validation
Browse files Browse the repository at this point in the history
  • Loading branch information
maffettone committed Oct 31, 2024
1 parent ab6916d commit 82306f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def initialize_tiled_client():


@task(retries=2, retry_delay_seconds=10)
def read_all_streams(uid, beamline_acronym="ucal"):
def read_all_streams(uid, beamline_acronym="haxpes"):
logger = get_run_logger()
tiled_client = initialize_tiled_client()
run = tiled_client[beamline_acronym]["raw"][uid]
Expand All @@ -27,5 +27,5 @@ def read_all_streams(uid, beamline_acronym="ucal"):


@flow
def general_data_validation(uid, beamline_acronym="ucal"):
def general_data_validation(uid, beamline_acronym="haxpes"):
read_all_streams(uid, beamline_acronym)
2 changes: 1 addition & 1 deletion end_of_run_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ def log_completion():
@flow
def end_of_run_workflow(stop_doc):
uid = stop_doc["run_start"]
general_data_validation(uid)
general_data_validation(uid, beamline_acronym="haxpes")
# Here is where exporters could be added
log_completion()

0 comments on commit 82306f5

Please sign in to comment.