LORENE
sxpundsdx_1d.C
1 /*
2  * Copyright (c) 1999-2001 Philippe Grandclement
3  *
4  * This file is part of LORENE.
5  *
6  * LORENE is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * LORENE is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with LORENE; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  */
21 
22 
23 
24 
25 /*
26  * $Id: sxpundsdx_1d.C,v 1.4 2016/12/05 16:18:09 j_novak Exp $
27  * $Log: sxpundsdx_1d.C,v $
28  * Revision 1.4 2016/12/05 16:18:09 j_novak
29  * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
30  *
31  * Revision 1.3 2014/10/13 08:53:27 j_novak
32  * Lorene classes and functions now belong to the namespace Lorene.
33  *
34  * Revision 1.2 2014/10/06 15:16:07 j_novak
35  * Modified #include directives to use c++ syntax.
36  *
37  * Revision 1.1 2007/12/11 15:42:23 jl_cornou
38  * Premiere version des fonctions liees aux polynomes de Jacobi(0,2)
39  *
40  * Revision 1.2 2002/10/16 14:37:11 j_novak
41  * Reorganization of #include instructions of standard C++, in order to
42  * use experimental version 3 of gcc.
43  *
44  * Revision 1.1.1.1 2001/11/20 15:19:29 e_gourgoulhon
45  * LORENE
46  *
47  * Revision 2.0 1999/10/11 09:55:46 phil
48  * *** empty log message ***
49  *
50  *
51  * $Header: /cvsroot/Lorene/C++/Source/Non_class_members/Operators/sxpundsdx_1d.C,v 1.4 2016/12/05 16:18:09 j_novak Exp $
52  *
53  */
54 
55  // Includes
56 #include <cstdlib>
57 
58 #include "headcpp.h"
59 #include "type_parite.h"
60 
61 namespace Lorene {
62 void dsdx_1d(int, double**, int) ;
63 void sxpun_1d(int, double**, int) ;
64 
65 
66  //----------------------------------
67  // Routine pour les cas non prevus --
68  //----------------------------------
69 
70 void _sxpundsdx_1d_pas_prevu(int nr, double* tb, double *xo) {
71  cout << "sxpundsdx pas prevu..." << endl ;
72  cout << "Nombre de points : " << nr << endl ;
73  cout << "Valeurs : " << tb << " " << xo <<endl ;
74  abort() ;
75  exit(-1) ;
76 }
77 
78 
79  //---------------
80  // cas R_JACO02 -
81  //---------------
82 
83 void _sxpundsdx_1d_r_jaco02(int nr, double* tb, double *xo) {
84 
85  dsdx_1d(nr, &tb, R_JACO02 >> TRA_R) ;
86  sxpun_1d(nr, &tb, R_JACO02 >> TRA_R) ;
87  for (int j=0 ; j<nr ; j++) {
88  xo[j]=tb[j] ;
89  }
90 }
91 
92  // ---------------------
93  // La routine a appeler
94  //----------------------
95 
96 
97 void sxpundsdx_1d(int nr, double** tb, int base_r)
98 {
99 
100  // Routines de derivation
101  static void (*sxpundsdx_1d[MAX_BASE])(int, double*, double *) ;
102  static int nap = 0 ;
103 
104  // Premier appel
105  if (nap==0) {
106  nap = 1 ;
107  for (int i=0 ; i<MAX_BASE ; i++) {
108  sxpundsdx_1d[i] = _sxpundsdx_1d_pas_prevu ;
109  }
110  // Les routines existantes
111  sxpundsdx_1d[R_JACO02 >> TRA_R] = _sxpundsdx_1d_r_jaco02 ;
112  }
113 
114  double *result = new double[nr] ;
115 
116  sxpundsdx_1d[base_r](nr, *tb, result) ;
117 
118  delete [] (*tb) ;
119  (*tb) = result ;
120 }
121 }
Lorene prototypes.
Definition: app_hor.h:67
#define R_JACO02
base de Jacobi(0,2) ordinaire (finjac)
Definition: type_parite.h:188
#define TRA_R
Translation en R, used for a bitwise shift (in hex)
Definition: type_parite.h:158
#define MAX_BASE
Nombre max. de bases differentes.
Definition: type_parite.h:144