| MIPP SlowMon::Section |
SlowMon::Section - individual web pages (a section) for devices related to one sub-system.
my @devs = $Section{<device-name>};
Print();
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"};
Print()STDOUT.
| MIPP SlowMon::Section |