Go to the source code of this file.
|
#define | ALPS_ACCUMULATOR_MEAN_IMPL(r, data, T) |
|
#define | ALPS_ACCUMULATOR_ERROR_IMPL(r, data, T) |
|
#define | ALPS_ACCUMULATOR_OPERATOR_CALL(r, data, T) |
|
#define | ALPS_ACCUMULATOR_MEAN_IMPL(r, data, T) |
|
#define | ALPS_ACCUMULATOR_ERROR_IMPL(r, data, T) |
|
#define | ALPS_ACCUMULATOR_ADD_ACCUMULATOR(r, type, T) |
|
#define ALPS_ACCUMULATOR_ADD_ACCUMULATOR |
( |
|
r, |
|
|
|
type, |
|
|
|
T |
|
) |
| |
#define ALPS_ACCUMULATOR_ERROR_IMPL |
( |
|
r, |
|
|
|
data, |
|
|
|
T |
|
) |
| |
Value:template<> T virtual_result_wrapper<virtual_accumulator_wrapper>::error_impl(T) const { \
return m_ptr->error<T>(); \
}
Definition at line 154 of file accumulators.cpp.
#define ALPS_ACCUMULATOR_ERROR_IMPL |
( |
|
r, |
|
|
|
data, |
|
|
|
T |
|
) |
| |
Value:T virtual_accumulator_wrapper::error_impl(T) const { \
return m_ptr->error<T>(); \
}
Definition at line 154 of file accumulators.cpp.
#define ALPS_ACCUMULATOR_MEAN_IMPL |
( |
|
r, |
|
|
|
data, |
|
|
|
T |
|
) |
| |
Value:template<> T virtual_result_wrapper<virtual_accumulator_wrapper>::mean_impl(T) const { \
return m_ptr->mean<T>(); \
}
Definition at line 146 of file accumulators.cpp.
#define ALPS_ACCUMULATOR_MEAN_IMPL |
( |
|
r, |
|
|
|
data, |
|
|
|
T |
|
) |
| |
Value:T virtual_accumulator_wrapper::mean_impl(T) const { \
return m_ptr->mean<T>(); \
}
Definition at line 146 of file accumulators.cpp.
#define ALPS_ACCUMULATOR_OPERATOR_CALL |
( |
|
r, |
|
|
|
data, |
|
|
|
T |
|
) |
| |
Value:virtual_accumulator_wrapper & virtual_accumulator_wrapper::operator()(T const & value) { \
(*m_ptr)(value); \
return (*this); \
}
Definition at line 122 of file accumulators.cpp.