// Read the documentation to learn more about C++ code generator // versioning. // %X% %Q% %Z% %W% #ifndef PLOTDELCHI_H #define PLOTDELCHI_H 1 // PlotCommand #include struct PlotGroup; class PlotSettings; struct StandardLabels; class PlotDelchi : public PlotCommand //## Inherits: %4B1FDCD4021B { public: PlotDelchi(); virtual ~PlotDelchi(); // If not overridden, this does nothing. virtual void makeLabels (const PlotSettings& settings, StandardLabels& labels) const; // Additional Public Declarations protected: // Additional Protected Declarations private: PlotDelchi(const PlotDelchi &right); PlotDelchi & operator=(const PlotDelchi &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 PlotDelchi #endif