// $Header: EventMarker.h $
//
//  31 Mar 1999   J. Bogart  moved to Util (in libRootAppsUtil.so)

#ifndef NLD_EVMARK_H
#define NLD_EVMARK_H

#include "RecModule.h"

//=========================================================
class EventMarker : public RecModule {
public:
  EventMarker(int runnum=1, int eventnum=0);
  ~EventMarker() {};
  // Implicit destructor
       // Implicit copy constructor
       // Implicit assignment operator
       void cleanup();
  void doit(Event* event);
  void spew(FILE* ofile)const;
  // read from/write to an open stream
       

private:
  int m_runNumber;           // Settable by constructor
  int m_eventNumber;         // Count events

public:
    ClassDef(EventMarker,0)  // Simplest possible recon module: counts events
};
#endif
