Project
Loading...
Searching...
No Matches
entropy-encoder-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 "
TPCWorkflow/EntropyEncoderSpec.h
"
13
#include "
CommonUtils/ConfigurableParam.h
"
14
#include "
Framework/ConfigParamSpec.h
"
15
16
using namespace
o2::framework
;
17
18
// ------------------------------------------------------------------
19
20
// we need to add workflow options before including Framework/runDataProcessing
21
void
customize
(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
22
{
23
// option allowing to set parameters
24
std::vector<ConfigParamSpec> options{
25
ConfigParamSpec
{
"configKeyValues"
, VariantType::String,
""
, {
"Semicolon separated key=value strings"
}},
26
ConfigParamSpec
{
"select-ir-frames"
, VariantType::Bool,
false
, {
"Subscribe and filter according to external IR Frames"
}},
27
ConfigParamSpec
{
"inputFromFile"
, VariantType::Bool,
false
, {
"Expect COMPCLUSTERS from file"
}}};
28
29
std::swap(workflowOptions, options);
30
}
31
32
// ------------------------------------------------------------------
33
34
#include "
Framework/runDataProcessing.h
"
35
36
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& cfgc)
37
{
38
WorkflowSpec
wf;
39
// Update the (declared) parameters if changed from the command line
40
o2::conf::ConfigurableParam::updateFromString
(cfgc.
options
().
get
<std::string>(
"configKeyValues"
));
41
wf.emplace_back(
o2::tpc::getEntropyEncoderSpec
(cfgc.
options
().
get
<
bool
>(
"inputFromFile"
), cfgc.
options
().
get
<
bool
>(
"select-ir-frames"
)));
42
return
wf;
43
}
ConfigParamSpec.h
ConfigurableParam.h
EntropyEncoderSpec.h
ProcessorSpec for the TPC cluster entropy encoding.
customize
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
Definition
entropy-encoder-workflow.cxx:21
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
This function hooks up the the workflow specifications into the DPL driver.
Definition
entropy-encoder-workflow.cxx:36
o2::conf::ConfigurableParam::updateFromString
static void updateFromString(std::string const &)
Definition
ConfigurableParam.cxx:433
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::framework
Defining PrimaryVertex explicitly as messageable.
Definition
TFIDInfo.h:20
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::tpc::getEntropyEncoderSpec
framework::DataProcessorSpec getEntropyEncoderSpec(bool inputFromFile, bool selIR=false)
create a processor spec
Definition
EntropyEncoderSpec.cxx:308
runDataProcessing.h
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
Detectors
TPC
workflow
src
entropy-encoder-workflow.cxx
Generated on Tue Feb 25 2025 23:16:30 for Project by
1.9.8