// $Header: EventMarker.h $

#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)      // for Cint dictionary
};
#endif
