https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Functions
SamplerPostprocessorTransfer.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("StochasticToolsApp", SamplerPostprocessorTransfer)
 
std::vector< VectorPostprocessorName > getVectorNamesHelper (const std::string &prefix, const std::vector< PostprocessorName > &pp_names)
 

Function Documentation

◆ getVectorNamesHelper()

std::vector< VectorPostprocessorName > getVectorNamesHelper ( const std::string &  prefix,
const std::vector< PostprocessorName > &  pp_names 
)

Definition at line 21 of file SamplerPostprocessorTransfer.C.

22{
23 std::vector<VectorPostprocessorName> vec_names;
24 vec_names.reserve(pp_names.size());
25 for (const auto & pp_name : pp_names)
26 {
27 if (!prefix.empty())
28 vec_names.push_back(prefix + ":" + pp_name);
29 else
30 vec_names.push_back(pp_name);
31 }
32 return vec_names;
33}

◆ registerMooseObject()

registerMooseObject ( "StochasticToolsApp"  ,
SamplerPostprocessorTransfer   
)