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

Quick Search    Search Deep

Source code: joelib/smarts/types/SMARTSPatternFVec.java


1   ///////////////////////////////////////////////////////////////////////////////
2   //  Filename: $RCSfile: SMARTSPatternFVec.java,v $
3   //  Purpose:  Atom representation.
4   //  Language: Java
5   //  Compiler: JDK 1.4
6   //  Authors:  Joerg K. Wegner
7   //  Version:  $Revision: 1.7 $
8   //            $Date: 2003/08/19 13:11:28 $
9   //            $Author: wegner $
10  //  Original Author: ???, OpenEye Scientific Software
11  //  Original Version: babel 2.0a1
12  //
13  //  Copyright (c) Dept. Computer Architecture, University of Tuebingen, Germany
14  //
15  //  This program is free software; you can redistribute it and/or modify
16  //  it under the terms of the GNU General Public License as published by
17  //  the Free Software Foundation version 2 of the License.
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  package joelib.smarts.types;
25  
26  
27  /*==========================================================================*
28   * IMPORTS
29   *========================================================================== */
30  import joelib.smarts.JOESmartsPattern;
31  
32  
33  /*==========================================================================*
34   * CLASS DECLARATION
35   *========================================================================== */
36  
37  /**
38   *  Atom representation.
39   *
40   * @author     wegnerj
41   *     30. Januar 2002
42   */
43  public class SMARTSPatternFVec implements java.io.Serializable
44  {
45      //~ Instance fields ////////////////////////////////////////////////////////
46  
47      /*-------------------------------------------------------------------------*
48       * public member variables
49       *------------------------------------------------------------------------- */
50  
51      /**
52       *  Description of the Field
53       */
54      public JOESmartsPattern sp;
55      public double[] seedCharge;
56  
57      //~ Constructors ///////////////////////////////////////////////////////////
58  
59      /*-------------------------------------------------------------------------*
60       * constructor
61       *------------------------------------------------------------------------- */
62  
63      /**
64       * @param  _fV  {@link java.util.Vector} of <tt>double[1]</tt>
65       * @param  _sp  Description of the Parameter
66       */
67      public SMARTSPatternFVec(JOESmartsPattern _sp, double[] _seedCharge)
68      {
69          sp = _sp;
70          seedCharge = _seedCharge;
71      }
72  }
73  ///////////////////////////////////////////////////////////////////////////////
74  //  END OF FILE.
75  ///////////////////////////////////////////////////////////////////////////////