Bioplib
Protein Structure C Library
 All Data Structures Files Functions Variables Typedefs Macros Pages
fit.h
Go to the documentation of this file.
1 /************************************************************************/
2 /**
3 
4  \file fit.h
5 
6  \version V1.4
7  \date 14.08.14
8  \brief Include file for least squares fitting
9 
10  \copyright (c) UCL / Dr. Andrew C. R. Martin 1993-2014
11  \author Dr. Andrew C. R. Martin
12  \par
13  Institute of Structural & Molecular Biology,
14  University College London,
15  Gower Street,
16  London.
17  WC1E 6BT.
18  \par
19  andrew@bioinf.org.uk
20  andrew.martin@ucl.ac.uk
21 
22 **************************************************************************
23 
24  This code is NOT IN THE PUBLIC DOMAIN, but it may be copied
25  according to the conditions laid out in the accompanying file
26  COPYING.DOC.
27 
28  The code may be modified as required, but any modifications must be
29  documented so that the person responsible can be identified.
30 
31  The code may not be sold commercially or included as part of a
32  commercial product except as described in the file COPYING.DOC.
33 
34 **************************************************************************
35 
36  Description:
37  ============
38 
39 
40 **************************************************************************
41 
42  Usage:
43  ======
44 
45 **************************************************************************
46 
47  Revision History:
48  =================
49 - V1.0 04.02.91 Original
50 - V1.1 08.12.92 Removed qikfit() prototype as is static
51 - V1.2 07.07.14 Use bl prefix for functions By: CTP
52 - V1.3 31.07.14 Updated deprecation: Removed deprecated.h and added
53  prototypes for renamed functions. By: CTP
54 - V1.4 14.08.14 Moved deprecated function prototypes to deprecated.h
55  By: CTP
56 
57 *************************************************************************/
58 #ifndef _FIT_H
59 #define _FIT_H
60 
61 #include "MathType.h"
62 #include "SysDefs.h"
63 
64 /* Prototypes for functions defined in fit.c */
65 BOOL blMatfit(COOR *x1, COOR *x2, REAL rm[3][3], int n, REAL *wt1,
66  BOOL column);
67 
68 /************************************************************************/
69 /* Include deprecated functions */
70 #define _FIT_H_DEPRECATED
71 # include "deprecated.h"
72 /************************************************************************/
73 
74 
75 #endif
76 
short BOOL
Definition: SysDefs.h:64
Redirect calls to deprecated functions.
Definition: MathType.h:69
double REAL
Definition: MathType.h:67
System-type variable type definitions.
Type definitions for maths.
BOOL blMatfit(COOR *x1, COOR *x2, REAL rm[3][3], int n, REAL *wt1, BOOL column)
Definition: fit.c:128