Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
reconstruction_benchmarks
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
EIC
benchmarks
reconstruction_benchmarks
Merge requests
!48
Added number of tracking hits vs theta plot
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added number of tracking hits vs theta plot
tracking_nhits
into
master
Overview
0
Commits
18
Pipelines
0
Changes
2
Merged
Whitney Armstrong
requested to merge
tracking_nhits
into
master
4 years ago
Overview
0
Commits
18
Pipelines
0
Changes
2
Expand
modified: tracking/scripts/rec_central_electrons.cxx
0
0
Merge request reports
Compare
master
version 16
3a631f5e
4 years ago
version 15
3e1feae1
4 years ago
version 14
8810b55f
4 years ago
version 13
abcc6b6e
4 years ago
version 12
8964db50
4 years ago
version 11
e4ad966c
4 years ago
version 10
b4455338
4 years ago
version 9
de520023
4 years ago
version 8
a8670bf7
4 years ago
version 7
3ac1cbba
4 years ago
version 6
10f1f5e5
4 years ago
version 5
28b7a64b
4 years ago
version 4
09ae6c5d
4 years ago
version 3
31fe13bc
4 years ago
version 2
c7aefe5b
4 years ago
version 1
e0c83223
4 years ago
master (base)
and
latest version
latest version
798a6b1e
18 commits,
4 years ago
version 16
3a631f5e
17 commits,
4 years ago
version 15
3e1feae1
16 commits,
4 years ago
version 14
8810b55f
14 commits,
4 years ago
version 13
abcc6b6e
13 commits,
4 years ago
version 12
8964db50
12 commits,
4 years ago
version 11
e4ad966c
11 commits,
4 years ago
version 10
b4455338
10 commits,
4 years ago
version 9
de520023
9 commits,
4 years ago
version 8
a8670bf7
8 commits,
4 years ago
version 7
3ac1cbba
7 commits,
4 years ago
version 6
10f1f5e5
6 commits,
4 years ago
version 5
28b7a64b
5 commits,
4 years ago
version 4
09ae6c5d
4 commits,
4 years ago
version 3
31fe13bc
3 commits,
4 years ago
version 2
c7aefe5b
2 commits,
4 years ago
version 1
e0c83223
1 commit,
4 years ago
2 files
+
85
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
tracking/scripts/gen_central_electrons.cxx
+
2
−
2
Options
@@ -17,8 +17,8 @@ using namespace HepMC3;
void
gen_central_electrons
(
int
n_events
=
100
,
const
char
*
out_fname
=
"central_electrons.hepmc"
)
{
double
cos_theta_min
=
std
::
cos
(
5
0.0
*
(
M_PI
/
180.0
));
double
cos_theta_max
=
std
::
cos
(
1
3
0.0
*
(
M_PI
/
180.0
));
double
cos_theta_min
=
std
::
cos
(
2
0.0
*
(
M_PI
/
180.0
));
double
cos_theta_max
=
std
::
cos
(
1
6
0.0
*
(
M_PI
/
180.0
));
WriterAscii
hepmc_output
(
out_fname
);
int
events_parsed
=
0
;
Loading