Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: joelib/math/symmetry/SymCoordinates.java


1   ///////////////////////////////////////////////////////////////////////////////
2   //  Filename: $RCSfile: SymCoordinates.java,v $
3   //  Purpose:  Brute force symmetry analyzer.
4   //  Language: Java
5   //  Compiler: JDK 1.4
6   //  Authors:  Joerg K. Wegner
7   //  Original author: (C) 1996, 2003 S. Patchkovskii, Serguei.Patchkovskii@sympatico.ca
8   //  Version:  $Revision: 1.2 $
9   //            $Date: 2003/08/19 13:11:27 $
10  //            $Author: wegner $
11  //
12  //  Copyright (c) Dept. Computer Architecture, University of Tuebingen, Germany
13  //
14  //  This program is free software; you can redistribute it and/or modify
15  //  it under the terms of the GNU General Public License as published by
16  //  the Free Software Foundation; either version 2 of the License, or
17  //  (at your option) any later version.
18  //
19  //  This program is distributed in the hope that it will be useful,
20  //  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  //  GNU General Public License for more details.
23  //
24  //  You should have received a copy of the GNU General Public License
25  //  along with this program; if not, write to the Free Software
26  //  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27  ///////////////////////////////////////////////////////////////////////////////
28  package joelib.math.symmetry;
29  
30  
31  /*==========================================================================*
32   * IMPORTS
33   *========================================================================== */
34  import joelib.molecule.*;
35  
36  
37  /*==========================================================================*
38   * CLASS DECLARATION
39   *========================================================================== */
40  
41  /**
42   * SymmetryElement.
43   *
44   * @author     Serguei Patchkovskii
45   * @author     wegnerj
46   * @license GPL
47   * @cvsversion    $Revision: 1.2 $, $Date: 2003/08/19 13:11:27 $
48   */
49  public class SymCoordinates
50  {
51      //~ Static fields/initializers /////////////////////////////////////////////
52  
53      public static final int DIMENSION = 3;
54  
55      //~ Instance fields ////////////////////////////////////////////////////////
56  
57      public double[] coord = new double[DIMENSION];
58  
59      //~ Constructors ///////////////////////////////////////////////////////////
60  
61      /*-------------------------------------------------------------------------*
62       * constructor
63       *------------------------------------------------------------------------- */
64  
65      /**
66       *  Constructor for the AtomIntInt object
67       *
68       */
69      public SymCoordinates()
70      {
71      }
72  }
73  ///////////////////////////////////////////////////////////////////////////////
74  //  END OF FILE.
75  ///////////////////////////////////////////////////////////////////////////////