00001 /*============================================================================= 00002 * Product : OpenPL 00003 * File : plLogNormal.h 00004 * Author : Kamel Mekhnacha 00005 * Creation : Wed Jul 11 13:24:45 CEST 2004 00006 * 00007 *============================================================================= 00008 * (c) Copyright 2000, Centre National de la Recherche Scientifique, 00009 * all rights reserved 00010 *============================================================================= 00011 * 00012 *------------------------- Description --------------------------------------- 00013 * 00014 * 00015 *----------------------------------------------------------------------------- 00016 */ 00017 00018 #ifndef _plLogNormal_ 00019 #define _plLogNormal_ 00020 00021 #include <plMath.h> 00022 #include <plCKernel.h> 00023 00024 /***************************************************************************** 00025 * Classes Definitions 00026 *****************************************************************************/ 00027 00039 class plLogNormal : public plCKernel{ 00040 00041 public: 00042 00048 plLogNormal(const plVariablesConjunction& V, plFloat sigma, plFloat theta = PL_ZERO, plFloat m = PL_ONE); 00049 00051 virtual ~plLogNormal(){}; 00052 00053 00054 }; 00055 00056 00057 #endif 00058 00059 00060 00061