Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:18:01

0001 // Tell emacs that this is a C++ source
0002 // -*- C++ -*-.
0003 
0004 #ifndef G4EVAL_TRACKEVALUATIONCONTAINER_H
0005 #define G4EVAL_TRACKEVALUATIONCONTAINER_H
0006 
0007 /*!
0008  * \file TrackEvaluationContainer.h
0009  * \author Hugo Pereira Da Costa <hugo.pereira-da-costa@cea.fr>
0010  */
0011 
0012 #include <phool/PHObject.h>
0013 
0014 //! track evaluation container base class
0015 /*! this is the base class. Does nothing */
0016 class TrackEvaluationContainer : public PHObject
0017 {
0018  public:
0019   //! constructor
0020   explicit TrackEvaluationContainer()
0021   {
0022   }
0023 
0024   //! copy constructor
0025   explicit TrackEvaluationContainer(const TrackEvaluationContainer&) = delete;
0026 
0027   //! assignment operator
0028   TrackEvaluationContainer& operator=(const TrackEvaluationContainer&) = delete;
0029 
0030   ClassDefOverride(TrackEvaluationContainer, 1)
0031 };
0032 
0033 #endif