/* * fix_printVolume.h * * Created on: Apr 18, 2012 * Author: kirill lykov */ #ifdef FIX_CLASS FixStyle(printVolume,FixPrintVolume) #else #ifndef FIX_PRINTVOLUME_H_ #define FIX_PRINTVOLUME_H_ #include "fix.h" namespace LAMMPS_NS { class FixPrintVolume : public Fix { public: FixPrintVolume(class LAMMPS *, int, char **); ~FixPrintVolume(); int setmask(); void end_of_step(); private: int me; }; } #endif #endif