MIPP SlowMon::Section


NAME

SlowMon::Section - individual web pages (a section) for devices related to one sub-system.


SYNOPSIS

    my @devs = $Section{<device-name>};
    Print();


DESCRIPTION

The hash %Section is keyed by the section name. The corresponding value is a reference to the array of device names that should be shown on the web page for this section. For example,

    my $sec = "TPC Gas";
    my @devs = $Section{$sec};

or, in one line,

    my @devs = $Section{"TPC Gas"};


FUNCTIONS

Print()
Prints the list of devices for each section to STDOUT.

 MIPP SlowMon::Section