Project
Loading...
Searching...
No Matches
cell-reader-workflow.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#include <string>
13#include <vector>
14#include "Framework/Variant.h"
21
22using namespace o2::framework;
23using namespace o2::emcal;
24
25void customize(std::vector<o2::framework::CallbacksPolicy>& policies)
26{
28}
29
30// we need to add workflow options before including Framework/runDataProcessing
31void customize(std::vector<ConfigParamSpec>& workflowOptions)
32{
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());
38}
39
41
43{
44 bool disableMC = cfgc.options().get<bool>("disable-mc");
45 auto subspec = cfgc.options().get<uint32_t>("subspec");
46 o2::conf::ConfigurableParam::updateFromString(cfgc.options().get<std::string>("configKeyValues"));
47 LOG(info) << "Cell reader: publishing on subspec " << subspec << std::endl;
48
49 WorkflowSpec specs;
50 specs.emplace_back(o2::emcal::getPublisherSpec<std::vector<o2::emcal::Cell>>(PublisherConf{
51 "emcal-cell-reader",
52 "o2sim",
53 "emccells.root",
54 {"cellbranch", "EMCALCell", "Cell branch"},
55 {"celltriggerbranch", "EMCALCellTRGR", "Trigger record branch"},
56 {"mcbranch", "EMCALCellMCTruth", "MC label branch"},
57 o2::framework::OutputSpec{{"cells"}, "EMC", "CELLS", subspec, o2::framework::Lifetime::Timeframe},
58 o2::framework::OutputSpec{{"triggerrecords"}, "EMC", "CELLSTRGR", subspec, o2::framework::Lifetime::Timeframe},
59 o2::framework::OutputSpec{{"mclabels"}, "EMC", "CELLSMCTR", subspec, o2::framework::Lifetime::Timeframe}},
60 subspec, !disableMC));
61
62 // configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
63 o2::raw::HBFUtilsInitializer hbfIni(cfgc, specs);
64 return specs;
65}
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
framework::DataProcessorSpec getPublisherSpec(PublisherConf const &config, uint32_t subspec=0, bool propagateMC=true)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
static void addNewTimeSliceCallback(std::vector< o2::framework::CallbacksPolicy > &policies)
static void addConfigOption(std::vector< o2::framework::ConfigParamSpec > &opts, const std::string &defOpt=std::string(o2::base::NameConf::DIGITIZATIONCONFIGFILE))
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"