Data
Location
The meson structure data is available from the following locations:
LATEST PROCESSED FILES
(last update of October 2025)
On JLab ifarm:
bash
/volatile/eic/romanov/meson-structure-2025-10/reco
# priority queues (first 1'000'000 events == 200 files from each energy range):
/volatile/eic/romanov/meson-structure-2025-10/reco/5x41-priority
/volatile/eic/romanov/meson-structure-2025-10/reco/10x100-priority
/volatile/eic/romanov/meson-structure-2025-10/reco/10x130-priority
/volatile/eic/romanov/meson-structure-2025-10/reco/18x275-priority
#CSV files are located in csv folder now:
/volatile/eic/romanov/meson-structure-2025-10/csv/5x41-priority
/volatile/eic/romanov/meson-structure-2025-10/csv/10x100-priority
/volatile/eic/romanov/meson-structure-2025-10/csv/10x130-priority
/volatile/eic/romanov/meson-structure-2025-10/csv/18x275-priorityOn XRootD (open for universities and public)
bash
xrdfs root://dtn-eic.jlab.org
ls /volatile/eic/romanov/meson-structure-2025-10/recoIn this campaign we put processing files in separate folders:
eg-orig-kaon-lambda- original event generator files, 10mil events in each energy rangeeg-hepmc- event generator files split by 5k events and converted to HepMCafterburner- generator files with applied crossing angle and beam effectsdd4hep- DD4Hep full simulation result (edm4hep.rootfiles)reco- EICrecon reconstruction results (edm4eic.rootfiles)csv- CSV files from reconstructed results
The campaign is made with eic-shell v25.10.3 container
Writing libraries versions (important for C++ readout compatibility):
- podio: v01-03
- edm4hep: v00-99-01
- edm4eic: v8.0.1
- cxxstd: 20
Original MCEG files on ifarm: /volatile/eic/romanov/meson-structure-2025-10/eg-orig-kaon-lambda
(last update of August 2025)
File names:
File names are:
bash
# The pattern:
k_lambda_{beam}_5000evt_{idx}.{ext}
# e.g.
k_lambda_10x100_5000evt_045.edm4eic.rootWhere:
{beam}Beam energy configuration [5x41, 10x100, 18x275]{idx}- zero padded index [001-200]{ext}*.info.yaml- Input and processing metadata*.afterburner.hepmc- Beam effects afterburner output*.afterburner.hist.root- Afterburner before-after histograms*.edm4hep.root- DD4Hep (Genat4) output*.edm4eic.root- EICRecon reconstructed files*.mcdis.csv- MC DIS CSV table*.mcpart_lambda.csv- MCParticles based CSV table full lambda decay values
5000evt indicate each file has 5k events
Accessing Data with XRootD
The data is available remoutly through XRootD via:
root://dtn-eic.jlab.orgTo browse the available files one can use xrdfs command:
bash
xrdfs root://dtn-eic.jlab.org
ls /volatile/eic/romanov/meson-structure-2025-10/recoTo download files:
bash
xrdcp root://dtn-eic.jlab.org//volatile/eic/romanov/meson-structure-2025-10/reco/5x41-priority/k_lambda_5x41_5000evt_001.edm4eic.root ./To use directly in scripts:
python
# Both uproot and pyroot can work with links directly
# if XRootD is installed in the system
import uproot
file = uproot.open("root://dtn-eic.jlab.org//volatile/eic/romanov/meson-structure-2025-10/reco/5x41-priority/k_lambda_5x41_5000evt_001.edm4eic.root")