~ubuntu-branches/ubuntu/quantal/flightgear/quantal

« back to all changes in this revision

Viewing changes to src/FDM/UIUCModel/uiuc_map_Cn.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Ove Kaaven
  • Date: 2002-03-27 21:50:15 UTC
  • Revision ID: james.westby@ubuntu.com-20020327215015-0rvi3o8iml0a8s93
Tags: upstream-0.7.9
ImportĀ upstreamĀ versionĀ 0.7.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************** 
 
2
 
 
3
 FILENAME:     uiuc_map_Cn.cpp 
 
4
 
 
5
---------------------------------------------------------------------- 
 
6
 
 
7
 DESCRIPTION:  initializes the Cn map
 
8
 
 
9
----------------------------------------------------------------------
 
10
 
 
11
 STATUS:       alpha version
 
12
 
 
13
----------------------------------------------------------------------
 
14
 
 
15
 REFERENCES:   
 
16
 
 
17
----------------------------------------------------------------------
 
18
 
 
19
 HISTORY:      04/08/2000   initial release
 
20
 
 
21
----------------------------------------------------------------------
 
22
 
 
23
 AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
 
24
               Jeff Scott         <jscott@mail.com>
 
25
 
 
26
----------------------------------------------------------------------
 
27
 
 
28
 VARIABLES:
 
29
 
 
30
----------------------------------------------------------------------
 
31
 
 
32
 INPUTS:       none
 
33
 
 
34
----------------------------------------------------------------------
 
35
 
 
36
 OUTPUTS:      none
 
37
 
 
38
----------------------------------------------------------------------
 
39
 
 
40
 CALLED BY:    uiuc_initializemaps.cpp
 
41
 
 
42
----------------------------------------------------------------------
 
43
 
 
44
 CALLS TO:     none
 
45
 
 
46
----------------------------------------------------------------------
 
47
 
 
48
 COPYRIGHT:    (C) 2000 by Michael Selig
 
49
 
 
50
 This program is free software; you can redistribute it and/or
 
51
 modify it under the terms of the GNU General Public License
 
52
 as published by the Free Software Foundation.
 
53
 
 
54
 This program is distributed in the hope that it will be useful,
 
55
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 
56
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
57
 GNU General Public License for more details.
 
58
 
 
59
 You should have received a copy of the GNU General Public License
 
60
 along with this program; if not, write to the Free Software
 
61
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 
62
 USA or view http://www.gnu.org/copyleft/gpl.html.
 
63
 
 
64
**********************************************************************/
 
65
 
 
66
#include "uiuc_map_Cn.h"
 
67
 
 
68
 
 
69
void uiuc_map_Cn()
 
70
{
 
71
  Cn_map["Cno"]                   =      Cno_flag                   ;
 
72
  Cn_map["Cn_beta"]               =      Cn_beta_flag               ;
 
73
  Cn_map["Cn_p"]                  =      Cn_p_flag                  ;
 
74
  Cn_map["Cn_r"]                  =      Cn_r_flag                  ;
 
75
  Cn_map["Cn_da"]                 =      Cn_da_flag                 ;
 
76
  Cn_map["Cn_dr"]                 =      Cn_dr_flag                 ;
 
77
  Cn_map["Cn_q"]                  =      Cn_q_flag                  ;
 
78
  Cn_map["Cn_b3"]                 =      Cn_b3_flag                 ;
 
79
  Cn_map["Cnfada"]                =      Cnfada_flag                ;
 
80
  Cn_map["Cnfbetadr"]             =      Cnfbetadr_flag             ;
 
81
}
 
82
 
 
83
// end uiuc_map_Cn.cpp