Files
geant4/source/analysis/g4tools/include/tools/wroot/MPI_SET_MAX.icc
T
2017-12-08 12:52:30 +01:00

26 lines
995 B
Plaintext

#define TOOLS_WROOT_MPI_NTUPLE_LEAF_SET_LENGTH_MAX(a__type) \
{leaf_ref<a__type>* _pleaf_ = _pleaf?id_cast<base_leaf, leaf_ref<a__type> >(*_pleaf):0;\
if(_pleaf_) {\
if(!a_mpi.pack(_pleaf_->length())) return false;\
if(!a_mpi.pack(_pleaf_->get_max())) return false;\
set_done = true;\
}}
#define TOOLS_WROOT_MPI_NTUPLE_LEAF_STD_VECTOR_SET_LENGTH_MAX(a__type) \
{leaf_std_vector_ref<a__type>* _pleaf_ = _pleaf?id_cast<base_leaf, leaf_std_vector_ref<a__type> >(*_pleaf):0;\
if(_pleaf_) {\
if(!a_mpi.pack(_pleaf_->length())) return false;\
if(!a_mpi.pack(_pleaf_->get_max())) return false;\
set_done = true;\
}}
#define TOOLS_WROOT_MPI_NTUPLE_LEAF_STRING_SET_LENGTH_MAX \
{leaf_string_ref* _pleaf_ = _pleaf?id_cast<base_leaf,leaf_string_ref>(*_pleaf):0;\
if(_pleaf_) {\
if(!a_mpi.pack(_pleaf_->length())) return false;\
if(!a_mpi.pack(_pleaf_->get_max())) return false;\
set_done = true;\
}}