File indexing completed on 2025-12-16 10:13:01
0001
0002
0003 #ifndef EDM4HEP_SenseWireHitOBJ_H
0004 #define EDM4HEP_SenseWireHitOBJ_H
0005
0006
0007 #include "edm4hep/SenseWireHitData.h"
0008 #include <vector>
0009
0010 #include "podio/ObjectID.h"
0011 #include <vector>
0012
0013 namespace edm4hep {
0014
0015 class SenseWireHit;
0016
0017 class SenseWireHitObj {
0018 public:
0019
0020 SenseWireHitObj();
0021
0022 SenseWireHitObj(const SenseWireHitObj&);
0023
0024
0025 SenseWireHitObj(const podio::ObjectID& id, const SenseWireHitData& data);
0026
0027 SenseWireHitObj& operator=(const SenseWireHitObj&) = delete;
0028 virtual ~SenseWireHitObj();
0029
0030 public:
0031 podio::ObjectID id{};
0032 SenseWireHitData data;
0033 std::vector<std::uint16_t>* m_nElectrons{nullptr};
0034 };
0035
0036 }
0037
0038 #endif