00001 /* 00002 * Copyright (c) 2004 Philippe Grandclement 00003 * 00004 * This file is part of LORENE. 00005 * 00006 * LORENE is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License version 2 00008 * as published by the Free Software Foundation. 00009 * 00010 * LORENE is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with LORENE; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 * 00019 */ 00020 00021 char ope_poisson_pseudo_1d_C[] = "$Header: /cvsroot/Lorene/C++/Source/Ope_elementary/Ope_poisson_pseudo_1d/ope_poisson_pseudo_1d.C,v 1.1 2004/08/24 09:14:48 p_grandclement Exp $" ; 00022 00023 /* 00024 * $Id: ope_poisson_pseudo_1d.C,v 1.1 2004/08/24 09:14:48 p_grandclement Exp $ 00025 * $Log: ope_poisson_pseudo_1d.C,v $ 00026 * Revision 1.1 2004/08/24 09:14:48 p_grandclement 00027 * Addition of some new operators, like Poisson in 2d... It now requieres the 00028 * GSL library to work. 00029 * 00030 * Also, the way a variable change is stored by a Param_elliptic is changed and 00031 * no longer uses Change_var but rather 2 Scalars. The codes using that feature 00032 * will requiere some modification. (It should concern only the ones about monopoles) 00033 * 00034 * 00035 * $Header: /cvsroot/Lorene/C++/Source/Ope_elementary/Ope_poisson_pseudo_1d/ope_poisson_pseudo_1d.C,v 1.1 2004/08/24 09:14:48 p_grandclement Exp $ 00036 * 00037 */ 00038 00039 #include "proto.h" 00040 #include "ope_elementary.h" 00041 00042 // Standard constructor : 00043 Ope_poisson_pseudo_1d::Ope_poisson_pseudo_1d (int nbr, int baser, 00044 double alf, double bet, int lq): 00045 Ope_elementary(nbr, baser, alf, bet), l_quant (lq) { 00046 } 00047 00048 // Constructor by copy : 00049 Ope_poisson_pseudo_1d::Ope_poisson_pseudo_1d (const Ope_poisson_pseudo_1d& so) : 00050 Ope_elementary(so), 00051 l_quant (so.l_quant) { 00052 } 00053 00054 // Destructor : 00055 Ope_poisson_pseudo_1d::~Ope_poisson_pseudo_1d() {} 00056 00057 void Ope_poisson_pseudo_1d::inc_l_quant() { 00058 00059 cout << "inc_l_quant not implemented for this operator." << endl ; 00060 abort() ; 00061 } 00062 00063 void Ope_poisson_pseudo_1d::dec_l_quant() { 00064 00065 cout << "dec_l_quant not implemented for this operator." << endl ; 00066 abort() ; 00067 }
1.4.6