/*
 * $Id: qualityLevels.js 84386 2009-10-01 11:47:48Z k.reimer $
 * Copyright (C) 2006 IP Labs GmbH <http://www.iplabs.de/>
 * All rights reserved.
 */
 
 
/**
 * @fileoverview
 *
 * Defines the quality table which is used by the QualityMeter class to
 * map a print area coverage to a quality level. The table also defines the
 * number of quality levels. Level 0 is always the worst quality.
 *
 * This file can be overriden per operator if an operator needs a different
 * quality table.
 *
 * The table only defines the "border values". So if you need a quality model
 * with three states (bad, acceptable, good) then you define two values. For
 * example: 50, 75. This table means that with a print area coverage of 49%
 * the quality is bad (0), with a coverage of 50-74% it's acceptable (1) and
 * coverage with at least 75% the quality is good.
 *
 * @author Klaus Reimer (k.reimer@iplabs.de)
 * @version $Revision: 84386 $
 */
 
var qualityLevels = new Array();
qualityLevels.push(50);

