Help for this page

Select Code to Download


  1. or download this
    my $cache = cacheMaxIntensity(\%massint);
    
    ...
      # return a reference to the cache
      return \%cache;
    }
    
  2. or download this
    my $max_I = maxIntensity($cache, $mass);
    
    ...
      my ($c, $m) = @_;
      return $c->{sprintf "%.1f", $m}[0];
    }