Warning, file /include/JANA/examples/PodioDatamodel/ExampleHitData.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 #ifndef PODIODATAMODEL_ExampleHitDATA_H
0004 #define PODIODATAMODEL_ExampleHitDATA_H
0005
0006 #include <cstdint>
0007
0008
0009
0010
0011
0012
0013
0014 class ExampleHitData {
0015 public:
0016 std::uint64_t cellID{};
0017 double x{};
0018 double y{};
0019 double z{};
0020 double energy{};
0021 std::uint64_t time{};
0022
0023 };
0024
0025
0026 namespace v1 {
0027 using ExampleHitData = ExampleHitData;
0028 }
0029
0030
0031
0032
0033 #endif