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