File indexing completed on 2025-01-18 09:55:38
0001
0002
0003 #ifndef EDM4HEP_RecIonizationClusterOBJ_H
0004 #define EDM4HEP_RecIonizationClusterOBJ_H
0005
0006
0007 #include "edm4hep/RecIonizationClusterData.h"
0008 #include "edm4hep/TrackerPulse.h"
0009 #include <vector>
0010
0011 #include "podio/ObjectID.h"
0012 #include <vector>
0013
0014 namespace edm4hep {
0015
0016 class RecIonizationCluster;
0017
0018 class RecIonizationClusterObj {
0019 public:
0020
0021 RecIonizationClusterObj();
0022
0023 RecIonizationClusterObj(const RecIonizationClusterObj&);
0024
0025
0026 RecIonizationClusterObj(const podio::ObjectID id, RecIonizationClusterData data);
0027
0028 RecIonizationClusterObj& operator=(const RecIonizationClusterObj&) = delete;
0029 virtual ~RecIonizationClusterObj();
0030
0031 public:
0032 podio::ObjectID id;
0033 RecIonizationClusterData data;
0034 std::vector<edm4hep::TrackerPulse>* m_trackerPulse{nullptr};
0035 };
0036
0037 }
0038
0039 #endif