File indexing completed on 2026-04-17 08:20:51
0001
0002
0003 #ifndef EDM4EIC_JetDATA_H
0004 #define EDM4EIC_JetDATA_H
0005
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008
0009 namespace edm4eic {
0010
0011
0012
0013
0014
0015
0016 class JetData {
0017 public:
0018 std::uint32_t type{};
0019 float area{};
0020 float energy{};
0021 float backgroundEnergyDensity{};
0022 ::edm4hep::Vector3f momentum{};
0023
0024 unsigned int constituents_begin{};
0025 unsigned int constituents_end{};
0026 };
0027
0028
0029 namespace v890 {
0030 using JetData = edm4eic::JetData;
0031 }
0032
0033
0034 }
0035
0036
0037 #endif