Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
Public 멤버 함수 | Protected 속성 | Private 멤버 함수 | 모든 멤버 목록
c2_typed_ptr< float_type, c2_class > 클래스 템플릿 참조

#include <c2_function.hh>

c2_typed_ptr< float_type, c2_class >에 대한 상속 다이어그램 :
c2_const_ptr< float_type >

Public 멤버 함수

 c2_typed_ptr ()
 construct the container with no function 더 자세히 ...
 
 c2_typed_ptr (c2_class< float_type > &f)
 construct the container with a pre-defined function 더 자세히 ...
 
 c2_typed_ptr (const c2_typed_ptr< float_type, c2_class > &src)
 copy constructor 더 자세히 ...
 
c2_class< float_type > & get () const
 get a reference to our owned function 더 자세히 ...
 
c2_class< float_type > * operator-> () const
 get a checked pointer to our owned function 더 자세히 ...
 
c2_class< float_type > * get_ptr () const
 get an unchecked pointer to our owned function 더 자세히 ...
 
 operator c2_class< float_type > & () const
 
void operator= (const c2_typed_ptr< float_type, c2_class > &f)
 fill the container from another container 더 자세히 ...
 
void operator= (c2_class< float_type > &f)
 fill the container with a function 더 자세히 ...
 
void set_function (const c2_function< float_type > *f)
 
void release_for_return ()
 release the function without destroying it, so it can be returned from a function 더 자세히 ...
 
void unset_function (void)
 clear the function 더 자세히 ...
 
bool valid () const
 check if we have a valid function 더 자세히 ...
 
 operator const c2_function< float_type > & () const
 type coercion operator which lets us use a pointer as if it were a const c2_function 더 자세히 ...
 
float_type operator() (float_type x) const
 convenience operator to make us look like a function 더 자세히 ...
 
float_type operator() (float_type x, float_type *yprime, float_type *yprime2) const
 convenience operator to make us look like a function 더 자세히 ...
 
c2_composed_function_p
< float_type > & 
operator() (const c2_function< float_type > &inner) const
 compose this function outside another. 더 자세히 ...
 
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. 더 자세히 ...
 
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
 

Protected 속성

const c2_function< float_type > * func
 

Private 멤버 함수

void operator= (const c2_const_ptr< float_type > &)
 
void operator= (const c2_function< float_type > &)
 

상세한 설명

template<typename float_type, template< typename > class c2_class>
class c2_typed_ptr< float_type, c2_class >

c2_function.hh 파일의 837 번째 라인에서 정의되었습니다.

생성자 & 소멸자 문서화

template<typename float_type, template< typename > class c2_class>
c2_typed_ptr< float_type, c2_class >::c2_typed_ptr ( )
inline

construct the container with no function

c2_function.hh 파일의 841 번째 라인에서 정의되었습니다.

template<typename float_type, template< typename > class c2_class>
c2_typed_ptr< float_type, c2_class >::c2_typed_ptr ( c2_class< float_type > &  f)
inline

construct the container with a pre-defined function

매개변수
fthe function to store

c2_function.hh 파일의 844 번째 라인에서 정의되었습니다.

다음을 참조함 : c2_const_ptr< float_type >::set_function().

template<typename float_type, template< typename > class c2_class>
c2_typed_ptr< float_type, c2_class >::c2_typed_ptr ( const c2_typed_ptr< float_type, c2_class > &  src)
inline

copy constructor

매개변수
srcthe container to copy

c2_function.hh 파일의 848 번째 라인에서 정의되었습니다.

다음을 참조함 : c2_typed_ptr< float_type, c2_class >::get_ptr(), c2_const_ptr< float_type >::set_function().

멤버 함수 문서화

template<typename float_type, template< typename > class c2_class>
c2_class<float_type>& c2_typed_ptr< float_type, c2_class >::get ( ) const
inline

get a reference to our owned function

c2_function.hh 파일의 852 번째 라인에서 정의되었습니다.

다음을 참조함 : c2_const_ptr< float_type >::get().

template<typename float_type, template< typename > class c2_class>
c2_class<float_type>* c2_typed_ptr< float_type, c2_class >::get_ptr ( ) const
inline

get an unchecked pointer to our owned function

c2_function.hh 파일의 861 번째 라인에서 정의되었습니다.

다음을 참조함 : c2_const_ptr< float_type >::func.

다음에 의해서 참조됨 : c2_typed_ptr< float_type, c2_class >::c2_typed_ptr(), c2_typed_ptr< float_type, c2_class >::operator=().

template<typename float_type, template< typename > class c2_class>
c2_typed_ptr< float_type, c2_class >::operator c2_class< float_type > & ( ) const
inline

c2_function.hh 파일의 865 번째 라인에서 정의되었습니다.

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

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

c2_function.hh 파일의 750 번째 라인에서 정의되었습니다.

template<typename float_type>
float_type c2_const_ptr< float_type >::operator() ( float_type  x) const
inlineinherited

convenience operator to make us look like a function

매개변수
xthe value at which to evaluate the contained function
반환값
the evaluated function

c2_function.hh 파일의 756 번째 라인에서 정의되었습니다.

template<typename float_type>
float_type c2_const_ptr< float_type >::operator() ( float_type  x,
float_type *  yprime,
float_type *  yprime2 
) const
inlineinherited

convenience operator to make us look like a function

매개변수
xthe value at which to evaluate the contained function
yprimethe derivative
yprime2the second derivative
반환값
the evaluated function
주의
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.

c2_function.hh 파일의 767 번째 라인에서 정의되었습니다.

template<typename float_type>
c2_composed_function_p<float_type>& c2_const_ptr< float_type >::operator() ( const c2_function< float_type > &  inner) const
inlineinherited

compose this function outside another.

매개변수
innerthe inner function
반환값
the composed function

c2_function.hh 파일의 790 번째 라인에서 정의되었습니다.

template<typename float_type>
c2_product_p<float_type>& c2_const_ptr< float_type >::operator* ( const c2_function< float_type > &  rhs) const
inlineinherited

c2_function.hh 파일의 780 번째 라인에서 정의되었습니다.

template<typename float_type>
c2_sum_p<float_type>& c2_const_ptr< float_type >::operator+ ( const c2_function< float_type > &  rhs) const
inlineinherited

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

매개변수
rhsthe right-hand term of the sum
반환값
a new c2_function

c2_function.hh 파일의 774 번째 라인에서 정의되었습니다.

template<typename float_type>
c2_diff_p<float_type>& c2_const_ptr< float_type >::operator- ( const c2_function< float_type > &  rhs) const
inlineinherited

c2_function.hh 파일의 777 번째 라인에서 정의되었습니다.

template<typename float_type, template< typename > class c2_class>
c2_class<float_type>* c2_typed_ptr< float_type, c2_class >::operator-> ( ) const
inline

get a checked pointer to our owned function

c2_function.hh 파일의 858 번째 라인에서 정의되었습니다.

template<typename float_type>
c2_ratio_p<float_type>& c2_const_ptr< float_type >::operator/ ( const c2_function< float_type > &  rhs) const
inlineinherited

c2_function.hh 파일의 783 번째 라인에서 정의되었습니다.

template<typename float_type, template< typename > class c2_class>
void c2_typed_ptr< float_type, c2_class >::operator= ( const c2_typed_ptr< float_type, c2_class > &  f)
inline

fill the container from another container

매개변수
fthe container to copy

c2_function.hh 파일의 868 번째 라인에서 정의되었습니다.

다음을 참조함 : c2_typed_ptr< float_type, c2_class >::get_ptr(), c2_const_ptr< float_type >::set_function().

template<typename float_type, template< typename > class c2_class>
void c2_typed_ptr< float_type, c2_class >::operator= ( c2_class< float_type > &  f)
inline

fill the container with a function

매개변수
fthe function

c2_function.hh 파일의 872 번째 라인에서 정의되었습니다.

다음을 참조함 : c2_const_ptr< float_type >::set_function().

template<typename float_type, template< typename > class c2_class>
void c2_typed_ptr< float_type, c2_class >::operator= ( const c2_const_ptr< float_type > &  )
inlineprivate

c2_function.hh 파일의 875 번째 라인에서 정의되었습니다.

template<typename float_type, template< typename > class c2_class>
void c2_typed_ptr< float_type, c2_class >::operator= ( const c2_function< float_type > &  )
inlineprivate

c2_function.hh 파일의 876 번째 라인에서 정의되었습니다.

template<typename float_type>
void c2_const_ptr< float_type >::release_for_return ( )
inlineinherited

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.

c2_function.hh 파일의 720 번째 라인에서 정의되었습니다.

다음에 의해서 참조됨 : LJZBLScreening().

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

clear the function

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

c2_function.hh 파일의 730 번째 라인에서 정의되었습니다.

template<typename float_type>
bool c2_const_ptr< float_type >::valid ( ) const
inlineinherited

check if we have a valid function

c2_function.hh 파일의 746 번째 라인에서 정의되었습니다.

멤버 데이타 문서화

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

이 클래스에 대한 문서화 페이지는 다음의 파일로부터 생성되었습니다.: