forked from acts-project/acts
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSequenceElement.cpp
More file actions
30 lines (23 loc) · 873 Bytes
/
SequenceElement.cpp
File metadata and controls
30 lines (23 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// This file is part of the ACTS project.
//
// Copyright (C) 2016 CERN for the benefit of the ACTS project
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
#include "ActsExamples/Framework/SequenceElement.hpp"
namespace ActsExamples {
void SequenceElement::registerWriteHandle(const DataHandleBase& handle) {
m_writeHandles.push_back(&handle);
}
void SequenceElement::registerReadHandle(const DataHandleBase& handle) {
m_readHandles.push_back(&handle);
}
const std::vector<const DataHandleBase*>& SequenceElement::writeHandles()
const {
return m_writeHandles;
}
const std::vector<const DataHandleBase*>& SequenceElement::readHandles() const {
return m_readHandles;
}
} // namespace ActsExamples