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
22
#include "
Framework/ConfigParamSpec.h
"
23
#include "
DCStestWorkflow/DCSRandomDataGeneratorSpec.h
"
24
#include "
TPCdcs/DCSDPHints.h
"
25
26
using namespace
o2::framework
;
27
28
// we need to add workflow options before including Framework/runDataProcessing
29
void
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
38
#include "
Framework/runDataProcessing.h
"
39
40
o2::framework::WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& config)
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
}
ConfigParamSpec.h
DCSDPHints.h
DCS data point configuration for the TPC.
DCSRandomDataGeneratorSpec.h
o2::framework::ConfigContext
Definition
ConfigContext.h:24
o2::framework::ConfigContext::options
ConfigParamRegistry & options() const
Definition
ConfigContext.h:28
o2::framework::ConfigParamRegistry::get
T get(const char *key) const
Definition
ConfigParamRegistry.h:98
o2::dcs::test::getDCSRandomDataGeneratorSpec
o2::framework::DataProcessorSpec getDCSRandomDataGeneratorSpec(std::vector< HintType > hints={}, const char *detName="TOF")
Definition
DCSRandomDataGeneratorSpec.cxx:163
o2::framework
Defining PrimaryVertex explicitly as messageable.
Definition
TFIDInfo.h:20
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::tpc::dcs::getTPCDCSDPHints
std::vector< o2::dcs::test::HintType > getTPCDCSDPHints(const int maxSectors=17)
Definition
DCSDPHints.cxx:20
runDataProcessing.h
defineDataProcessing
o2::framework::WorkflowSpec defineDataProcessing(ConfigContext const &config)
This function hooks up the the workflow specifications into the DPL driver.
Definition
tpc-dcs-sim-workflow.cxx:40
customize
void customize(std::vector< ConfigParamSpec > &workflowOptions)
Definition
tpc-dcs-sim-workflow.cxx:29
Detectors
TPC
dcs
src
tpc-dcs-sim-workflow.cxx
Generated on Fri Apr 4 2025 16:08:47 for Project by
1.9.8