LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Public Types | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
lsst::afw::math::LanczosFunction1< ReturnT > Class Template Reference

1-dimensional Lanczos function More...

#include <FunctionLibrary.h>

Inheritance diagram for lsst::afw::math::LanczosFunction1< ReturnT >:
lsst::afw::math::Function1< ReturnT > lsst::afw::table::io::PersistableFacade< Function1< ReturnT > > lsst::afw::math::Function< ReturnT > lsst::daf::base::Citizen lsst::afw::table::io::PersistableFacade< Function< ReturnT > > lsst::afw::table::io::Persistable

Public Types

typedef Function1< ReturnT >::Ptr Function1Ptr
 
- Public Types inherited from lsst::afw::math::Function1< ReturnT >
typedef boost::shared_ptr
< Function1< ReturnT > > 
Ptr
 
- Public Types inherited from lsst::daf::base::Citizen
enum  { magicSentinel = 0xdeadbeef }
 
typedef unsigned long memId
 Type of the block's ID. More...
 
typedef memId(* memNewCallback )(const memId cid)
 A function used to register a callback. More...
 
typedef memId(* memCallback )(const Citizen *ptr)
 

Public Member Functions

 LanczosFunction1 (unsigned int n, double xOffset=0.0)
 Construct a Lanczos function of specified order and x,y offset. More...
 
virtual ~LanczosFunction1 ()
 
virtual Function1Ptr clone () const
 Return a pointer to a deep copy of this function. More...
 
virtual ReturnT operator() (double x) const
 
unsigned int getOrder () const
 Get the order of the Lanczos function. More...
 
virtual std::string toString (std::string const &prefix) const
 Return a string representation of the function. More...
 
- Public Member Functions inherited from lsst::afw::math::Function1< ReturnT >
 Function1 (unsigned int nParams)
 Construct a Function1 given the number of function parameters. More...
 
 Function1 (std::vector< double > const &params)
 Construct a Function1 given the function parameters. More...
 
virtual ~Function1 ()
 
virtual void computeCache (int const n)
 
- Public Member Functions inherited from lsst::afw::math::Function< ReturnT >
 Function (unsigned int nParams)
 Construct a Function given the number of function parameters. More...
 
 Function (std::vector< double > const &params)
 Construct a Function given the function parameters. More...
 
virtual ~Function ()
 
unsigned int getNParameters () const
 Return the number of function parameters. More...
 
virtual double getParameter (unsigned int ind) const
 Get one function parameter without range checking. More...
 
std::vector< double > const & getParameters () const
 Return all function parameters. More...
 
virtual bool isLinearCombination () const
 Is the function a linear combination of its parameters? More...
 
void setParameter (unsigned int ind, double newValue)
 Set one function parameter without range checking. More...
 
void setParameters (std::vector< double > const &params)
 Set all function parameters. More...
 
- Public Member Functions inherited from lsst::daf::base::Citizen
 Citizen (const std::type_info &)
 
 Citizen (Citizen const &)
 
 ~Citizen ()
 
Citizenoperator= (Citizen const &)
 
std::string repr () const
 Return a string representation of a Citizen. More...
 
void markPersistent (void)
 Mark a Citizen as persistent and not destroyed until process end. More...
 
memId getId () const
 Return the Citizen's ID. More...
 
- Public Member Functions inherited from lsst::afw::table::io::Persistable
void writeFits (std::string const &fileName, std::string const &mode="w") const
 Write the object to a regular FITS file. More...
 
void writeFits (fits::MemFileManager &manager, std::string const &mode="w") const
 Write the object to a FITS image in memory. More...
 
void writeFits (fits::Fits &fitsfile) const
 Write the object to an already-open FITS object. More...
 
virtual bool isPersistable () const
 Return true if this particular object can be persisted using afw::table::io. More...
 
virtual ~Persistable ()
 

Protected Member Functions

 LanczosFunction1 ()
 
- Protected Member Functions inherited from lsst::afw::math::Function1< ReturnT >
 Function1 ()
 
- Protected Member Functions inherited from lsst::afw::math::Function< ReturnT >
virtual std::string getPythonModule () const
 Return the fully-qualified Python module that should be imported to guarantee that its factory is registered. More...
 
 Function ()
 
- Protected Member Functions inherited from lsst::afw::table::io::Persistable
virtual std::string getPersistenceName () const
 Return the unique name used to persist this object and look up its factory. More...
 
virtual void write (OutputArchiveHandle &handle) const
 Write the object to one or more catalogs. More...
 
 Persistable ()
 
 Persistable (Persistable const &other)
 
void operator= (Persistable const &other)
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, unsigned int const version)
 

Private Attributes

double _invN
 

Friends

class boost::serialization::access
 

Additional Inherited Members

- Static Public Member Functions inherited from lsst::afw::table::io::PersistableFacade< Function1< ReturnT > >
static boost::shared_ptr
< Function1< ReturnT > > 
readFits (fits::Fits &fitsfile)
 Read an object from an already open FITS object. More...
 
static boost::shared_ptr
< Function1< ReturnT > > 
readFits (std::string const &fileName, int hdu=0)
 Read an object from a regular FITS file. More...
 
static boost::shared_ptr
< Function1< ReturnT > > 
readFits (fits::MemFileManager &manager, int hdu=0)
 Read an object from a FITS file in memory. More...
 
- Static Public Member Functions inherited from lsst::daf::base::Citizen
static bool hasBeenCorrupted ()
 Check all allocated blocks for corruption. More...
 
static memId getNextMemId ()
 Return the memId of the next object to be allocated. More...
 
static int init ()
 Called once when the memory system is being initialised. More...
 
static int census (int, memId startingMemId=0)
 How many active Citizens are there? More...
 
static void census (std::ostream &stream, memId startingMemId=0)
 Print a list of all active Citizens to stream, sorted by ID. More...
 
static const std::vector
< const Citizen * > * 
census ()
 Return a (newly allocated) std::vector of active Citizens sorted by ID. More...
 
static memId setNewCallbackId (memId id)
 Call the NewCallback when block is allocated. More...
 
static memId setDeleteCallbackId (memId id)
 Call the current DeleteCallback when block is deleted. More...
 
static memNewCallback setNewCallback (memNewCallback func)
 Set the NewCallback function. More...
 
static memCallback setDeleteCallback (memCallback func)
 Set the DeleteCallback function. More...
 
static memCallback setCorruptionCallback (memCallback func)
 Set the CorruptionCallback function. More...
 
- Static Public Member Functions inherited from lsst::afw::table::io::PersistableFacade< Function< ReturnT > >
static boost::shared_ptr
< Function< ReturnT > > 
readFits (fits::Fits &fitsfile)
 Read an object from an already open FITS object. More...
 
static boost::shared_ptr
< Function< ReturnT > > 
readFits (std::string const &fileName, int hdu=0)
 Read an object from a regular FITS file. More...
 
static boost::shared_ptr
< Function< ReturnT > > 
readFits (fits::MemFileManager &manager, int hdu=0)
 Read an object from a FITS file in memory. More...
 
- Protected Types inherited from lsst::afw::table::io::Persistable
typedef io::OutputArchiveHandle OutputArchiveHandle
 
- Protected Attributes inherited from lsst::afw::math::Function< ReturnT >
std::vector< double > _params
 
bool _isCacheValid
 

Detailed Description

template<typename ReturnT>
class lsst::afw::math::LanczosFunction1< ReturnT >

1-dimensional Lanczos function

f(x) = sinc(pi x') sinc(pi x' / n) where x' = x - xOffset and coefficient c0 = xOffset

Warning: the Lanczos function is sometimes forced to 0 if |x'| > n but this implementation does not perform that truncation so as to improve Lanczos kernels.

Definition at line 1049 of file FunctionLibrary.h.

Member Typedef Documentation

template<typename ReturnT >
typedef Function1<ReturnT>::Ptr lsst::afw::math::LanczosFunction1< ReturnT >::Function1Ptr

Definition at line 1051 of file FunctionLibrary.h.

Constructor & Destructor Documentation

template<typename ReturnT >
lsst::afw::math::LanczosFunction1< ReturnT >::LanczosFunction1 ( unsigned int  n,
double  xOffset = 0.0 
)
inlineexplicit

Construct a Lanczos function of specified order and x,y offset.

Parameters
norder of Lanczos function
xOffsetx offset

Definition at line 1056 of file FunctionLibrary.h.

1059  :
1060  Function1<ReturnT>(1),
1061  _invN(1.0/static_cast<double>(n))
1062  {
1063  this->_params[0] = xOffset;
1064  }
std::vector< double > _params
Definition: Function.h:204
template<typename ReturnT >
virtual lsst::afw::math::LanczosFunction1< ReturnT >::~LanczosFunction1 ( )
inlinevirtual

Definition at line 1066 of file FunctionLibrary.h.

1066 {}
template<typename ReturnT >
lsst::afw::math::LanczosFunction1< ReturnT >::LanczosFunction1 ( )
inlineexplicitprotected

Definition at line 1101 of file FunctionLibrary.h.

1101 : Function1<ReturnT>(1), _invN(1.0) {}

Member Function Documentation

template<typename ReturnT >
virtual Function1Ptr lsst::afw::math::LanczosFunction1< ReturnT >::clone ( ) const
inlinevirtual

Return a pointer to a deep copy of this function.

This function exists instead of a copy constructor so one can obtain a copy of an actual function instead of a useless copy of the base class.

Every concrete subclass must override this method.

Returns
a pointer to a deep copy of the function

Implements lsst::afw::math::Function1< ReturnT >.

Definition at line 1068 of file FunctionLibrary.h.

1068  {
1069  return Function1Ptr(new LanczosFunction1(this->getOrder(), this->_params[0]));
1070  }
std::vector< double > _params
Definition: Function.h:204
Function1< ReturnT >::Ptr Function1Ptr
unsigned int getOrder() const
Get the order of the Lanczos function.
template<typename ReturnT >
unsigned int lsst::afw::math::LanczosFunction1< ReturnT >::getOrder ( ) const
inline

Get the order of the Lanczos function.

Definition at line 1085 of file FunctionLibrary.h.

1085  {
1086  return static_cast<unsigned int>(0.5 + (1.0 / _invN));
1087  };
template<typename ReturnT >
virtual ReturnT lsst::afw::math::LanczosFunction1< ReturnT >::operator() ( double  x) const
inlinevirtual

Implements lsst::afw::math::Function1< ReturnT >.

Definition at line 1072 of file FunctionLibrary.h.

1072  {
1073  double xArg1 = (x - this->_params[0]) * lsst::afw::geom::PI;
1074  double xArg2 = xArg1 * _invN;
1075  if (std::fabs(xArg1) > 1.0e-5) {
1076  return static_cast<ReturnT>(std::sin(xArg1) * std::sin(xArg2) / (xArg1 * xArg2));
1077  } else {
1078  return static_cast<ReturnT>(1);
1079  }
1080  }
std::vector< double > _params
Definition: Function.h:204
double const PI
The ratio of a circle&#39;s circumference to diameter.
Definition: Angle.h:18
double x
template<typename ReturnT >
template<class Archive >
void lsst::afw::math::LanczosFunction1< ReturnT >::serialize ( Archive &  ar,
unsigned int const  version 
)
inlineprivate

Definition at line 1106 of file FunctionLibrary.h.

1106  {
1107  ar & make_nvp("fn1", boost::serialization::base_object<Function1<ReturnT> >(*this));
1108  ar & make_nvp("invN", this->_invN);
1109  }
template<typename ReturnT >
virtual std::string lsst::afw::math::LanczosFunction1< ReturnT >::toString ( std::string const &  ) const
inlinevirtual

Return a string representation of the function.

Returns
a string representation of the function

Reimplemented from lsst::afw::math::Function1< ReturnT >.

Definition at line 1089 of file FunctionLibrary.h.

1089  {
1090  std::ostringstream os;
1091  os << "LanczosFunction1 [" << this->getOrder() << "]: ";;
1092  os << Function1<ReturnT>::toString(prefix);
1093  return os.str();
1094  }
unsigned int getOrder() const
Get the order of the Lanczos function.

Friends And Related Function Documentation

template<typename ReturnT >
friend class boost::serialization::access
friend

Definition at line 1104 of file FunctionLibrary.h.

Member Data Documentation

template<typename ReturnT >
double lsst::afw::math::LanczosFunction1< ReturnT >::_invN
private

Definition at line 1097 of file FunctionLibrary.h.


The documentation for this class was generated from the following file: