Warning, file /include/JANA/examples/PodioDatamodel/ExampleClusterObj.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 #ifndef PODIODATAMODEL_ExampleClusterOBJ_H
0004 #define PODIODATAMODEL_ExampleClusterOBJ_H
0005
0006
0007 #include "PodioDatamodel/ExampleClusterData.h"
0008 #include "PodioDatamodel/ExampleHit.h"
0009 #include <vector>
0010
0011 #include "podio/ObjectID.h"
0012 #include <vector>
0013
0014
0015
0016
0017 class ExampleCluster;
0018
0019 class ExampleClusterObj {
0020 public:
0021
0022 ExampleClusterObj();
0023
0024 ExampleClusterObj(const ExampleClusterObj&);
0025
0026
0027 ExampleClusterObj(const podio::ObjectID& id, const ExampleClusterData& data);
0028
0029 ExampleClusterObj& operator=(const ExampleClusterObj&) = delete;
0030 virtual ~ExampleClusterObj();
0031
0032 public:
0033 podio::ObjectID id{};
0034 ExampleClusterData data;
0035 std::vector<ExampleHit>* m_Hits{nullptr};
0036 std::vector<ExampleCluster>* m_Clusters{nullptr};
0037 };
0038
0039
0040
0041 #endif