Project
Loading...
Searching...
No Matches
digit-reader-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 "
CommonUtils/ConfigurableParam.h
"
13
#include "
Framework/ConfigParamSpec.h
"
14
#include "
TRDWorkflowIO/TRDDigitReaderSpec.h
"
15
#include "
DetectorsRaw/HBFUtilsInitializer.h
"
16
17
using namespace
o2::framework
;
18
19
// ------------------------------------------------------------------
20
21
void
customize
(std::vector<o2::framework::CallbacksPolicy>& policies)
22
{
23
o2::raw::HBFUtilsInitializer::addNewTimeSliceCallback
(policies);
24
}
25
26
// we need to add workflow options before including Framework/runDataProcessing
27
void
customize
(std::vector<ConfigParamSpec>& workflowOptions)
28
{
29
// option allowing to set parameters
30
std::vector<o2::framework::ConfigParamSpec> options{
31
{
"disable-mc"
, VariantType::Bool,
true
, {
"disable MC propagation"
}},
32
{
"disable-trigrec"
, VariantType::Bool,
false
, {
"disable trigger record reading when these come from tracklet reader"
}},
33
{
"digit-subspec"
, VariantType::Int, 1, {
"allow overwriting default output data subspec"
}},
34
{
"configKeyValues"
, VariantType::String,
""
, {
"Semicolon separated key=value strings ..."
}}};
35
o2::raw::HBFUtilsInitializer::addConfigOption
(options);
36
std::swap(workflowOptions, options);
37
}
38
39
// ------------------------------------------------------------------
40
41
#include "
Framework/runDataProcessing.h
"
42
43
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& configcontext)
44
{
45
// Update the (declared) parameters if changed from the command line
46
o2::conf::ConfigurableParam::updateFromString
(configcontext.
options
().
get
<std::string>(
"configKeyValues"
));
47
48
auto
useMC = !configcontext.
options
().
get
<
bool
>(
"disable-mc"
);
49
auto
sendTriggerRecords = !configcontext.
options
().
get
<
bool
>(
"disable-trigrec"
);
50
auto
dataSubspec = configcontext.
options
().
get
<
int
>(
"digit-subspec"
);
51
WorkflowSpec
specs;
52
specs.emplace_back(
o2::trd::getTRDDigitReaderSpec
(useMC, sendTriggerRecords, dataSubspec));
53
o2::raw::HBFUtilsInitializer
hbfIni(configcontext, specs);
54
return
specs;
55
}
ConfigParamSpec.h
ConfigurableParam.h
HBFUtilsInitializer.h
TRDDigitReaderSpec.h
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &configcontext)
This function hooks up the the workflow specifications into the DPL driver.
Definition
digit-reader-workflow.cxx:43
customize
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
Definition
digit-reader-workflow.cxx:21
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::trd::getTRDDigitReaderSpec
o2::framework::DataProcessorSpec getTRDDigitReaderSpec(bool useMC, bool trigRec=true, int dataSubspec=1)
Definition
TRDDigitReaderSpec.cxx:76
runDataProcessing.h
o2::raw::HBFUtilsInitializer
Definition
HBFUtilsInitializer.h:45
o2::raw::HBFUtilsInitializer::addNewTimeSliceCallback
static void addNewTimeSliceCallback(std::vector< o2::framework::CallbacksPolicy > &policies)
Definition
HBFUtilsInitializer.cxx:267
o2::raw::HBFUtilsInitializer::addConfigOption
static void addConfigOption(std::vector< o2::framework::ConfigParamSpec > &opts, const std::string &defOpt=std::string(o2::base::NameConf::DIGITIZATIONCONFIGFILE))
Definition
HBFUtilsInitializer.cxx:323
Detectors
TRD
workflow
io
src
digit-reader-workflow.cxx
Generated on Tue Feb 25 2025 22:50:58 for Project by
1.9.8