package twinfeats.pilot.pdb;import java.io.*;import java.util.*;/** * Convenience class for reading a PDB file * @version     1.0 Dec 17 1997 * @author      Kent L. Smotherman */public class ReadPDB extends PDB {    /**     * Read a PDB file.     * @param filename      Name of PDB file to read     * exception Exception  For any exception during the read process     */    public ReadPDB(String filename) throws Exception {        readPDB(filename);    }}
