~ubuntu-branches/ubuntu/trusty/cdk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/org/openscience/cdk/templates/saturatedhydrocarbons/IsoAlkanes.java

  • Committer: Bazaar Package Importer
  • Author(s): Paul Cager
  • Date: 2008-04-09 21:17:53 UTC
  • Revision ID: james.westby@ubuntu.com-20080409211753-46lmjw5z8mx5pd8d
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $RCSfile$
 
2
 * $Author: egonw $
 
3
 * $Date: 2007-01-04 18:46:10 +0100 (Thu, 04 Jan 2007) $
 
4
 * $Revision: 7636 $
 
5
 *
 
6
 * Copyright (C) 2002-2007  The Chemistry Development Kit (CDK) project
 
7
 *
 
8
 * Contact: cdk-devel@lists.sourceforge.net
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or
 
11
 * modify it under the terms of the GNU Lesser General Public License
 
12
 * as published by the Free Software Foundation; either version 2.1
 
13
 * of the License, or (at your option) any later version.
 
14
 *
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU Lesser General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU Lesser General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 
23
 */
 
24
package org.openscience.cdk.templates.saturatedhydrocarbons;
 
25
 
 
26
import org.openscience.cdk.Atom;
 
27
import org.openscience.cdk.Molecule;
 
28
 
 
29
/**
 
30
 * This class contains methods for generating simple organic alkanes.
 
31
 *
 
32
 * @cdk.keyword templates
 
33
 */
 
34
public class IsoAlkanes {
 
35
 
 
36
    public static Molecule getIsobutane() {
 
37
        Molecule mol = new Molecule();
 
38
        mol.addAtom(new Atom("C"));
 
39
        mol.addAtom(new Atom("C"));
 
40
        mol.addAtom(new Atom("C"));
 
41
        mol.addAtom(new Atom("C"));
 
42
 
 
43
        mol.addBond(0, 1, 1);
 
44
        mol.addBond(0, 2, 1);
 
45
        mol.addBond(0, 3, 1);
 
46
        return mol;
 
47
    }
 
48
 
 
49
    public static Molecule getIsopentane() {
 
50
        Molecule mol = new Molecule();
 
51
        mol.addAtom(new Atom("C"));
 
52
        mol.addAtom(new Atom("C"));
 
53
        mol.addAtom(new Atom("C"));
 
54
        mol.addAtom(new Atom("C"));
 
55
        mol.addAtom(new Atom("C"));
 
56
 
 
57
        mol.addBond(0, 1, 1);
 
58
        mol.addBond(0, 2, 1);
 
59
        mol.addBond(0, 3, 1);
 
60
        mol.addBond(3, 4, 1);
 
61
        return mol;
 
62
    }
 
63
 
 
64
    public static Molecule getIsohexane() {
 
65
        Molecule mol = new Molecule();
 
66
        mol.addAtom(new Atom("C"));
 
67
        mol.addAtom(new Atom("C"));
 
68
        mol.addAtom(new Atom("C"));
 
69
        mol.addAtom(new Atom("C"));
 
70
        mol.addAtom(new Atom("C"));
 
71
        mol.addAtom(new Atom("C"));
 
72
 
 
73
        mol.addBond(0, 1, 1);
 
74
        mol.addBond(0, 2, 1);
 
75
        mol.addBond(0, 3, 1);
 
76
        mol.addBond(3, 4, 1);
 
77
        mol.addBond(4, 5, 1);
 
78
        return mol;
 
79
    }
 
80
 
 
81
}