The Gaudi Framework  v30r3 (a5ef0a68)
GaudiHandleProperty Class Reference

#include <GaudiKernel/Property.h>

Inheritance diagram for GaudiHandleProperty:
Collaboration diagram for GaudiHandleProperty:

Public Member Functions

 GaudiHandleProperty (std::string name, GaudiHandleBase &ref)
 
GaudiHandlePropertyoperator= (const GaudiHandleBase &value)
 
GaudiHandlePropertyclone () const override
 clones the current property More...
 
bool load (PropertyBase &destination) const override
 
bool assign (const PropertyBase &source) override
 
std::string toString () const override
 value -> string More...
 
void toStream (std::ostream &out) const override
 value -> stream More...
 
StatusCode fromString (const std::string &s) override
 string -> value More...
 
const GaudiHandleBasevalue () const
 
bool setValue (const GaudiHandleBase &value)
 
- Public Member Functions inherited from PropertyWithHandlers<>
PropertyBasedeclareReadHandler (std::function< void(PropertyBase &)> fun) override
 set new callback for reading More...
 
PropertyBasedeclareUpdateHandler (std::function< void(PropertyBase &)> fun) override
 set new callback for update More...
 
const std::function< void(PropertyBase &)> readCallBack () const override
 get a reference to the readCallBack More...
 
const std::function< void(PropertyBase &)> updateCallBack () const override
 get a reference to the updateCallBack More...
 
void useReadHandler () const
 use the call-back function at reading, if available More...
 
bool useUpdateHandler () override
 use the call-back function at update, if available More...
 
- Public Member Functions inherited from Gaudi::Details::PropertyBase
const std::string name () const
 property name More...
 
std::string documentation () const
 property documentation More...
 
const std::type_infotype_info () const
 property type-info More...
 
std::string type () const
 property type More...
 
virtual bool load (PropertyBase &dest) const =0
 export the property value to the destination More...
 
virtual bool assign (const PropertyBase &source)=0
 import the property value form the source More...
 
virtual PropertyBasedeclareReadHandler (std::function< void(PropertyBase &)> fun)=0
 set new callback for reading More...
 
virtual PropertyBasedeclareUpdateHandler (std::function< void(PropertyBase &)> fun)=0
 set new callback for update More...
 
template<class HT >
PropertyBasedeclareReadHandler (void(HT::*MF)(PropertyBase &), HT *instance)
 
template<class HT >
PropertyBasedeclareUpdateHandler (void(HT::*MF)(PropertyBase &), HT *instance)
 
virtual ~PropertyBase ()=default
 virtual destructor More...
 
void setName (std::string value)
 set the new value for the property name More...
 
void setDocumentation (std::string value)
 set the documentation string More...
 
virtual std::ostreamfillStream (std::ostream &) const
 the printout of the property value More...
 
void setOwnerType (const std::type_info &ownerType)
 set the type of the owner class (used for documentation) More...
 
template<class OWNER >
void setOwnerType ()
 set the type of the owner class (used for documentation) More...
 
const std::type_infoownerType () const
 get the type of the owner class (used for documentation) More...
 
std::string ownerTypeName () const
 get the string for the type of the owner class (used for documentation) More...
 

Private Attributes

GaudiHandleBasem_pValue
 Pointer to the real property. More...
 

Additional Inherited Members

- Protected Member Functions inherited from Gaudi::Details::PropertyBase
 PropertyBase (const std::type_info &type, std::string name="", std::string doc="")
 constructor from the property name and the type More...
 
 PropertyBase (std::string name, const std::type_info &type)
 constructor from the property name and the type More...
 
 PropertyBase (const PropertyBase &)=default
 copy constructor More...
 
PropertyBaseoperator= (const PropertyBase &)=default
 assignment operator More...
 

Detailed Description

Definition at line 899 of file Property.h.

Constructor & Destructor Documentation

GaudiHandleProperty::GaudiHandleProperty ( std::string  name,
GaudiHandleBase ref 
)

Definition at line 109 of file Property.cpp.

110  : PropertyWithHandlers( std::move( name_ ), typeid( GaudiHandleBase ) ), m_pValue( &ref )
111 {
113 }
const std::string name() const
property name
Definition: Property.h:40
Helper class to simplify the migration old properties deriving directly from PropertyBase.
Definition: Property.h:856
GaudiHandleBase * m_pValue
Pointer to the real property.
Definition: Property.h:933
T move(T...args)
void setPropertyName(std::string propName)
set name as used in declareProperty(name,gaudiHandle).
Definition: GaudiHandle.h:55
Base class to handles to be used in lieu of naked pointers to various Gaudi components.
Definition: GaudiHandle.h:94

Member Function Documentation

bool GaudiHandleProperty::assign ( const PropertyBase source)
inlineoverride

Definition at line 914 of file Property.h.

914 { return fromString( source.toString() ).isSuccess(); }
StatusCode fromString(const std::string &s) override
string -> value
Definition: Property.cpp:133
GaudiHandleProperty* GaudiHandleProperty::clone ( ) const
inlineoverridevirtual

clones the current property

Implements Gaudi::Details::PropertyBase.

Definition at line 910 of file Property.h.

910 { return new GaudiHandleProperty( *this ); }
GaudiHandleProperty(std::string name, GaudiHandleBase &ref)
Definition: Property.cpp:109
StatusCode GaudiHandleProperty::fromString ( const std::string value)
overridevirtual

string -> value

Implements Gaudi::Details::PropertyBase.

Definition at line 133 of file Property.cpp.

134 {
137  return StatusCode::SUCCESS;
138 }
void setTypeAndName(std::string myTypeAndName)
The component "type/name" string.
Definition: GaudiHandle.cpp:9
GaudiHandleBase * m_pValue
Pointer to the real property.
Definition: Property.h:933
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
bool useUpdateHandler() override
use the call-back function at update, if available
Definition: Property.h:885
string s
Definition: gaudirun.py:253
bool GaudiHandleProperty::load ( PropertyBase destination) const
inlineoverride

Definition at line 912 of file Property.h.

912 { return destination.assign( *this ); }
GaudiHandleProperty& GaudiHandleProperty::operator= ( const GaudiHandleBase value)
inline

Definition at line 904 of file Property.h.

905  {
906  setValue( value );
907  return *this;
908  }
bool setValue(const GaudiHandleBase &value)
Definition: Property.cpp:115
bool GaudiHandleProperty::setValue ( const GaudiHandleBase value)

Definition at line 115 of file Property.cpp.

116 {
117  m_pValue->setTypeAndName( value.typeAndName() );
118  return useUpdateHandler();
119 }
void setTypeAndName(std::string myTypeAndName)
The component "type/name" string.
Definition: GaudiHandle.cpp:9
GaudiHandleBase * m_pValue
Pointer to the real property.
Definition: Property.h:933
bool useUpdateHandler() override
use the call-back function at update, if available
Definition: Property.h:885
std::string typeAndName() const
The full type and name: "type/name".
Definition: GaudiHandle.h:122
void GaudiHandleProperty::toStream ( std::ostream out) const
overridevirtual

value -> stream

Implements Gaudi::Details::PropertyBase.

Definition at line 127 of file Property.cpp.

128 {
129  useReadHandler();
130  out << m_pValue->typeAndName();
131 }
GaudiHandleBase * m_pValue
Pointer to the real property.
Definition: Property.h:933
void useReadHandler() const
use the call-back function at reading, if available
Definition: Property.h:882
std::string typeAndName() const
The full type and name: "type/name".
Definition: GaudiHandle.h:122
std::string GaudiHandleProperty::toString ( ) const
overridevirtual

value -> string

Implements Gaudi::Details::PropertyBase.

Definition at line 121 of file Property.cpp.

122 {
123  useReadHandler();
124  return m_pValue->typeAndName();
125 }
GaudiHandleBase * m_pValue
Pointer to the real property.
Definition: Property.h:933
void useReadHandler() const
use the call-back function at reading, if available
Definition: Property.h:882
std::string typeAndName() const
The full type and name: "type/name".
Definition: GaudiHandle.h:122
const GaudiHandleBase& GaudiHandleProperty::value ( ) const
inline

Definition at line 922 of file Property.h.

923  {
924  useReadHandler();
925  return *m_pValue;
926  }
GaudiHandleBase * m_pValue
Pointer to the real property.
Definition: Property.h:933
void useReadHandler() const
use the call-back function at reading, if available
Definition: Property.h:882

Member Data Documentation

GaudiHandleBase* GaudiHandleProperty::m_pValue
private

Pointer to the real property.

Reference would be better, but ROOT does not support references yet

Definition at line 933 of file Property.h.


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