Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
detector_benchmarks
Manage
Activity
Members
Labels
Plan
Issues
21
Issue boards
Milestones
Wiki
Code
Merge requests
7
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
EIC
benchmarks
detector_benchmarks
Merge requests
!22
Resolve "Split subsystems into their own directories."
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Split subsystems into their own directories."
20-split-subsystems-into-their-own-directories
into
master
Overview
0
Commits
1
Pipelines
0
Changes
28
Merged
Whitney Armstrong
requested to merge
20-split-subsystems-into-their-own-directories
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
6
Expand
Closes
#20 (closed)
Edited
3 years ago
by
Whitney Armstrong
👍
0
👎
0
Merge request reports
Compare
version 3
version 13
3c7d505a
3 years ago
version 12
614568e5
3 years ago
version 11
e36c13d3
3 years ago
version 10
0d6a6276
3 years ago
version 9
22ce7c76
3 years ago
version 8
bf0a22d5
3 years ago
version 7
d99b8bea
3 years ago
version 6
cb9f3427
3 years ago
version 5
058c24c6
3 years ago
version 4
2cf692d5
3 years ago
version 3
749620fd
3 years ago
version 2
426aaf65
3 years ago
version 1
24286b19
3 years ago
master (base)
and
version 6
latest version
8096e970
1 commit,
3 years ago
version 13
3c7d505a
14 commits,
3 years ago
version 12
614568e5
13 commits,
3 years ago
version 11
e36c13d3
12 commits,
3 years ago
version 10
0d6a6276
11 commits,
3 years ago
version 9
22ce7c76
10 commits,
3 years ago
version 8
bf0a22d5
8 commits,
3 years ago
version 7
d99b8bea
7 commits,
3 years ago
version 6
cb9f3427
6 commits,
3 years ago
version 5
058c24c6
5 commits,
3 years ago
version 4
2cf692d5
4 commits,
3 years ago
version 3
749620fd
3 commits,
3 years ago
version 2
426aaf65
2 commits,
3 years ago
version 1
24286b19
1 commit,
3 years ago
Show latest version
6 files
+
16
−
356
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
benchmarks/barrel_ecal/run_emcal_barrel_electrons.sh
+
2
−
2
Options
@@ -27,13 +27,13 @@ echo "JUGGLER_N_EVENTS = ${JUGGLER_N_EVENTS}"
echo
"JUGGLER_DETECTOR =
${
JUGGLER_DETECTOR
}
"
# Generate the input events
root
-b
-q
"benchmarks/
calorimeters
/scripts/emcal_barrel_electrons.cxx(
${
JUGGLER_N_EVENTS
}
,
${
E_start
}
,
${
E_end
}
,
\"
${
JUGGLER_FILE_NAME_TAG
}
.hepmc
\"
)"
root
-b
-q
"benchmarks/
barrel_ecal
/scripts/emcal_barrel_electrons.cxx(
${
JUGGLER_N_EVENTS
}
,
${
E_start
}
,
${
E_end
}
,
\"
${
JUGGLER_FILE_NAME_TAG
}
.hepmc
\"
)"
if
[[
"
$?
"
-ne
"0"
]]
;
then
echo
"ERROR running script: generating input events"
exit
1
fi
# Plot the input events
root
-b
-q
"benchmarks/
calorimeters
/scripts/emcal_barrel_electrons_reader.cxx(
${
E_start
}
,
${
E_end
}
,
\"
${
JUGGLER_FILE_NAME_TAG
}
.hepmc
\"
)"
root
-b
-q
"benchmarks/
barrel_ecal
/scripts/emcal_barrel_electrons_reader.cxx(
${
E_start
}
,
${
E_end
}
,
\"
${
JUGGLER_FILE_NAME_TAG
}
.hepmc
\"
)"
if
[[
"
$?
"
-ne
"0"
]]
;
then
echo
"ERROR running script: plotting input events"
exit
1
Loading