ATLAS Offline Software
Loading...
Searching...
No Matches
TTrainedNetworkCollection.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef _TTrainedNetworkCollection_H_
6#define _TTrainedNetworkCollection_H_
7
8#include <vector>
9#include <memory>
11
13 : public std::vector<std::unique_ptr<TTrainedNetwork> >
14{
15public:
16 // for debugging :
17 void setNames(const std::vector<std::string> &names) { m_names = names; }
18 const vector<std::string> &names() const { return m_names; }
19
20private:
21 std::vector<std::string> m_names;
22};
23
26
27#include "AthenaKernel/CondCont.h"
29
30#endif
#define CONDCONT_DEF(...)
Definition CondCont.h:1413
macros to associate a CLID to a type
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
std::vector< std::string > m_names
const vector< std::string > & names() const
void setNames(const std::vector< std::string > &names)