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 "
ITSMFTWorkflow/EntropyEncoderSpec.h
"
13
#include "
DataFormatsITSMFT/DPLAlpideParamInitializer.h
"
14
#include "
CommonUtils/ConfigurableParam.h
"
15
#include "
Framework/ConfigParamSpec.h
"
16
17
using namespace
o2::framework
;
18
19
// ------------------------------------------------------------------
20
21
// we need to add workflow options before including Framework/runDataProcessing
22
void
customize
(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
23
{
24
// option allowing to set parameters
25
std::vector<ConfigParamSpec> options{
26
ConfigParamSpec
{
"runmft"
, VariantType::Bool,
false
, {
"source detector is MFT (default ITS)"
}},
27
ConfigParamSpec
{
"configKeyValues"
, VariantType::String,
""
, {
"Semicolon separated key=value strings"
}},
28
ConfigParamSpec
{
"ctf-dict"
, VariantType::String,
"none"
, {
"CTF dictionary: empty or ccdb=CCDB, none=no external dictionary otherwise: local filename"
}},
29
ConfigParamSpec
{
"select-ir-frames"
, VariantType::Bool,
false
, {
"Subscribe and filter according to external IR Frames"
}}};
30
o2::itsmft::DPLAlpideParamInitializer::addConfigOption
(options);
31
std::swap(workflowOptions, options);
32
}
33
34
// ------------------------------------------------------------------
35
36
#include "
Framework/runDataProcessing.h
"
37
38
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& cfgc)
39
{
40
WorkflowSpec
wf;
41
// Update the (declared) parameters if changed from the command line
42
o2::conf::ConfigurableParam::updateFromString
(cfgc.
options
().
get
<std::string>(
"configKeyValues"
));
43
bool
selIR = cfgc.
options
().
get
<
bool
>(
"select-ir-frames"
);
44
if
(cfgc.
options
().
get
<
bool
>(
"runmft"
)) {
45
bool
doStag =
o2::itsmft::DPLAlpideParamInitializer::isMFTStaggeringEnabled
(cfgc);
46
wf.emplace_back(
o2::itsmft::getMFTEntropyEncoderSpec
(doStag, selIR, cfgc.
options
().
get
<std::string>(
"ctf-dict"
)));
47
}
else
{
48
bool
doStag =
o2::itsmft::DPLAlpideParamInitializer::isITSStaggeringEnabled
(cfgc);
49
wf.emplace_back(
o2::itsmft::getITSEntropyEncoderSpec
(doStag, selIR, cfgc.
options
().
get
<std::string>(
"ctf-dict"
)));
50
}
51
return
wf;
52
}
ConfigParamSpec.h
ConfigurableParam.h
DPLAlpideParamInitializer.h
EntropyEncoderSpec.h
Convert clusters streams to CTF (EncodedBlocks)
customize
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
Definition
entropy-encoder-workflow.cxx:22
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
Definition
entropy-encoder-workflow.cxx:38
o2::conf::ConfigurableParam::updateFromString
static void updateFromString(std::string const &)
Definition
ConfigurableParam.cxx:506
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 ITS Vertex explicitly as messageable.
Definition
Cartesian.h:288
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::itsmft::getITSEntropyEncoderSpec
framework::DataProcessorSpec getITSEntropyEncoderSpec(bool doStag=false, bool selIR=false, const std::string &ctfdictOpt="none")
create a processor spec
Definition
EntropyEncoderSpec.cxx:160
o2::itsmft::getMFTEntropyEncoderSpec
framework::DataProcessorSpec getMFTEntropyEncoderSpec(bool doStag=false, bool selIR=false, const std::string &ctfdictOpt="none")
Definition
EntropyEncoderSpec.cxx:165
runDataProcessing.h
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
o2::itsmft::DPLAlpideParamInitializer::isITSStaggeringEnabled
static bool isITSStaggeringEnabled(o2::framework::ConfigContext const &cfgc)
Definition
DPLAlpideParamInitializer.cxx:36
o2::itsmft::DPLAlpideParamInitializer::isMFTStaggeringEnabled
static bool isMFTStaggeringEnabled(o2::framework::ConfigContext const &cfgc)
Definition
DPLAlpideParamInitializer.cxx:41
o2::itsmft::DPLAlpideParamInitializer::addConfigOption
static void addConfigOption(std::vector< o2::framework::ConfigParamSpec > &opts)
Definition
DPLAlpideParamInitializer.cxx:20
Detectors
ITSMFT
common
workflow
src
entropy-encoder-workflow.cxx
Generated on Fri Apr 24 2026 13:58:56 for Project by
1.9.8