Project
Loading...
Searching...
No Matches
tpc-dcs-data-replay.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
23
25#include "TPCdcs/DCSDPHints.h"
26
27using namespace o2::framework;
28
29// we need to add workflow options before including Framework/runDataProcessing
30void customize(std::vector<ConfigParamSpec>& workflowOptions)
31{
32 std::vector<ConfigParamSpec> options{
33 {"max-sectors", VariantType::Int, 0, {"max sector number to use for HV sensors, 0-17"}},
34 };
35
36 std::swap(workflowOptions, options);
37}
38
40
42{
43 const auto maxSectors = std::min(config.options().get<int>("max-sectors"), 17);
44
45 auto dphints = o2::tpc::dcs::getTPCDCSDPHints(maxSectors);
46
47 WorkflowSpec specs;
48 specs.emplace_back(o2::dcs::test::getDCSDataReplaySpec(dphints, "TPC"));
49 return specs;
50}
DCS data point configuration for the TPC.
ConfigParamRegistry & options() const
o2::framework::DataProcessorSpec getDCSDataReplaySpec(std::vector< HintType > hints={}, const char *detName="TPC")
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)