File indexing completed on 2026-09-15 09:06:31
0001
0002
0003 #ifndef EDM4HEP_SimCalorimeterHitDATA_H
0004 #define EDM4HEP_SimCalorimeterHitDATA_H
0005
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008
0009 namespace edm4hep {
0010
0011
0012
0013
0014
0015 class SimCalorimeterHitData {
0016 public:
0017 std::uint64_t cellID{};
0018 float energy{};
0019 ::edm4hep::Vector3f position{};
0020
0021 unsigned int contributions_begin{};
0022 unsigned int contributions_end{};
0023 };
0024
0025 namespace v6 {
0026 using SimCalorimeterHitData = edm4hep::SimCalorimeterHitData;
0027 }
0028
0029
0030 namespace v5 {
0031 class SimCalorimeterHitData {
0032 public:
0033 std::uint64_t cellID{};
0034 float energy{};
0035 ::edm4hep::v5::Vector3f position{};
0036
0037 unsigned int contributions_begin{};
0038 unsigned int contributions_end{};
0039 };
0040 }
0041 namespace v4 {
0042 class SimCalorimeterHitData {
0043 public:
0044 std::uint64_t cellID{};
0045 float energy{};
0046 ::edm4hep::v4::Vector3f position{};
0047
0048 unsigned int contributions_begin{};
0049 unsigned int contributions_end{};
0050 };
0051 }
0052 namespace v3 {
0053 class SimCalorimeterHitData {
0054 public:
0055 std::uint64_t cellID{};
0056 float energy{};
0057 ::edm4hep::v3::Vector3f position{};
0058
0059 unsigned int contributions_begin{};
0060 unsigned int contributions_end{};
0061 };
0062 }
0063 namespace v2 {
0064 class SimCalorimeterHitData {
0065 public:
0066 std::uint64_t cellID{};
0067 float energy{};
0068 ::edm4hep::v2::Vector3f position{};
0069
0070 unsigned int contributions_begin{};
0071 unsigned int contributions_end{};
0072 };
0073 }
0074
0075 }
0076
0077 #endif