#ifndef RESONANCETYPE_H #define RESONANCETYPE_H #include "particleType.h" class resonanceType: public particleType { private: const double fWidth; public: const double getWidth() const { return fWidth; }; int isRes() { return 1;}; void print() const; resonanceType(const char* name, double mass, int charge, double width = 0.0); }; #endif