Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // -*- C++ -*-
0002 // $Id: 
0003 //---------------------VoigtProfile----------------------------------------//
0004 //                                                                          //
0005 //                                                                          //
0006 // Joe Boudreau, June 2011                                                  //
0007 //                                                                          //
0008 //--------------------------------------------------------------------------//
0009 #ifndef VoigtProfile_h
0010 #define VoigtProfile_h 1
0011 #include "CLHEP/GenericFunctions/AbsFunction.hh"
0012 #include "CLHEP/GenericFunctions/Parameter.hh"
0013 #include "CLHEP/GenericFunctions/IncompleteGamma.hh"
0014 namespace Genfun {
0015 
0016   /**
0017    * @author
0018    * @ingroup genfun
0019    */
0020   class VoigtProfile : public AbsFunction  {
0021     
0022     FUNCTION_OBJECT_DEF(VoigtProfile)
0023       
0024       public:
0025     
0026     // Constructor
0027     VoigtProfile();
0028     
0029     // Copy constructor
0030     VoigtProfile(const VoigtProfile &right);
0031     
0032     // Destructor
0033     virtual ~VoigtProfile();
0034     
0035     // Retreive function value
0036     virtual double operator ()(double argument) const override;
0037     virtual double operator ()(const Argument & a) const override {return operator() (a[0]);}
0038     
0039     // Get the paramter alpha
0040     Parameter & mass(); 
0041 
0042     // Get the parameter beta
0043     Parameter & width(); 
0044 
0045     // Get the parameter beta
0046     Parameter & sigma(); 
0047 
0048     
0049   private:
0050     
0051     // It is illegal to assign an adjustable constant
0052     const VoigtProfile & operator=(const VoigtProfile &right);
0053     
0054     // Here are the two parameters alpha and beta:
0055 
0056     Parameter       _mass;
0057     Parameter       _width;
0058     Parameter       _sigma;
0059 
0060 
0061   };
0062 } // namespace Genfun
0063 #endif