Project
Loading...
Searching...
No Matches
tpc-dcs-sim-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// // we need to add workflow options before including Framework/runDataProcessing
13// void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
14// {
15// // option allowing to set parameters
16// }
17
18// ------------------------------------------------------------------
19
20#include <fmt/format.h>
21
24#include "TPCdcs/DCSDPHints.h"
25
26using namespace o2::framework;
27
28// we need to add workflow options before including Framework/runDataProcessing
29void customize(std::vector<ConfigParamSpec>& workflowOptions)
30{
31 std::vector<ConfigParamSpec> options{
32 {"max-sectors", VariantType::Int, 0, {"max sector number to use for HV sensors, 0-17"}},
33 };
34
35 std::swap(workflowOptions, options);
36}
37
39
41{
42 const auto maxSectors = std::min(config.options().get<int>("max-sectors"), 17);
43
44 auto dphints = o2::tpc::dcs::getTPCDCSDPHints(maxSectors);
45
46 WorkflowSpec specs;
47 specs.emplace_back(o2::dcs::test::getDCSRandomDataGeneratorSpec(dphints, "TPC"));
48 return specs;
49}
DCS data point configuration for the TPC.
ConfigParamRegistry & options() const
o2::framework::DataProcessorSpec getDCSRandomDataGeneratorSpec(std::vector< HintType > hints={}, const char *detName="TOF")
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
std::vector< o2::dcs::test::HintType > getTPCDCSDPHints(const int maxSectors=17)
o2::framework::WorkflowSpec defineDataProcessing(ConfigContext const &config)
This function hooks up the the workflow specifications into the DPL driver.
void customize(std::vector< ConfigParamSpec > &workflowOptions)