Skip to content

Commit

Permalink
rename outputs and labels in physmon; rename refs
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Oct 19, 2024
1 parent b04b584 commit d709091
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions CI/physmon/phys_perf_mon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,11 @@ function trackfinding() {
fi

run_histcmp \
$outdir/data/$path/performance_ckf.root \
$refdir/$path/performance_ckf.root \
$outdir/data/$path/performance_finding_ckf.root \
$refdir/$path/performance_finding_ckf.root \
"CKF finding performance | ${name}" \
$path/performance_ckf.html \
$path/performance_ckf_plots \
$path/performance_finding_ckf.html \
$path/performance_finding_ckf_plots \
--config $default_config

run_histcmp \
Expand All @@ -252,17 +252,17 @@ function trackfinding() {
run_histcmp \
$outdir/data/$path/tracksummary_ckf_hist.root \
$refdir/$path/tracksummary_ckf_hist.root \
"Track Summary CKF | ${name}" \
"CKF track summary | ${name}" \
$path/tracksummary_ckf.html \
$path/tracksummary_ckf_plots

if [ -f $refdir/$path/performance_ckf_ambi.root ]; then
if [ -f $refdir/$path/performance_finding_ckf_ambi.root ]; then
run_histcmp \
$outdir/data/$path/performance_ckf_ambi.root \
$refdir/$path/performance_ckf_ambi.root \
$outdir/data/$path/performance_finding_ckf_ambi.root \
$refdir/$path/performance_finding_ckf_ambi.root \
"Ambisolver finding performance | ${name}" \
$path/performance_ckf_ambi.html \
$path/performance_ckf_ambi
$path/performance_finding_ckf_ambi.html \
$path/performance_finding_ckf_ambi
fi
}

Expand Down
2 changes: 1 addition & 1 deletion Examples/Python/python/acts/examples/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1662,7 +1662,7 @@ def addTrackWriters(
inputParticles="particles_selected",
inputTrackParticleMatching="track_particle_matching",
inputParticleTrackMatching="particle_track_matching",
filePath=str(outputDirRoot / f"performance_{name}.root"),
filePath=str(outputDirRoot / f"performance_finding_{name}.root"),
)
s.addWriter(trackFinderPerfWriter)

Expand Down
2 changes: 1 addition & 1 deletion Examples/Python/tests/root_file_hashes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ test_root_clusters_writer[kwargsConstructor]__clusters.root: e842df4fe04eefff3df
test_exatrkx[cpu-torch]__performance_track_finding.root: 36b3045589c4c17c038dbc87943366f4af4440f7eea6887afb763871ac149b05
test_exatrkx[gpu-onnx]__performance_track_finding.root: 9090de10ffb1489d3f1993e2a3081a3038227e3e5c453e98a9a4f33ea3d6d817
test_exatrkx[gpu-torch]__performance_track_finding.root: 36b3045589c4c17c038dbc87943366f4af4440f7eea6887afb763871ac149b05
test_ML_Ambiguity_Solver__performance_ambiML.root: 284ff5c3a08c0b810938e4ac2f8ba8fe2babb17d4c202b624ed69fff731a9006
test_ML_Ambiguity_Solver__performance_finding_ambiML.root: 284ff5c3a08c0b810938e4ac2f8ba8fe2babb17d4c202b624ed69fff731a9006
test_refitting[odd]__trackstates_gsf_refit.root: e297749dc1e7eda3b8dea13defa0499986c584740d93e723a901b498b8e90c71
test_refitting[odd]__tracksummary_gsf_refit.root: d5085882e45a0b699194dff9f40a36e9291227bf65f9aaaf9087f9242ef5ae22
test_refitting[generic]__trackstates_gsf_refit.root: 4424fdf2f27575db825c1a59f8e53a1595946211cbd5b2c8d3a2f71cdcc77ae9
Expand Down
2 changes: 1 addition & 1 deletion Examples/Python/tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ def test_full_chain_odd_example_pythia_geant4(tmp_path):
def test_ML_Ambiguity_Solver(tmp_path, assert_root_hash):
# This test literally only ensures that the full chain example can run without erroring out

root_file = "performance_ambiML.root"
root_file = "performance_finding_ambiML.root"
output_dir = "odd_output"
assert not (tmp_path / root_file).exists()

Expand Down

0 comments on commit d709091

Please sign in to comment.