#include <GaudiCommonSvc/HistogramSvc.h>
|
| Helper (HistogramSvc *p) |
|
template<class A1 , class A3 > |
StatusCode | retrieve (A1 a1, A3 *&a3) |
|
template<class A1 , class A2 , class A3 > |
StatusCode | retrieve (A1 a1, A2 a2, A3 *&a3) |
|
template<class A1 , class A3 > |
StatusCode | find (A1 a1, A3 *&a3) |
|
template<class A1 , class A2 , class A3 > |
StatusCode | find (A1 a1, A2 a2, A3 *&a3) |
|
|
template<class R , class S , class T1 , class T2 > |
static R * | act (R *res, const S &b, void(T1::*pmf)(const T2 *, Double_t), Double_t scale) |
|
template<class R , class S , class T1 , class T2 > |
static R * | act (R *res, const S &b, Bool_t(T1::*pmf)(const T2 *, Double_t), Double_t scale) |
|
template<class R , class S , class T1 , class T2 > |
static R * | act (R *res, const S &b, void(T1::*pmf)(const T2 *)) |
|
template<class R , class S , class T1 , class T2 > |
static R * | act (R *res, const S &b, Bool_t(T1::*pmf)(const T2 *)) |
|
Definition at line 67 of file HistogramSvc.h.
template<class R , class S , class T1 , class T2 >
static R* HistogramSvc::Helper::act |
( |
R * |
res, |
|
|
const S & |
b, |
|
|
void(T1::*)(const T2 *, Double_t) |
pmf, |
|
|
Double_t |
scale |
|
) |
| |
|
inlinestatic |
Definition at line 103 of file HistogramSvc.h.
105 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
106 const auto h2 = Gaudi::getRepresentation<R, T2>( b );
108 ( h1->*pmf )( h2, scale );
template<class R , class S , class T1 , class T2 >
static R* HistogramSvc::Helper::act |
( |
R * |
res, |
|
|
const S & |
b, |
|
|
Bool_t(T1::*)(const T2 *, Double_t) |
pmf, |
|
|
Double_t |
scale |
|
) |
| |
|
inlinestatic |
Definition at line 114 of file HistogramSvc.h.
116 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
117 const auto h2 = Gaudi::getRepresentation<R, T2>( b );
119 ( h1->*pmf )( h2, scale );
template<class R , class S , class T1 , class T2 >
static R* HistogramSvc::Helper::act |
( |
R * |
res, |
|
|
const S & |
b, |
|
|
void(T1::*)(const T2 *) |
pmf |
|
) |
| |
|
inlinestatic |
Definition at line 125 of file HistogramSvc.h.
127 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
128 const auto h2 = Gaudi::getRepresentation<R, T2>( b );
template<class R , class S , class T1 , class T2 >
static R* HistogramSvc::Helper::act |
( |
R * |
res, |
|
|
const S & |
b, |
|
|
Bool_t(T1::*)(const T2 *) |
pmf |
|
) |
| |
|
inlinestatic |
Definition at line 136 of file HistogramSvc.h.
138 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
139 const auto h2 = Gaudi::getRepresentation<R, T2>( b );
template<class A1 , class A3 >
StatusCode HistogramSvc::Helper::find |
( |
A1 |
a1, |
|
|
A3 *& |
a3 |
|
) |
| |
|
inline |
Definition at line 87 of file HistogramSvc.h.
91 a3 =
dynamic_cast<A3*
>( pObject );
This class is used for returning status codes from appropriate routines.
A DataObject is the base class of any identifiable object on any data store.
template<class A1 , class A2 , class A3 >
StatusCode HistogramSvc::Helper::find |
( |
A1 |
a1, |
|
|
A2 |
a2, |
|
|
A3 *& |
a3 |
|
) |
| |
|
inline |
Definition at line 95 of file HistogramSvc.h.
99 a3 =
dynamic_cast<A3*
>( pObject );
This class is used for returning status codes from appropriate routines.
A DataObject is the base class of any identifiable object on any data store.
template<class A1 , class A3 >
StatusCode HistogramSvc::Helper::retrieve |
( |
A1 |
a1, |
|
|
A3 *& |
a3 |
|
) |
| |
|
inline |
Definition at line 71 of file HistogramSvc.h.
75 a3 =
dynamic_cast<A3*
>( pObject );
This class is used for returning status codes from appropriate routines.
A DataObject is the base class of any identifiable object on any data store.
template<class A1 , class A2 , class A3 >
StatusCode HistogramSvc::Helper::retrieve |
( |
A1 |
a1, |
|
|
A2 |
a2, |
|
|
A3 *& |
a3 |
|
) |
| |
|
inline |
Definition at line 79 of file HistogramSvc.h.
83 a3 =
dynamic_cast<A3*
>( pObject );
This class is used for returning status codes from appropriate routines.
A DataObject is the base class of any identifiable object on any data store.
The documentation for this struct was generated from the following file: