Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pftruth-standalone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alessandro Brusamolino
pftruth-standalone
Commits
683a2559
Commit
683a2559
authored
1 month ago
by
brusale
Browse files
Options
Downloads
Patches
Plain Diff
run all configurations at once
parent
0abeba66
Branches
load-from-root
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
run-workflow.sh
+14
-2
14 additions, 2 deletions
run-workflow.sh
with
14 additions
and
2 deletions
run-workflow.sh
+
14
−
2
View file @
683a2559
...
...
@@ -125,10 +125,22 @@ if $recompile ; then
cd
${
CURRENT_DIR
}
fi
score_thresholds
=(
0.1 0.2 0.3 0.4 0.5
)
score_labels
=(
"0p1"
"0p2"
"0p3"
"0p4"
"0p5"
)
frac_thresholds
=(
0.95 0.85 0.75 0.65
)
frac_labels
=(
"0p95"
"0p85"
"0p75"
"0p65"
)
if
$run_merging
;
then
print_step
"Running the cluster merging"
./build/COCOATruth /ceph/abrusamolino/PFTruthSamples/COCOATests/SingleTau_Geant4_FlatEtaPt.root 0.85 0.5
cp
/ceph/abrusamolino/PFTruthSamples/COCOATests/SingleTau_Geant4_FlatEtaPt.root /ceph/abrusamolino/PFTruthSamples/COCOATests/SingleTau_Geant4_FlatEtaPt_0p85_0p5.root
for
i
in
"
${
!frac_thresholds[@]
}
"
;
do
for
j
in
"
${
!score_thresholds[@]
}
"
;
do
INPUT_FILE
=
"/ceph/abrusamolino/PFTruthSamples/COCOA_wBackscattering/SingleElectron_Geant4_FlatEtaPt.root"
OUTPUT_FILE
=
"/ceph/abrusamolino/PFTruthSamples/COCOA_wBackscattering/SingleElectron_Geant4_FlatEtaPt_
${
frac_labels
[i]
}
_
${
score_labels
[j]
}
.root"
./build/COCOATruth
${
INPUT_FILE
}
${
frac_thresholds
[i]
}
${
score_thresholds
[j]
}
cp
${
INPUT_FILE
}
${
OUTPUT_FILE
}
print_step
"Saved output file to
${
OUTPUT_FILE
}
"
done
done
fi
print_step
"Done"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment