// EventSource.h
//------------------------------------------
// This is the base class for the event providing classes for the the 
// fastMC and FullRecon programs.  

#ifndef EVENTSOURCE_H
#define EVENTSOURCE_H
//  Base class for real event sources like readStdFile and MCDiag
//  Written by ???   on ???
//  31 Mar 1999   J. Bogart  moved to Util (in libRootAppsUtil.so)

#include "Event.h"

class EventSource : public TObject {

public:
  EventSource(){};
  ~EventSource(){};
  
  virtual int getEvent(Event* event){return(0);};
  Int_t NoOp(Int_t arg);

ClassDef(EventSource,0)

  private:
Int_t myData;
};
#endif
