00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __STANDARD_TRANSFER_FUNCTIONS_DOT_H
00023 #define __STANDARD_TRANSFER_FUNCTIONS_DOT_H
00024
00025 #include "TFBase.h"
00026
00027 class LinRampTF : public TFBaseIF {
00028 public:
00029
00030 LinRampTF() {}
00031 virtual ~LinRampTF() {}
00032
00033
00034 virtual STF::tfRangeType eval(const STF::tfDomainType &tfpos) = 0;
00035
00036
00037 virtual int sizeDomain() const;
00038
00039
00040 virtual int sizeRange() const;
00041
00042
00043
00044 virtual int numParams() const = 0;
00045
00046 };
00047
00048
00049 class NDGausTF : public TFBaseIF {
00050 public:
00051 NDGausTF() {}
00052 virtual ~NDGausTF() {}
00053
00054
00055
00056 };
00057
00058
00059 #endif
00060