// $Header: MCPartPrint.h $

#ifndef NLD_MCPARTPRINT_H
#define NLD_MCPARTPRINT_H

#include "RecModule.h"
#include "McPart.h"

//=========================================================
class MCPartPrint : public RecModule {
public:
  MCPartPrint();
  ~MCPartPrint() {};
  // 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:

  Event* m_event;   // current event
public:
  ClassDef(MCPartPrint,0)    // for Cint dictionary
};
#endif
