31void customize(std::vector<ConfigParamSpec>& workflowOptions)
33 std::vector<ConfigParamSpec> options{{
"disable-mc", VariantType::Bool,
false, {
"Do not propagate MC labels"}},
34 {
"subspec", VariantType::UInt32, 0U, {
"Subspecification for cell output"}},
35 {
"configKeyValues", VariantType::String,
"", {
"Semicolon separated key=value strings"}}};
37 workflowOptions.insert(workflowOptions.end(), options.begin(), options.end());
44 bool disableMC = cfgc.
options().
get<
bool>(
"disable-mc");
45 auto subspec = cfgc.
options().
get<uint32_t>(
"subspec");
47 LOG(info) <<
"Cell reader: publishing on subspec " << subspec << std::endl;
54 {
"cellbranch",
"EMCALCell",
"Cell branch"},
55 {
"celltriggerbranch",
"EMCALCellTRGR",
"Trigger record branch"},
56 {
"mcbranch",
"EMCALCellMCTruth",
"MC label branch"},
60 subspec, !disableMC));
ConfigParamRegistry & options() const