Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:54:36

0001 // -*- C++ -*-
0002 // $Id: SphericalNeumann.hh,v 1.2 2003/09/06 14:04:13 boudreau Exp $
0003 //---------------------SphericalNeumann-------------------------------------//
0004 //                                                                          //
0005 // Class SphericalNeumann.  An spherical neumann function of integral order //
0006 // Joe Boudreau, Petar Maksimovic, January 2000                             //
0007 //                                                                          //
0008 //--------------------------------------------------------------------------//
0009 #ifndef SphericalNeumann_h
0010 #define SphericalNeumann_h 1
0011 #include "CLHEP/GenericFunctions/AbsFunction.hh"
0012 #include "CLHEP/GenericFunctions/Parameter.hh"
0013 namespace Genfun {
0014 
0015   /**
0016    * @author
0017    * @ingroup genfun
0018    */
0019   class SphericalNeumann : public AbsFunction  {
0020 
0021     FUNCTION_OBJECT_DEF(SphericalNeumann)
0022 
0023       public:
0024 
0025     // Constructor
0026     SphericalNeumann(unsigned int l);
0027 
0028     // Copy constructor
0029     SphericalNeumann(const SphericalNeumann &right);
0030   
0031     // Destructor
0032     virtual ~SphericalNeumann();
0033   
0034     // Retreive function value
0035     virtual double operator ()(double argument) const override;
0036     virtual double operator ()(const Argument & a) const override {return operator() (a[0]);}
0037   
0038     // Get the integer variable l
0039     unsigned int l() const;
0040 
0041   private:
0042 
0043     // It is illegal to assign a spherical neumann
0044     const SphericalNeumann & operator=(const SphericalNeumann &right);
0045 
0046     // Here is the index
0047     unsigned int _l;
0048   
0049   };
0050 } // namespace Genfun
0051 #include "CLHEP/GenericFunctions/SphericalNeumann.icc"
0052 #endif