Project
Loading...
Searching...
No Matches
digit-writer-commissioning.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 "
TOFWorkflowIO/TOFDigitWriterSplitterSpec.h
"
13
#include "
CommonUtils/ConfigurableParam.h
"
14
#include "
Framework/ConfigParamSpec.h
"
15
#include "
Framework/CompletionPolicyHelpers.h
"
16
17
using namespace
o2::framework
;
18
19
// ------------------------------------------------------------------
20
void
customize
(std::vector<o2::framework::CompletionPolicy>& policies)
21
{
22
// ordered policies for the writers
23
policies.push_back(
CompletionPolicyHelpers::consumeWhenAllOrdered
(
".*(?:TOF|tof).*[W,w]riter.*"
));
24
}
25
26
// we need to add workflow options before including Framework/runDataProcessing
27
void
customize
(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
28
{
29
// option allowing to set parameters
30
workflowOptions.push_back(
ConfigParamSpec
{
"ntf"
,
o2::framework::VariantType::Int
, 1, {
"number of timeframe written for output file"
}});
31
workflowOptions.push_back(
ConfigParamSpec
{
"write-decoding-errors"
,
o2::framework::VariantType::Bool
,
false
, {
"trace errors in digits output when decoding"
}});
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
auto
ntf = cfgc.
options
().
get
<
int
>(
"ntf"
);
43
auto
write_err = cfgc.
options
().
get
<
bool
>(
"write-decoding-errors"
);
44
wf.emplace_back(o2::framework::getTOFDigitWriterSplitterSpec(ntf, write_err));
45
return
wf;
46
}
CompletionPolicyHelpers.h
ConfigParamSpec.h
ConfigurableParam.h
TOFDigitWriterSplitterSpec.h
Device to write to tree the information for TOF time slewing calibration.
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
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
This function hooks up the the workflow specifications into the DPL driver.
Definition
digit-writer-commissioning.cxx:38
customize
void customize(std::vector< o2::framework::CompletionPolicy > &policies)
Definition
digit-writer-commissioning.cxx:20
o2::framework
Defining PrimaryVertex explicitly as messageable.
Definition
TFIDInfo.h:20
o2::framework::VariantType::Int
@ Int
o2::framework::VariantType::Bool
@ Bool
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
runDataProcessing.h
o2::framework::CompletionPolicyHelpers::consumeWhenAllOrdered
static CompletionPolicy consumeWhenAllOrdered(const char *name, CompletionPolicy::Matcher matcher)
as consumeWhenAll, but ensures that records are processed with incremental timeSlice (DataHeader::sta...
Definition
CompletionPolicyHelpers.cxx:177
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
Detectors
TOF
workflow
src
digit-writer-commissioning.cxx
Generated on Fri Apr 11 2025 11:41:35 for Project by
1.9.8