X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Ffilter.h;h=8e0740b982e1bb34dc4592d090fb309c9b8e806c;hp=48f82109bcc385364ee9f22018cbbdbc28e76984;hb=03c4bc505de131323cbc70a70bdceda9229269bf;hpb=534cfbea401b6f802a6efb9a70b2c3a49dc76b13 diff --git a/include/filter.h b/include/filter.h index 48f8210..8e0740b 100644 --- a/include/filter.h +++ b/include/filter.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: filter.h,v 1.8 2000/07/04 18:33:35 kevin Exp $ +** $Id: filter.h,v 1.9 2000/07/04 22:21:01 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -112,6 +112,8 @@ class SignalFilter { void finiteFourierTransform (const complex input[], complex output[], const int direction) const; + void setTraceLevel (int traceLevel) {m_traceLevel = traceLevel; } + bool fail(void) const {return m_fail;} const string& failMessage(void) const {return m_failMessage;} @@ -161,6 +163,7 @@ class SignalFilter { DomainID m_idDomain; double m_filterParam; int m_numIntegral; + int m_traceLevel; static const FilterID convertFilterNameToID (const char* filterName); static const char* convertFilterIDToName (const FilterID filterID);