00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 char ope_sec_order_r2_C[] = "$Header: /cvsroot/Lorene/C++/Source/Ope_elementary/Ope_sec_order_r2/ope_sec_order_r2.C,v 1.1 2004/03/05 09:22:24 p_grandclement Exp $" ;
00022
00023
00024
00025
00026
00027
00028 #include <math.h>
00029 #include <stdlib.h>
00030
00031 #include "ope_elementary.h"
00032
00033
00034 Ope_sec_order_r2::Ope_sec_order_r2 (int nbr, int base, double alf,
00035 double bet, double a, double b, double c) :
00036 Ope_elementary(nbr, base, alf, bet), a_param(a), b_param(b), c_param(c) {
00037
00038 assert (a!=0) ;
00039 }
00040
00041
00042 Ope_sec_order_r2::Ope_sec_order_r2 (const Ope_sec_order_r2& so) :
00043 Ope_elementary(so), a_param (so.a_param), b_param(so.b_param), c_param(so.c_param) {
00044 }
00045
00046
00047 Ope_sec_order_r2::~Ope_sec_order_r2() {}
00048
00049 void Ope_sec_order_r2::inc_l_quant() {
00050
00051 cout << "inc_l_quant not implemented for Helmholtz operator." << endl ;
00052 abort() ;
00053 }