Project
Loading...
Searching...
No Matches
DanglingEdgesContext.h
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#ifndef O2_FRAMEWORK_DANGLINGEDGESCONTEXT_H_
12#define O2_FRAMEWORK_DANGLINGEDGESCONTEXT_H_
13
14#include <vector>
15#include "Framework/InputSpec.h"
17
18namespace o2::framework
19{
20class DataOutputDirector;
21
23 uint32_t id;
24 std::string name;
25};
26
28 uint32_t id;
29 std::vector<std::string> bindings;
30};
31
32// This will keep track of the inputs which have
33// been requested and for which we will need to inject
34// some source device.
36 // generic AOD tables
37 std::vector<InputSpec> requestedAODs;
38 std::vector<OutputSpec> providedAODs;
39 // extension tables
40 std::vector<InputSpec> requestedDYNs;
41 std::vector<OutputSpec> providedDYNs;
42 // index tables
43 std::vector<InputSpec> requestedIDXs;
44 std::vector<OutputSpec> providedIDXs;
45 // ccdb tables
46 std::vector<OutputSpec> providedTIMs;
47 std::vector<InputSpec> requestedTIMs;
48 // output objects
49 std::vector<OutputSpec> providedOutputObjHist;
50 // inputs for the extension spawner
51 std::vector<InputSpec> spawnerInputs;
52 // inputs for the index builder
53 std::vector<InputSpec> builderInputs;
54
55 // These are the timestamped tables which are required to
56 // inject the the CCDB objecs.
57 std::vector<InputSpec> analysisCCDBInputs;
58
59 // Needed to created the hist writer
60 std::vector<OutputTaskInfo> outTskMap;
61 std::vector<OutputObjectInfo> outObjHistMap;
62
63 // Needed to create the output director
64 std::vector<InputSpec> outputsInputs;
65 std::vector<bool> isDangling;
66
67 // Needed to create the aod writer
68 std::vector<InputSpec> outputsInputsAOD;
69};
70} // namespace o2::framework
71
72extern template class std::vector<o2::framework::OutputObjectInfo>;
73extern template class std::vector<o2::framework::OutputTaskInfo>;
74
75#endif // O2_FRAMEWORK_DANGLINGEDGESCONTEXT_H_
Defining ITS Vertex explicitly as messageable.
Definition Cartesian.h:288
std::vector< OutputObjectInfo > outObjHistMap
std::vector< OutputSpec > providedOutputObjHist
std::vector< InputSpec > analysisCCDBInputs
std::vector< OutputTaskInfo > outTskMap
std::vector< InputSpec > outputsInputsAOD
std::vector< std::string > bindings