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 bool operator==(SimResult const&) const = default;
16};
17
18} // namespace SHiP
Definition CaloHit.hpp:4
Bundled result from one Geant4 event.
Definition SimResult.hpp:11
std::vector< SimParticle > particles
Definition SimResult.hpp:13
bool operator==(SimResult const &) const =default
std::vector< SimHit > hits
Definition SimResult.hpp:12