Changeset 244


Ignore:
Timestamp:
Apr 28, 2007, 4:45:20 PM (16 years ago)
Author:
Peter Johansson
Message:

removed gnuplot titles fixes #165

Location:
trunk/lib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Directory.cc

    r243 r244  
    171171    os << "../../";
    172172    if (user=="all")
    173       os << stats_.plot(imagedir+"/index.png", local_path(),line_type);
     173      os << stats_.plot(imagedir+"/index.png", line_type);
    174174    else
    175175      os << imagedir << "/index.png";
  • trunk/lib/File.cc

    r235 r244  
    7474    os << "../../";
    7575    if (user=="all")
    76       os << stats_.plot(imagefile, local_path(),line_type);
     76      os << stats_.plot(imagefile,line_type);
    7777    else
    7878      os << imagefile;
  • trunk/lib/Stats.cc

    r213 r244  
    157157
    158158  std::string Stats::plot(const std::string& filename,
    159                           const std::string& title,
    160159                          const std::string& linetype) const
    161160  {
     
    163162    gp->command("set term png");
    164163    gp->command("set output '"+filename+"'");
    165     gp->command("set title '"+title+"'");
    166164    gp->command("set xtics nomirror");
    167165    gp->command("set ytics nomirror");
  • trunk/lib/Stats.h

    r209 r244  
    9797    /// Create statistics graph.
    9898    ///
    99     std::string plot(const std::string&, const std::string&,
    100                      const std::string&) const;
     99    std::string plot(const std::string&, const std::string&) const;
    101100
    102101    ///
Note: See TracChangeset for help on using the changeset viewer.