Project
Loading...
Searching...
No Matches
AnalysisContext.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_ANALYSISCONTEXT_H_
12#define O2_FRAMEWORK_ANALYSISCONTEXT_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//
34 std::vector<InputSpec> requestedAODs;
35 std::vector<OutputSpec> providedAODs;
36 std::vector<InputSpec> requestedDYNs;
37 std::vector<OutputSpec> providedDYNs;
38 std::vector<InputSpec> requestedIDXs;
39 std::vector<OutputSpec> providedOutputObjHist;
40 std::vector<InputSpec> spawnerInputs;
41
42 // Needed to created the hist writer
43 std::vector<OutputTaskInfo> outTskMap;
44 std::vector<OutputObjectInfo> outObjHistMap;
45
46 // Needed to create the output director
47 std::vector<InputSpec> outputsInputs;
48 std::vector<bool> isDangling;
49
50 // Needed to create the aod writer
51 std::vector<InputSpec> outputsInputsAOD;
52};
53} // namespace o2::framework
54
55extern template class std::vector<o2::framework::OutputObjectInfo>;
56extern template class std::vector<o2::framework::OutputTaskInfo>;
57
58#endif // O2_FRAMEWORK_ANALYSISCONTEXT_H_
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< InputSpec > requestedAODs
std::vector< OutputSpec > providedAODs
std::vector< InputSpec > spawnerInputs
std::vector< OutputTaskInfo > outTskMap
std::vector< InputSpec > outputsInputs
std::vector< InputSpec > requestedDYNs
std::vector< OutputObjectInfo > outObjHistMap
std::vector< InputSpec > requestedIDXs
std::vector< OutputSpec > providedOutputObjHist
std::vector< OutputSpec > providedDYNs
std::vector< InputSpec > outputsInputsAOD
std::vector< std::string > bindings