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 "
ITSMFTWorkflow/DigitReaderSpec.h
"
13
#include "
CommonUtils/ConfigurableParam.h
"
14
#include "
Framework/ConfigParamSpec.h
"
15
#include "
Framework/CallbacksPolicy.h
"
16
#include "
DetectorsRaw/HBFUtilsInitializer.h
"
17
18
using namespace
o2::framework
;
19
20
// ------------------------------------------------------------------
21
22
void
customize
(std::vector<o2::framework::CallbacksPolicy>& policies)
23
{
24
o2::raw::HBFUtilsInitializer::addNewTimeSliceCallback
(policies);
25
}
26
27
// we need to add workflow options before including Framework/runDataProcessing
28
void
customize
(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
29
{
30
// option allowing to set parameters
31
std::vector<ConfigParamSpec> options{
32
ConfigParamSpec
{
"disable-mc"
, VariantType::Bool,
false
, {
"disable mc truth"
}},
33
ConfigParamSpec
{
"enable-calib-data"
, VariantType::Bool,
false
, {
"enable writing GBT calibration data"
}},
34
ConfigParamSpec
{
"runmft"
, VariantType::Bool,
false
, {
"expect MFT data"
}},
35
ConfigParamSpec
{
"suppress-triggers-output"
, VariantType::Bool,
false
, {
"suppress dummy triggers output"
}},
36
ConfigParamSpec
{
"configKeyValues"
, VariantType::String,
""
, {
"semicolon separated key=value strings"
}}};
37
o2::raw::HBFUtilsInitializer::addConfigOption
(options);
38
std::swap(workflowOptions, options);
39
}
40
41
// ------------------------------------------------------------------
42
43
#include "
Framework/runDataProcessing.h
"
44
45
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& cfgc)
46
{
47
WorkflowSpec
wf;
48
bool
useMC = !cfgc.
options
().
get
<
bool
>(
"disable-mc"
);
49
bool
calib = cfgc.
options
().
get
<
bool
>(
"enable-calib-data"
);
50
bool
withTriggers = !cfgc.
options
().
get
<
bool
>(
"suppress-triggers-output"
);
51
// Update the (declared) parameters if changed from the command line
52
o2::conf::ConfigurableParam::updateFromString
(cfgc.
options
().
get
<std::string>(
"configKeyValues"
));
53
54
if
(cfgc.
options
().
get
<
bool
>(
"runmft"
)) {
55
wf.emplace_back(
o2::itsmft::getMFTDigitReaderSpec
(useMC, calib, withTriggers));
56
}
else
{
57
wf.emplace_back(
o2::itsmft::getITSDigitReaderSpec
(useMC, calib, withTriggers));
58
}
59
o2::raw::HBFUtilsInitializer
hbfIni(cfgc, wf);
60
return
wf;
61
}
CallbacksPolicy.h
ConfigParamSpec.h
ConfigurableParam.h
HBFUtilsInitializer.h
DigitReaderSpec.h
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
Definition
digit-reader-workflow.cxx:45
customize
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
Definition
digit-reader-workflow.cxx:22
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::itsmft::getITSDigitReaderSpec
framework::DataProcessorSpec getITSDigitReaderSpec(bool useMC=true, bool useCalib=false, bool useTriggers=true, std::string defname="o2_itsdigits.root")
Definition
DigitReaderSpec.cxx:255
o2::itsmft::getMFTDigitReaderSpec
framework::DataProcessorSpec getMFTDigitReaderSpec(bool useMC=true, bool useCalib=false, bool useTriggers=true, std::string defname="o2_mftdigits.root")
Definition
DigitReaderSpec.cxx:280
runDataProcessing.h
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
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
ITSMFT
common
workflow
src
digit-reader-workflow.cxx
Generated on Fri Apr 11 2025 11:41:44 for Project by
1.9.8