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
GitLab 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
Expand sidebar
Merged
Added number of tracking hits vs theta plot
tracking_nhits
into
master
Overview
0
Commits
18
Pipelines
0
Changes
2
Merged
Added number of tracking hits vs theta plot
Whitney Armstrong
requested to merge
tracking_nhits
into
master
Jan 7, 2021
Overview
0
Commits
18
Pipelines
0
Changes
2
modified: tracking/scripts/rec_central_electrons.cxx
0
0
Merge request reports
Compare
master
version 16
3a631f5e
Jan 7, 2021
version 15
3e1feae1
Jan 7, 2021
version 14
8810b55f
Jan 7, 2021
version 13
abcc6b6e
Jan 7, 2021
version 12
8964db50
Jan 7, 2021
version 11
e4ad966c
Jan 7, 2021
version 10
b4455338
Jan 7, 2021
version 9
de520023
Jan 7, 2021
version 8
a8670bf7
Jan 7, 2021
version 7
3ac1cbba
Jan 7, 2021
version 6
10f1f5e5
Jan 7, 2021
version 5
28b7a64b
Jan 7, 2021
version 4
09ae6c5d
Jan 7, 2021
version 3
31fe13bc
Jan 7, 2021
version 2
c7aefe5b
Jan 7, 2021
version 1
e0c83223
Jan 7, 2021
master (base)
and
latest version
latest version
798a6b1e
18 commits,
Jan 7, 2021
version 16
3a631f5e
17 commits,
Jan 7, 2021
version 15
3e1feae1
16 commits,
Jan 7, 2021
version 14
8810b55f
14 commits,
Jan 7, 2021
version 13
abcc6b6e
13 commits,
Jan 7, 2021
version 12
8964db50
12 commits,
Jan 7, 2021
version 11
e4ad966c
11 commits,
Jan 7, 2021
version 10
b4455338
10 commits,
Jan 7, 2021
version 9
de520023
9 commits,
Jan 7, 2021
version 8
a8670bf7
8 commits,
Jan 7, 2021
version 7
3ac1cbba
7 commits,
Jan 7, 2021
version 6
10f1f5e5
6 commits,
Jan 7, 2021
version 5
28b7a64b
5 commits,
Jan 7, 2021
version 4
09ae6c5d
4 commits,
Jan 7, 2021
version 3
31fe13bc
3 commits,
Jan 7, 2021
version 2
c7aefe5b
2 commits,
Jan 7, 2021
version 1
e0c83223
1 commit,
Jan 7, 2021
2 files
+
85
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
tracking/scripts/gen_central_electrons.cxx
+
2
−
2
View file @ 798a6b1e
Edit in single-file editor
Open in Web IDE
Show full file
@@ -17,8 +17,8 @@ using namespace HepMC3;
@@ -17,8 +17,8 @@ using namespace HepMC3;
void
gen_central_electrons
(
int
n_events
=
100
,
void
gen_central_electrons
(
int
n_events
=
100
,
const
char
*
out_fname
=
"central_electrons.hepmc"
)
const
char
*
out_fname
=
"central_electrons.hepmc"
)
{
{
double
cos_theta_min
=
std
::
cos
(
5
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
3
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
);
WriterAscii
hepmc_output
(
out_fname
);
int
events_parsed
=
0
;
int
events_parsed
=
0
;
Loading