#ifndef CBMGeane_H #define CBMGeane_H #include "TObject.h" class CbmMCApplication; class CbmField; class CbmGeane : public TObject { public: /** Default constructor **/ CbmGeane(); CbmGeane(const char* name); virtual ~CbmGeane(); void SetField(CbmField *field); ClassDef(CbmGeane,1) protected: CbmMCApplication *fApp; }; #endif