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