File indexing completed on 2025-10-27 08:42:29
0001
0002
0003 #ifndef EDM4HEP_RawCalorimeterHitOBJ_H
0004 #define EDM4HEP_RawCalorimeterHitOBJ_H
0005
0006
0007 #include "edm4hep/RawCalorimeterHitData.h"
0008
0009 #include "podio/ObjectID.h"
0010
0011
0012
0013 namespace edm4hep {
0014
0015 class RawCalorimeterHit;
0016
0017 class RawCalorimeterHitObj {
0018 public:
0019
0020 RawCalorimeterHitObj();
0021
0022 RawCalorimeterHitObj(const RawCalorimeterHitObj&);
0023
0024
0025 RawCalorimeterHitObj(const podio::ObjectID& id, const RawCalorimeterHitData& data);
0026
0027 RawCalorimeterHitObj& operator=(const RawCalorimeterHitObj&) = delete;
0028 virtual ~RawCalorimeterHitObj() = default;
0029
0030 public:
0031 podio::ObjectID id;
0032 RawCalorimeterHitData data;
0033 };
0034
0035 }
0036
0037
0038 #endif