//  31 Mar 1999   J. Bogart  moved to Util (in libRootAppsUtil.so)

#ifndef LCDMCPARTPRINT_H
#define LCDMCPARTPRINT_H

#include "LCDRecModule.h"

//=========================================================
class LCDMCPartPrint : public LCDRecModule {
public:
  LCDMCPartPrint() {}
  ~LCDMCPartPrint() {}

  void Cleanup(LCDEvent* event) {}
  void Doit(LCDEvent* event) { m_event = event; }
  
private:
  LCDEvent* m_event;   // current event
  
public:
  ClassDef(LCDMCPartPrint,0)    // Outputs McPart objects to a file
};
#endif
