Project
Loading...
Searching...
No Matches
trigger-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
13
17#include "Headers/DataHeader.h"
20#include <vector>
21#include <string>
22#include <algorithm>
23
24using namespace o2::framework;
27
28namespace o2
29{
30namespace itsmft
31{
32
33template <typename T>
35
39{
40 std::string detStr = DetID::getName(detId);
41 std::string detStrL = "o2_";
42 detStrL += detStr;
43 std::transform(detStrL.begin(), detStrL.end(), detStrL.begin(), ::tolower);
44 auto logger = [](std::vector<o2::itsmft::PhysTrigger> const& inp) {
45 LOG(info) << "Received " << inp.size() << " triggers";
46 };
47
48 return MakeRootTreeWriterSpec((detStr + "phytrigwriter").c_str(),
49 (detStrL + "phy-triggers.root").c_str(),
50 MakeRootTreeWriterSpec::TreeAttributes{"o2sim", "Physics triggers tree"},
51 BranchDefinition<std::vector<o2::itsmft::PhysTrigger>>{InputSpec{"trig", detId == DetID::ITS ? "ITS" : "MFT", "PHYSTRIG", 0}, (detStr + "Trig").c_str()})();
52}
53
54} // end namespace itsmft
55} // end namespace o2
56
59
60// ------------------------------------------------------------------
61void customize(std::vector<o2::framework::CompletionPolicy>& policies)
62{
63 // ordered policies for the writers
64 policies.push_back(CompletionPolicyHelpers::consumeWhenAllOrdered(".*phytrigwriter.*"));
65}
66
67// we need to add workflow options before including Framework/runDataProcessing
68void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
69{
70 // option allowing to set parameters
71 std::vector<ConfigParamSpec> options{
72 ConfigParamSpec{"runmft", VariantType::Bool, false, {"expect MFT data"}},
73 ConfigParamSpec{"configKeyValues", VariantType::String, "", {"semicolon separated key=value strings"}}};
74
75 std::swap(workflowOptions, options);
76}
77
78// ------------------------------------------------------------------
79
81
83{
84 WorkflowSpec wf;
85 o2::conf::ConfigurableParam::updateFromString(cfgc.options().get<std::string>("configKeyValues"));
86 wf.emplace_back(o2::itsmft::getPhyTrigWriterSpec(cfgc.options().get<bool>("runmft") ? DetID::MFT : DetID::ITS));
87 return wf;
88}
o2::framework::DataAllocator::SubSpecificationType SubSpecificationType
Configurable generator for RootTreeWriter processor spec.
Definition Physics trigger record extracted from the ITS/MFT stream.
static void updateFromString(std::string const &)
Static class with identifiers, bitmasks and names for ALICE detectors.
Definition DetID.h:58
static constexpr const char * getName(ID id)
names of defined detectors
Definition DetID.h:145
static constexpr ID ITS
Definition DetID.h:63
static constexpr ID MFT
Definition DetID.h:71
ConfigParamRegistry & options() const
o2::header::DataHeader::SubSpecificationType SubSpecificationType
Generate a processor spec for the RootTreeWriter utility.
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
DataProcessorSpec getPhyTrigWriterSpec(DetID detId)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
static CompletionPolicy consumeWhenAllOrdered(const char *name, CompletionPolicy::Matcher matcher)
as consumeWhenAll, but ensures that records are processed with incremental timeSlice (DataHeader::sta...
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
void customize(std::vector< o2::framework::CompletionPolicy > &policies)