I need a better name for a Perl module. I asked the following on comp.lang.perl.modules a few days ago with no answers:

I  am working on a module which will be used to filter setpoint alarms in
an energy management system based on when they last occurred: if a given
value between a range was triggered in the last X seconds, return false,
otherwise return true.

The module may have more generic uses as an age-filter of numerical
values:
$f->add_point('100,199', 900); # 100..199 once every 15 min $f->add_point('200,' , 60); # 200... once every minute $f->test_point(210); # returns true $f->test_point(211); # returns false sleep(61); # wait over 60 seconds $f->test_point(211); # returns true now
It's tentatively called SetPoint::AgeFilter but SetPoint::* is not very friendly towards the module-name hierarchy. The Filter::* namespace isn't appropriate since Perl source filters are used there. I'm open to suggestions for better names.

In reply to Need a better name for a module... by rrwo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.