1 /***************************************************/ 2 /*! \class JetTable 3 \brief STK jet table class. 4 5 This class implements a flue jet non-linear 6 function, computed by a polynomial calculation. 7 Contrary to the name, this is not a "table". 8 9 Consult Fletcher and Rossing, Karjalainen, 10 Cook, and others for more information. 11 12 by Perry R. Cook and Gary P. Scavone, 1995 - 2005. 13 */ 14 /***************************************************/ 15 16 #ifndef STK_JETTABL_H 17 #define STK_JETTABL_H 18 19 #include "Function.h" 20 21 namespace Nyq 22 { 23 24 class JetTable : public Function 25 { 26 public: 27 //! Default constructor. 28 JetTable(); 29 30 //! Class destructor. 31 ~JetTable(); 32 33 protected: 34 35 StkFloat computeSample( StkFloat input ); 36 37 }; 38 39 } // namespace Nyq 40 41 #endif 42