Project
Loading...
Searching...
No Matches
recpoints-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
16
17
#include "
Framework/CallbackService.h
"
18
#include "
Framework/ControlService.h
"
19
#include "
Framework/CallbacksPolicy.h
"
20
#include "
Framework/ConfigParamRegistry.h
"
21
#include "
Framework/Task.h
"
22
#include "
FT0Workflow/RecPointReaderSpec.h
"
23
#include "
CommonUtils/ConfigurableParam.h
"
24
#include "
DetectorsRaw/HBFUtilsInitializer.h
"
25
26
using namespace
o2::framework
;
27
28
void
customize
(std::vector<o2::framework::CallbacksPolicy>& policies)
29
{
30
o2::raw::HBFUtilsInitializer::addNewTimeSliceCallback
(policies);
31
}
32
33
// we need to add workflow options before including Framework/runDataProcessing
34
void
customize
(std::vector<ConfigParamSpec>& workflowOptions)
35
{
36
// option allowing to set parameters
37
38
std::vector<o2::framework::ConfigParamSpec> options{
39
{
"disable-mc"
,
o2::framework::VariantType::Bool
,
false
, {
"disable MC propagation even if available"
}}};
40
std::string keyvaluehelp(
"Semicolon separated key=value strings"
);
41
options.push_back(
ConfigParamSpec
{
"configKeyValues"
, VariantType::String,
""
, {keyvaluehelp}});
42
o2::raw::HBFUtilsInitializer::addConfigOption
(options);
43
std::swap(workflowOptions, options);
44
}
45
46
#include "
Framework/runDataProcessing.h
"
47
48
WorkflowSpec
defineDataProcessing
(
const
ConfigContext
& ctx)
49
{
50
WorkflowSpec
specs;
51
o2::conf::ConfigurableParam::updateFromString
(ctx.
options
().
get
<std::string>(
"configKeyValues"
));
52
DataProcessorSpec
producer =
o2::ft0::getRecPointReaderSpec
(ctx.
options
().
get
<
bool
>(
"disable-mc"
));
53
specs.push_back(producer);
54
// configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
55
o2::raw::HBFUtilsInitializer
hbfIni(ctx, specs);
56
return
specs;
57
}
CallbackService.h
CallbacksPolicy.h
ConfigParamRegistry.h
ConfigurableParam.h
ControlService.h
RecPointReaderSpec.h
HBFUtilsInitializer.h
Task.h
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::VariantType::Bool
@ Bool
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::ft0::getRecPointReaderSpec
framework::DataProcessorSpec getRecPointReaderSpec(bool useMC)
Definition
RecPointReaderSpec.cxx:79
defineDataProcessing
WorkflowSpec defineDataProcessing(const ConfigContext &ctx)
Definition
recpoints-reader-workflow.cxx:48
customize
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
Definition
recpoints-reader-workflow.cxx:28
runDataProcessing.h
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
o2::framework::DataProcessorSpec
Definition
DataProcessorSpec.h:41
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
FIT
FT0
workflow
src
recpoints-reader-workflow.cxx
Generated on Tue Feb 25 2025 23:16:15 for Project by
1.9.8