Index: trunk/PS-IPP-Config/lib/PS/IPP/Config.pm
===================================================================
--- trunk/PS-IPP-Config/lib/PS/IPP/Config.pm	(revision 30744)
+++ trunk/PS-IPP-Config/lib/PS/IPP/Config.pm	(revision 31907)
@@ -40,4 +40,5 @@
                     metadataLookupBool
                     metadataLookupS32
+                    metadataLookupF32
                     caturi
                     file_scheme
@@ -1576,4 +1577,14 @@
 }
 
+# Lookup the metadata, checking the type is F32
+sub metadataLookupF32
+{
+    my $item = metadataLookup(@_);
+    return undef if not defined $item;
+    my $name = shift;                # Name of item
+    carp "$name within metadata is type $item->{type} not F32.\n" unless $item->{type} eq "F32";
+    return $item->{value};
+}
+
 # Lookup the metadata, checking the type is MD
 sub metadataLookupMD
