#include "TObject.h"

	// define the ABC class and make it inherit from
	// TObject so that we can write ABC to a root file
	class ABC : public TObject {

	public:
		  Float_t a,b,c,p;
   	  ABC():a(0),b(0),c(0),p(0){};
		  // Define the class for the cint dictionary
	     ClassDef(ABC,1)  
  	};
		
// Call the ClassImp macro to give the ABC class RTTI and
// full I/O capabilities.
#if !defined(__CINT__) 
	ClassImp(ABC);
#endif
	
