00001 00002 // $Id: DigiObject.h,v 1.1 2003/03/21 21:02:34 messier Exp $ 00003 // 00004 // A simple object for testing code 00005 // 00006 // messier@indiana.edu 00008 #ifndef DIGIOBJECT_H 00009 #define DIGIOBJECT_H 00010 #include "TObject.h" 00011 00012 class DigiObject : public TObject 00013 { 00014 public: 00015 DigiObject(); 00016 DigiObject(int i); 00017 00018 virtual ~DigiObject(); 00019 public: 00020 int fNumber[64]; // Give the object some data to make it "heavy" 00021 }; 00022 #endif // DIGIOBJECT_H 00023
1.3.9.1