Project
Loading...
Searching...
No Matches
tof-diagnostic-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
14
15using namespace o2::framework;
16
17// we need to add workflow options before including Framework/runDataProcessing
18void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
19{
20 // option allowing to set parameters
21 workflowOptions.push_back(ConfigParamSpec{"tof-dia-run-number", o2::framework::VariantType::Int, -1, {"run number"}});
22 workflowOptions.push_back(ConfigParamSpec{"tof-dia-min-rowin", o2::framework::VariantType::Int, 100000, {"min number of TOF Readout Windows, def=100k (3 s)"}});
23}
24
25// ------------------------------------------------------------------
26
28
30{
31 WorkflowSpec specs;
32 auto runnumber = configcontext.options().get<int>("tof-dia-run-number");
33 auto rowinMin = configcontext.options().get<int>("tof-dia-min-rowin");
34 specs.emplace_back(getTOFDiagnosticCalibDeviceSpec(runnumber, rowinMin));
35 return specs;
36}
Device to stor in CCDB the diagnostic words from TOF.
ConfigParamRegistry & options() const
Defining PrimaryVertex explicitly as messageable.
Definition Cartesian.h:288
std::vector< DataProcessorSpec > WorkflowSpec
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
WorkflowSpec defineDataProcessing(ConfigContext const &configcontext)