// ------------------------------------------------------------------------ // ----- CbmMvdSensorPlugin header file ----- // ----- Created 02/02/12 by M. Deveaux ----- // ------------------------------------------------------------------------ /** CbmMvdSensorPlugin.h *@author M.Deveaux ** ** Base class for the plugins of the MVD sensor ** **/ #ifndef CBMMVDSENSORPLUGIN_H #define CBMMVDSENSORPLUGIN_H 1 #include "CbmMvdSensor.h" class TClonesArray; enum MvdSensorPluginType {task, buffer}; class CbmMvdSensorPlugin : public TObject { public: /** Default constructor **/ CbmMvdSensorPlugin(); /** Destructor **/ virtual ~CbmMvdSensorPlugin(); virtual const MvdSensorPluginType GetPluginType(){;} ClassDef(CbmMvdSensorPlugin,1); }; #endif