Project
Loading...
Searching...
No Matches
tof-compressed-analysis.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 "
TOFWorkflowUtils/CompressedAnalysisTask.h
"
18
#include "
Framework/WorkflowSpec.h
"
19
#include "
Framework/ConfigParamSpec.h
"
20
#include <fairlogger/Logger.h>
21
22
using namespace
o2::framework
;
23
24
// add workflow options, note that customization needs to be declared before
25
// including Framework/runDataProcessing
26
void
customize
(std::vector<ConfigParamSpec>& workflowOptions)
27
{
28
auto
inputDesc =
ConfigParamSpec
{
"tof-compressed-analysis-input-desc"
, VariantType::String,
"CRAWDATA"
, {
"Input specs description string"
}};
29
workflowOptions.push_back(inputDesc);
30
}
31
32
#include "
Framework/runDataProcessing.h
"
// the main driver
33
35
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& cfgc)
36
{
37
auto
inputDesc = cfgc.
options
().
get
<std::string>(
"tof-compressed-analysis-input-desc"
);
38
39
return
WorkflowSpec
{
40
DataProcessorSpec
{
"compressed-analysis"
,
41
select
(std::string(
"x:TOF/"
+ inputDesc).c_str()),
42
Outputs
{},
43
AlgorithmSpec
(adaptFromTask<o2::tof::CompressedAnalysisTask>()),
44
Options
{
45
{
"tof-compressed-analysis-conet-mode"
, VariantType::Bool,
false
, {
"CONET mode"
}},
46
{
"tof-compressed-analysis-filename"
, VariantType::String,
""
, {
"Analysis file name"
}},
47
{
"tof-compressed-analysis-function"
, VariantType::String,
""
, {
"Analysis function call"
}}}}};
48
}
CompressedAnalysisTask.h
TOF compressed data analysis base class.
ConfigParamSpec.h
WorkflowSpec.h
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::framework::select
std::vector< InputSpec > select(char const *matcher="")
Definition
WorkflowSpec.cxx:152
o2::framework::Outputs
std::vector< OutputSpec > Outputs
Definition
DataProcessorSpec.h:30
runDataProcessing.h
Options
Definition
TreeMergerTool.cxx:26
o2::framework::AlgorithmSpec
Definition
AlgorithmSpec.h:43
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
o2::framework::DataProcessorSpec
Definition
DataProcessorSpec.h:41
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
This function hooks up the the workflow specifications into the DPL driver.
Definition
tof-compressed-analysis.cxx:35
customize
void customize(std::vector< ConfigParamSpec > &workflowOptions)
Definition
tof-compressed-analysis.cxx:26
Detectors
TOF
compression
src
tof-compressed-analysis.cxx
Generated on Tue Feb 25 2025 23:16:26 for Project by
1.9.8