#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 71 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 107 of file HistogramSvc.h.
109 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
110 const auto h2 = Gaudi::getRepresentation<R, T2>( b );
112 ( 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 118 of file HistogramSvc.h.
120 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
121 const auto h2 = Gaudi::getRepresentation<R, T2>( b );
123 ( 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 129 of file HistogramSvc.h.
131 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
132 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 140 of file HistogramSvc.h.
142 auto h1 = Gaudi::getRepresentation<R, T1>( *res );
143 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 91 of file HistogramSvc.h.
95 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 99 of file HistogramSvc.h.
103 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 75 of file HistogramSvc.h.
79 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 83 of file HistogramSvc.h.
87 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: