final HashMap<VolatilityPoint, Double> dataPoints = new HashMap<>();
final HashMap<VolatilityPoint, ExternalIdBundle> dataIds = new HashMap<>();
final HashMap<VolatilityPoint, Double> relativeStrikes = new HashMap<>();
final HashMap<Pair<Tenor, Tenor>, Double> strikes = new HashMap<>();
final SnapshotDataBundle otherData = new SnapshotDataBundle();
final ExternalIdBundleResolver resolver = new ExternalIdBundleResolver(context.getComputationTargetResolver());
for (final ComputedValue value : inputs.getAllValues()) {
if (!(value.getValue() instanceof Double)) {
continue;
}
final Double dValue = (Double) value.getValue();