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


#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)    // Outputs McPart objects to a file
};
#endif
