00001 #ifdef HAVE_CONFIG_H
00002 #include <config.h>
00003 #endif
00004
00005 #include "eoGnuplot1DSnapshot.h"
00006
00007
00008
00009 eoMonitor& eoGnuplot1DSnapshot::operator()()
00010 {
00011
00012 eoFileSnapshot::operator()();
00013
00014 #ifdef HAVE_GNUPLOT
00015
00016 std::ostringstream os;
00017 os << "set title 'Gen. " << getCounter() << "'; plot '"
00018
00019
00020 << getFileName().c_str() << "' notitle with points ps " << pointSize
00021 << std::endl;
00022 PipeComSend(gpCom, os.str().c_str());
00023 #endif
00024 return *this;
00025 }
00026
00027
00028
00029
00030
00031
00032