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
22
#include "
Framework/ConfigParamSpec.h
"
23
24
#include "
DCStestWorkflow/DCSDataReplaySpec.h
"
25
#include "
TPCdcs/DCSDPHints.h
"
26
27
using namespace
o2::framework
;
28
29
// we need to add workflow options before including Framework/runDataProcessing
30
void
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
39
#include "
Framework/runDataProcessing.h
"
40
41
o2::framework::WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& config)
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
}
ConfigParamSpec.h
DCSDPHints.h
DCS data point configuration for the TPC.
DCSDataReplaySpec.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::getDCSDataReplaySpec
o2::framework::DataProcessorSpec getDCSDataReplaySpec(std::vector< HintType > hints={}, const char *detName="TPC")
Definition
DCSDataReplaySpec.cxx:98
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-data-replay.cxx:41
customize
void customize(std::vector< ConfigParamSpec > &workflowOptions)
Definition
tpc-dcs-data-replay.cxx:30
Detectors
TPC
dcs
src
tpc-dcs-data-replay.cxx
Generated on Fri Apr 4 2025 16:08:47 for Project by
1.9.8