forked from alisw/MachineLearningHEP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_hfjets.py
More file actions
executable file
·38 lines (34 loc) · 1.71 KB
/
run_hfjets.py
File metadata and controls
executable file
·38 lines (34 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/env python3
# © Copyright CERN 2024. All rights not expressly granted are reserved. #
# #
# This program is free software: you can redistribute it and/or modify it #
# under the terms of the GNU General Public License as published by the #
# Free Software Foundation, either version 3 of the License, or (at your #
# option) any later version. This program is distributed in the hope that #
# it will be useful, but WITHOUT ANY WARRANTY; without even the implied #
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. #
# See the GNU General Public License for more details. #
# You should have received a copy of the GNU General Public License #
# along with this program. if not, see <https://www.gnu.org/licenses/>. #
import argparse
import subprocess
import sys
parser = argparse.ArgumentParser()
parser.add_argument("--case", "-c", default="d0jet")
parser.add_argument("--analysis", "-a", default="jet_obs")
parser.add_argument("--steps", "-s", nargs="+", default=["analyzer"])
parser.add_argument("--interactive", "-i", action="store_true")
parser.add_argument("--delete", "-d", action="store_true")
# parser.add_argument('--dryrun', '-n', action='store_true')
args = parser.parse_args()
DB = f"machine_learning_hep/data/data_run3/database_ml_parameters_{args.case}.yml"
for step in args.steps:
subprocess.run(
f"mlhep -r machine_learning_hep/submission/{step}.yml "
+ f"-d {DB} {'-b' if not args.interactive else ''} "
+ f"-a {args.analysis} {'--delete' if args.delete else ''}",
shell=True,
stdout=sys.stdout,
stderr=sys.stderr,
check=True,
)