SHiP Data Model
Event data model for the SHiP experiment: C++ data classes with ROOT dictionary support.
Loading...
Searching...
No Matches
SimResult.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include "SHiP/SimHit.hpp"
7
8namespace SHiP {
9
11struct SimResult {
12 std::vector<SimHit> hits;
13 std::vector<SimParticle> particles;
14};
15
16} // namespace SHiP
Definition MCParticle.hpp:6
Bundled result from one Geant4 event.
Definition SimResult.hpp:11
std::vector< SimParticle > particles
Definition SimResult.hpp:13
std::vector< SimHit > hits
Definition SimResult.hpp:12