Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_tutorial
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
tutorials
eic_tutorial
Merge requests
!16
Part5 analysis docs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Part5 analysis docs
wdconinc-master-patch-73409
into
master
Overview
0
Commits
5
Pipelines
5
Changes
1
Merged
Wouter Deconinck
requested to merge
wdconinc-master-patch-73409
into
master
3 years ago
Overview
0
Commits
5
Pipelines
5
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 4
adb63e8f
3 years ago
version 3
e3a64cd6
3 years ago
version 2
9dec2512
3 years ago
version 1
2af315c3
3 years ago
master (base)
and
version 1
latest version
6dcc67e1
5 commits,
3 years ago
version 4
adb63e8f
4 commits,
3 years ago
version 3
e3a64cd6
3 commits,
3 years ago
version 2
9dec2512
2 commits,
3 years ago
version 1
2af315c3
1 commit,
3 years ago
1 file
+
47
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/docs/part5/reconstruction_analysis.md
0 → 100644
+
47
−
0
Options
---
title
:
'
Reconstruction
Analysis'
---
This part of the tutorial outlines how reconstruction output from full simulations can be used for analysis by physics working groups.
At the end of this tutorial you should able to:
-
determine the location of relevant full simulation reconstruction files,
-
understand the file structure of the full simulation reconstruction output,
-
use one of several approaches to perform low-level analysis on the reconstruction output.
## Location of full simulation reconstruction output
Full simulation outputs are stored on one of several locations:
-
S3: https://dtn01.sdcc.bnl.gov:9000/minio/eictest/ATHENA/ (web interface)
-
xrootd: root://sci-xrootd.jlab.org//osgpool/eic/ATHENA/ (no preview currently available)
For details on accessing these locations, please refer to https://doc.athena-eic.org/en/latest/howto/.
Data at these location is organized in a predicatable structure:
-
`EVGEN/`
contains all initial generated events (in hepmc3 or other format),
-
`FULL/`
contains the raw full simulation output without any reconstruction,
-
`RECO/`
contains the reconstruction output.
Under the different top-level directories, you can find the different physics processes:
-
`SINGLE/`
contains single particle initial states,
-
`DIS/`
contains DIS events.
## File structure of the full simulation reconstruction output
Each reconstruction output file has essentially the same structure, defined by the EIC Data Model. This structure can be retrieved with
`rootls`
, e.g.
```
console
rootls root://sci-xrootd.jlab.org///osgpool/eic/ATHENA/RECO/SINGLE/pi+/1GeV/45to135deg/pi+_1GeV_45to135deg.0001.root
```
which produces the following output, two trees:
```
console
events metadata
```
The
`events`
tree is of course what we are interested in. We can explore its top-level structure as follows. We first start a ROOT session:
```
console
root -l root://sci-xrootd.jlab.org///osgpool/eic/ATHENA/RECO/SINGLE/pi+/1GeV/45to135deg/pi+_1GeV_45to135deg.0001.root
```
and then list the top-level branches in the
`events`
tree:
```
console
events->
Print
(
"toponly"
)
```
Loading