Project
Loading...
Searching...
No Matches
tpc-dcs-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 "DetectorsDCS/DataPointIdentifier.h"
13//#include "DetectorsDCS/DataPointValue.h"
14//#include "Framework/TypeTraits.h"
15//#include <unordered_map>
16// namespace o2::framework
17//{
18// template <>
19// struct has_root_dictionary<std::unordered_map<o2::dcs::DataPointIdentifier, o2::dcs::DataPointValue>, void> : std::true_type {
20//};
21
23#include "TPCdcs/DCSSpec.h"
24
25using namespace o2::framework;
26using namespace o2::tpc;
27
28// we need to add workflow options before including Framework/runDataProcessing
29void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
30{
31 // option allowing to set parameters
32 std::vector<ConfigParamSpec> options{
33 //{"input-spec", VariantType::String, "A:TPC/RAWDATA", {"selection string input specs"}},
34 //{"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings (e.g.: 'TPCCalibPedestal.FirstTimeBin=10;...')"}},
35 //{"configFile", VariantType::String, "", {"configuration file for configurable parameters"}},
36 };
37
38 std::swap(workflowOptions, options);
39}
40
41// ------------------------------------------------------------------
42
44
46{
47 WorkflowSpec specs;
48 specs.emplace_back(getDCSSpec());
49 return specs;
50}
DCS processing.
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
Global TPC definitions and constants.
Definition SimTraits.h:167
DataProcessorSpec getDCSSpec()
create DCS processor
Definition DCSSpec.cxx:178
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
WorkflowSpec defineDataProcessing(ConfigContext const &configcontext)
This function hooks up the the workflow specifications into the DPL driver.