The Gaudi Framework  master (b9786168)
Loading...
Searching...
No Matches
dict.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
15
21
23
24// template ObjectVector<MyTrack>;
25// template ObjectVector<MyVertex>;
26// template std::vector<MyTrack*>;
27// template std::vector<MyVertex*>;
28// template std::vector<SmartRef<MyTrack> >;
29// template std::vector<SmartRef<MyVertex> >;
30// template KeyedContainer<MyTrack>;
31// template KeyedContainer<MyVertex>;
32// template KeyedObject<long>;
33// template std::vector<KeyedObject<long int>* >;
37 std::vector<Gaudi::TestSuite::MyTrack*> i3;
38 std::vector<Gaudi::TestSuite::MyVertex*> i4;
39 std::vector<SmartRef<Gaudi::TestSuite::MyTrack>> i5;
40 std::vector<SmartRef<Gaudi::TestSuite::MyVertex>> i6;
44 std::vector<KeyedObject<int>*> i10;
45 // KeyedObject<long> i11;
46 // std::vector<KeyedObject<long int>* > i12;
47};
48
49#ifdef __ICC
50// disable icc warning #191: type qualifier is meaningless on cast type
51// ... a lot of noise produced by the dictionary
52# pragma warning( disable : 191 )
53#endif
template class KeyedContainer, KeyedContainer.h
Definition of the templated KeyedObject class.
Definition KeyedObject.h:37
ObjectVector is one of the basic Gaudi container classes capable of being registered in Data Stores.
ObjectVector< Gaudi::TestSuite::MyVertex > i2
Definition dict.h:36
KeyedContainer< Gaudi::TestSuite::MyTrack > i7
Definition dict.h:41
KeyedObject< int > i9
Definition dict.h:43
std::vector< Gaudi::TestSuite::MyTrack * > i3
Definition dict.h:37
std::vector< Gaudi::TestSuite::MyVertex * > i4
Definition dict.h:38
std::vector< SmartRef< Gaudi::TestSuite::MyTrack > > i5
Definition dict.h:39
ObjectVector< Gaudi::TestSuite::MyTrack > i1
Definition dict.h:35
KeyedContainer< Gaudi::TestSuite::MyVertex > i8
Definition dict.h:42
std::vector< SmartRef< Gaudi::TestSuite::MyVertex > > i6
Definition dict.h:40
std::vector< KeyedObject< int > * > i10
Definition dict.h:44