Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Allen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LHCb
Allen
Merge requests
!45
Muon reading
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Muon reading
muon_reading
into
master
Overview
10
Commits
8
Pipelines
0
Changes
19
Merged
Sergei Popov
requested to merge
muon_reading
into
master
6 years ago
Overview
10
Commits
8
Pipelines
0
Changes
19
Expand
Reading common_muon_hits from binary files.
Closes
#14 (closed)
Edited
6 years ago
by
Dorothea Vom Bruch
0
0
Merge request reports
Compare
master
version 2
bbd725f1
6 years ago
version 1
eb9d930b
6 years ago
master (base)
and
latest version
latest version
8ffd6a84
8 commits,
6 years ago
version 2
bbd725f1
6 commits,
6 years ago
version 1
eb9d930b
3 commits,
6 years ago
19 files
+
161
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
Search (e.g. *.vue) (Ctrl+P)
cuda/muon/common/include/MuonDefinitions.cuh
0 → 100644
+
32
−
0
Options
#pragma once
namespace
Muon
{
namespace
Constants
{
/* Detector description
There are four stations with number of regions in it
in current implementation regions are ignored
*/
static
constexpr
uint
n_stations
=
4
;
/* Cut-offs */
static
constexpr
uint
max_numhits_per_event
=
200
*
n_stations
;
}
/* SoA for hit variables
The hits for every layer are written behind each other, the offsets
are stored for access;
one Hits structure exists per event
*/
struct
HitsSoA
{
int
number_of_hits_per_station
[
Constants
::
n_stations
]
=
{
0
};
int
station_offsets
[
Constants
::
n_stations
]
=
{
0
};
int
tile
[
Constants
::
max_numhits_per_event
]
=
{
0
};
float
x
[
Constants
::
max_numhits_per_event
]
=
{
0
};
float
dx
[
Constants
::
max_numhits_per_event
]
=
{
0
};
float
y
[
Constants
::
max_numhits_per_event
]
=
{
0
};
float
dy
[
Constants
::
max_numhits_per_event
]
=
{
0
};
float
z
[
Constants
::
max_numhits_per_event
]
=
{
0
};
float
dz
[
Constants
::
max_numhits_per_event
]
=
{
0
};
int
uncrossed
[
Constants
::
max_numhits_per_event
]
=
{
0
};
unsigned
int
time
[
Constants
::
max_numhits_per_event
]
=
{
0
};
int
delta_time
[
Constants
::
max_numhits_per_event
]
=
{
0
};
int
cluster_size
[
Constants
::
max_numhits_per_event
]
=
{
0
};
};
}
Loading