File indexing completed on 2025-08-05 08:18:01
0001
0002
0003
0004 #ifndef G4EVAL_TRACKEVALUATIONCONTAINER_H
0005 #define G4EVAL_TRACKEVALUATIONCONTAINER_H
0006
0007
0008
0009
0010
0011
0012 #include <phool/PHObject.h>
0013
0014
0015
0016 class TrackEvaluationContainer : public PHObject
0017 {
0018 public:
0019
0020 explicit TrackEvaluationContainer()
0021 {
0022 }
0023
0024
0025 explicit TrackEvaluationContainer(const TrackEvaluationContainer&) = delete;
0026
0027
0028 TrackEvaluationContainer& operator=(const TrackEvaluationContainer&) = delete;
0029
0030 ClassDefOverride(TrackEvaluationContainer, 1)
0031 };
0032
0033 #endif