// Read the documentation to learn more about C++ code generator // versioning. // %X% %Q% %Z% %W% #ifndef PLOTUNFOLDED_H #define PLOTUNFOLDED_H 1 // PlotCommand #include struct PlotGroup; class PlotSettings; struct StandardLabels; class PlotUnfolded : public PlotCommand //## Inherits: %4B3277E401F1 { public: PlotUnfolded (const string& name); virtual ~PlotUnfolded(); // If not overridden, this does nothing. virtual void makeLabels (const PlotSettings& settings, StandardLabels& labels) const; virtual bool requestNewXoption (const PlotSettings& settings, XaxisMode& newOption) const; // Additional Public Declarations protected: // Additional Protected Declarations private: PlotUnfolded(const PlotUnfolded &right); PlotUnfolded & operator=(const PlotUnfolded &right); // Once the raw data has been gathered into PlotGroup // objects, this is the function that performs the various // mathematical operations specific to each PlotCommand // subclass. virtual void manipulate (std::vector& plotGroups, const PlotSettings& settings); // Determines plot-time range settings based on current // setplot settings and PlotGroup data. virtual void setRanges (std::vector& plotGroups, const PlotSettings& settings); // Additional Private Declarations private: //## implementation // Additional Implementation Declarations }; // Class PlotUnfolded #endif