ATLAS Offline Software
Loading...
Searching...
No Matches
AlgorithmData.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7
8
9//
10// includes
11//
12
14
16
17//
18// method implementations
19//
20
21namespace EL
22{
23 namespace Detail
24 {
25 AlgorithmData ::
26 AlgorithmData (std::unique_ptr<IAlgorithmWrapper> val_algorithm)
27 : m_algorithm (std::move (val_algorithm))
28 {}
29
30 AlgorithmData ::
31 ~AlgorithmData () noexcept
32 {
33 // made explicit to reduce include dependencies
34 }
35 }
36}
This module defines the arguments passed from the BATCH driver to the BATCH worker.
STL namespace.
std::unique_ptr< IAlgorithmWrapper > m_algorithm
the algorithm we use