Project
Loading...
Searching...
No Matches
trd-digittracklet-writer-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/CompletionPolicy.h
"
14
#include "
Framework/ConfigParamSpec.h
"
15
#include "
TRDWorkflowIO/TRDTrackletWriterSpec.h
"
16
#include "
TRDWorkflowIO/TRDDigitWriterSpec.h
"
17
#include "
Framework/CompletionPolicyHelpers.h
"
18
19
using namespace
o2::framework
;
20
21
// ------------------------------------------------------------------
22
// this is simply to enable one to write out the tracklet and digits and triggers after reading in the ctf
23
// to do a comparison pre and post ctf. Use case is probably only unit tests.
24
25
// we need to add workflow options before including Framework/runDataProcessing
26
void
customize
(std::vector<ConfigParamSpec>& workflowOptions)
27
{
28
// option allowing to set parameters
29
std::vector<o2::framework::ConfigParamSpec> options{
30
{
"configKeyValues"
, VariantType::String,
""
, {
"Semicolon separated key=value strings ..."
}}};
31
32
std::swap(workflowOptions, options);
33
}
34
35
void
customize
(std::vector<o2::framework::CompletionPolicy>& policies)
36
{
37
// ordered policies for the writers
38
policies.push_back(
CompletionPolicyHelpers::consumeWhenAllOrdered
(
".*(?:TRD|trd).*[W,w]riter.*"
));
39
}
40
41
// ------------------------------------------------------------------
42
43
#include "
Framework/runDataProcessing.h
"
44
45
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& configcontext)
46
{
47
// Update the (declared) parameters if changed from the command line
48
o2::conf::ConfigurableParam::updateFromString
(configcontext.
options
().
get
<std::string>(
"configKeyValues"
));
49
50
WorkflowSpec
specs;
51
specs.emplace_back(
o2::trd::getTRDTrackletWriterSpec
(
false
));
52
specs.emplace_back(
o2::trd::getTRDDigitWriterSpec
(
false
,
false
));
53
return
specs;
54
}
CompletionPolicyHelpers.h
CompletionPolicy.h
ConfigParamSpec.h
ConfigurableParam.h
TRDDigitWriterSpec.h
TRDTrackletWriterSpec.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::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::trd::getTRDDigitWriterSpec
o2::framework::DataProcessorSpec getTRDDigitWriterSpec(bool mctruth=true, bool inpFromDigitizer=true)
Definition
TRDDigitWriterSpec.cxx:32
o2::trd::getTRDTrackletWriterSpec
o2::framework::DataProcessorSpec getTRDTrackletWriterSpec(bool useMC)
Definition
TRDTrackletWriterSpec.cxx:34
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:174
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &configcontext)
This function hooks up the the workflow specifications into the DPL driver.
Definition
trd-digittracklet-writer-workflow.cxx:45
customize
void customize(std::vector< ConfigParamSpec > &workflowOptions)
Definition
trd-digittracklet-writer-workflow.cxx:26
Detectors
TRD
workflow
io
src
trd-digittracklet-writer-workflow.cxx
Generated on Tue Feb 25 2025 22:50:58 for Project by
1.9.8