Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
c2_const_ptr< float_type > Class Template Reference

create a container for a c2_function which handles the reference counting. It is useful as a smart container to hold a c2_function and keep the reference count correct. The recommended way for a class to store a c2_function which is handed in from the outside is for it to have a c2_ptr member into which the passed-in function is stored. This way, when the class instance is deleted, it will automatically dereference any function which it was handed. More...

#include <c2_function.hh>

Inheritance diagram for c2_const_ptr< float_type >:

Public Member Functions

 c2_const_ptr ()
 construct the container with no function More...
 
 c2_const_ptr (const c2_function< float_type > &f)
 construct the container with a pre-defined function More...
 
 c2_const_ptr (const c2_const_ptr< float_type > &src)
 copy constructor More...
 
void set_function (const c2_function< float_type > *f)
 
const c2_const_ptr< float_type > & operator= (const c2_const_ptr< float_type > &f)
 fill the container from another container More...
 
const c2_function< float_type > & operator= (const c2_function< float_type > &f)
 fill the container with a function More...
 
void release_for_return ()
 release the function without destroying it, so it can be returned from a function More...
 
void unset_function (void)
 clear the function More...
 
 ~c2_const_ptr ()
 destructor More...
 
const c2_function< float_type > & get () const
 get a reference to our owned function More...
 
const c2_function< float_type > * get_ptr () const
 get an unchecked pointer to our owned function More...
 
const c2_function< float_type > * operator-> () const
 get a checked pointer to our owned function More...
 
bool valid () const
 check if we have a valid function More...
 
 operator const c2_function< float_type > & () const
 type coercion operator which lets us use a pointer as if it were a const c2_function More...
 
float_type operator() (float_type x) const
 convenience operator to make us look like a function More...
 
float_type operator() (float_type x, float_type *yprime, float_type *yprime2) const
 convenience operator to make us look like a function More...
 
c2_sum_p< float_type > & operator+ (const c2_function< float_type > &rhs) const
 factory function to create a c2_sum_p from a regular algebraic expression. More...
 
c2_diff_p< float_type > & operator- (const c2_function< float_type > &rhs) const
 
c2_product_p< float_type > & operator* (const c2_function< float_type > &rhs) const
 
c2_ratio_p< float_type > & operator/ (const c2_function< float_type > &rhs) const
 
c2_composed_function_p
< float_type > & 
operator() (const c2_function< float_type > &inner) const
 compose this function outside another. More...
 

Protected Attributes

const c2_function< float_type > * func
 

Detailed Description

template<typename float_type>
class c2_const_ptr< float_type >

create a container for a c2_function which handles the reference counting. It is useful as a smart container to hold a c2_function and keep the reference count correct. The recommended way for a class to store a c2_function which is handed in from the outside is for it to have a c2_ptr member into which the passed-in function is stored. This way, when the class instance is deleted, it will automatically dereference any function which it was handed.

This class contains a copy constructor and operator=, to make it fairly easy to make a std::vector of these objects, and have it work as expected.

Definition at line 681 of file c2_function.hh.

Constructor & Destructor Documentation

template<typename float_type>
c2_const_ptr< float_type >::c2_const_ptr ( )
inline

construct the container with no function

Definition at line 684 of file c2_function.hh.

684 : func(0) {}
const c2_function< float_type > * func
Definition: c2_function.hh:795
template<typename float_type>
c2_const_ptr< float_type >::c2_const_ptr ( const c2_function< float_type > &  f)
inline

construct the container with a pre-defined function

Parameters
fthe function to store

Definition at line 687 of file c2_function.hh.

687  : func(0)
688  { this->set_function(&f); }
const c2_function< float_type > * func
Definition: c2_function.hh:795
void set_function(const c2_function< float_type > *f)
Definition: c2_function.hh:693
template<typename float_type>
c2_const_ptr< float_type >::c2_const_ptr ( const c2_const_ptr< float_type > &  src)
inline

copy constructor

Parameters
srcthe container to copy

Definition at line 691 of file c2_function.hh.

691  : func(0)
692  { this->set_function(src.get_ptr()); }
const c2_function< float_type > * func
Definition: c2_function.hh:795
const c2_function< float_type > * get_ptr() const
get an unchecked pointer to our owned function
Definition: c2_function.hh:741
void set_function(const c2_function< float_type > *f)
Definition: c2_function.hh:693
template<typename float_type>
c2_const_ptr< float_type >::~c2_const_ptr ( )
inline

destructor

Definition at line 732 of file c2_function.hh.

732 { this->set_function(0); }
void set_function(const c2_function< float_type > *f)
Definition: c2_function.hh:693

Member Function Documentation

template<typename float_type>
const c2_function<float_type>& c2_const_ptr< float_type >::get ( ) const
inline

get a reference to our owned function

Definition at line 735 of file c2_function.hh.

736  {
737  if(!func) throw c2_exception("c2_ptr accessed uninitialized");
738  return *func;
739  }
const c2_function< float_type > * func
Definition: c2_function.hh:795
the exception class for c2_function operations.
Definition: c2_function.hh:65

Here is the caller graph for this function:

template<typename float_type>
const c2_function<float_type>* c2_const_ptr< float_type >::get_ptr ( ) const
inline

get an unchecked pointer to our owned function

Definition at line 741 of file c2_function.hh.

741 { return func; }
const c2_function< float_type > * func
Definition: c2_function.hh:795

Here is the caller graph for this function:

template<typename float_type>
c2_const_ptr< float_type >::operator const c2_function< float_type > & ( ) const
inline

type coercion operator which lets us use a pointer as if it were a const c2_function

Definition at line 750 of file c2_function.hh.

750 { return this->get(); }
template<typename float_type>
float_type c2_const_ptr< float_type >::operator() ( float_type  x) const
inline

convenience operator to make us look like a function

Parameters
xthe value at which to evaluate the contained function
Returns
the evaluated function

Definition at line 756 of file c2_function.hh.

757  { return get()(x); }
tuple x
Definition: test.py:50
template<typename float_type>
float_type c2_const_ptr< float_type >::operator() ( float_type  x,
float_type *  yprime,
float_type *  yprime2 
) const
inline

convenience operator to make us look like a function

Parameters
xthe value at which to evaluate the contained function
yprimethe derivative
yprime2the second derivative
Returns
the evaluated function
Note
If you using this repeatedly, do const c2_function<float_type> &func=ptr; and use func(x). Calling this operator wastes some time, since it checks the alidity of the pointer every time.

Definition at line 767 of file c2_function.hh.

769  { return get().value_with_derivatives(x, yprime, yprime2); }
tuple x
Definition: test.py:50
template<typename float_type>
c2_composed_function_p<float_type>& c2_const_ptr< float_type >::operator() ( const c2_function< float_type > &  inner) const
inline

compose this function outside another.

Parameters
innerthe inner function
Returns
the composed function

Definition at line 790 of file c2_function.hh.

792  { return *new c2_composed_function_p<float_type>(get(), inner); }
template<typename float_type>
c2_product_p<float_type>& c2_const_ptr< float_type >::operator* ( const c2_function< float_type > &  rhs) const
inline

Definition at line 780 of file c2_function.hh.

782  { return *new c2_product_p<float_type>(get(), rhs); }
create a c2_function which is the product of two other c2_functions.This should always be constructed...
Definition: c2_function.hh:82
template<typename float_type>
c2_sum_p<float_type>& c2_const_ptr< float_type >::operator+ ( const c2_function< float_type > &  rhs) const
inline

factory function to create a c2_sum_p from a regular algebraic expression.

Parameters
rhsthe right-hand term of the sum
Returns
a new c2_function

Definition at line 774 of file c2_function.hh.

776  { return *new c2_sum_p<float_type>(get(), rhs); }
template<typename float_type>
c2_diff_p<float_type>& c2_const_ptr< float_type >::operator- ( const c2_function< float_type > &  rhs) const
inline

Definition at line 777 of file c2_function.hh.

779  { return *new c2_diff_p<float_type>(get(), rhs); }
template<typename float_type>
const c2_function<float_type>* c2_const_ptr< float_type >::operator-> ( ) const
inline

get a checked pointer to our owned function

Definition at line 743 of file c2_function.hh.

744  { return &get(); }
template<typename float_type>
c2_ratio_p<float_type>& c2_const_ptr< float_type >::operator/ ( const c2_function< float_type > &  rhs) const
inline

Definition at line 783 of file c2_function.hh.

785  { return *new c2_ratio_p<float_type>(get(), rhs); }
create a c2_function which is the ratio of two other c2_functions.This should always be constructed u...
Definition: c2_function.hh:83
template<typename float_type>
const c2_const_ptr<float_type>& c2_const_ptr< float_type >::operator= ( const c2_const_ptr< float_type > &  f)
inline

fill the container from another container

Parameters
fthe container to copy

Definition at line 703 of file c2_function.hh.

704  { this->set_function(f.get_ptr()); return f; }
const c2_function< float_type > * get_ptr() const
get an unchecked pointer to our owned function
Definition: c2_function.hh:741
void set_function(const c2_function< float_type > *f)
Definition: c2_function.hh:693
template<typename float_type>
const c2_function<float_type>& c2_const_ptr< float_type >::operator= ( const c2_function< float_type > &  f)
inline

fill the container with a function

Parameters
fthe function

Definition at line 708 of file c2_function.hh.

709  { this->set_function(&f); return f; }
void set_function(const c2_function< float_type > *f)
Definition: c2_function.hh:693
template<typename float_type>
void c2_const_ptr< float_type >::release_for_return ( )
inline

release the function without destroying it, so it can be returned from a function

This is usually the very last line of a function before the return statement, so that any exceptions that happen during execution of the function will cause proper cleanup. Once the function has been released from its container this way, it is an orhpaned object until the caller claims it, so it could get lost if an exception happens.

Definition at line 720 of file c2_function.hh.

721  {
722  if(func) func->release_ownership_for_return();
723  func=0;
724  }
const c2_function< float_type > * func
Definition: c2_function.hh:795

Here is the caller graph for this function:

template<typename float_type>
void c2_const_ptr< float_type >::set_function ( const c2_function< float_type > *  f)
inline

Definition at line 693 of file c2_function.hh.

694  {
695  if(func) func->release_ownership();
696  func=f;
697  if(func) func->claim_ownership();
698  }
const c2_function< float_type > * func
Definition: c2_function.hh:795

Here is the caller graph for this function:

template<typename float_type>
void c2_const_ptr< float_type >::unset_function ( void  )
inline

clear the function

Any attempt to use this c2_plugin_function_p throws an exception if the saved function is cleared.

Definition at line 730 of file c2_function.hh.

730 { this->set_function(0); }
void set_function(const c2_function< float_type > *f)
Definition: c2_function.hh:693
template<typename float_type>
bool c2_const_ptr< float_type >::valid ( ) const
inline

check if we have a valid function

Definition at line 746 of file c2_function.hh.

746 { return func != 0; }
const c2_function< float_type > * func
Definition: c2_function.hh:795

Member Data Documentation

template<typename float_type>
const c2_function<float_type>* c2_const_ptr< float_type >::func
protected

Definition at line 795 of file c2_function.hh.


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