00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 char ope_vorton_C[] = "$Header: /cvsroot/Lorene/C++/Source/Ope_elementary/Ope_vorton/ope_vorton.C,v 1.1 2007/04/24 09:13:23 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_vorton::Ope_vorton (int nbr, int base, double alf,
00035 double bet, int lq, int dz) :
00036 Ope_elementary(nbr, base, alf, bet), l_quant(lq), dzpuis(dz) {
00037 }
00038
00039
00040 Ope_vorton::Ope_vorton (const Ope_vorton& so) :
00041 Ope_elementary(so), l_quant(so.l_quant), dzpuis(so.dzpuis) {
00042 }
00043
00044
00045 Ope_vorton::~Ope_vorton() {}
00046
00047 void Ope_vorton::inc_l_quant() {
00048
00049 cout << "inc_l_quant not implemented for this operator." << endl ;
00050 abort() ;
00051 }
00052
00053 void Ope_vorton::dec_l_quant() {
00054
00055 cout << "dec_l_quant not implemented for this operator." << endl ;
00056 abort() ;
00057 }