// ---------------------------------------------------------------------------- // $Id: LCDMCPartPrint.h,v 1.2 2001/06/19 16:55:32 toshi Exp $ // ---------------------------------------------------------------------------- // // $Log: LCDMCPartPrint.h,v $ // Revision 1.2 2001/06/19 16:55:32 toshi // Just add $ID: $ in the top of this file. // // // 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