ATLAS Offline Software
PrepRawDataContainer.icc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 ///////////////////////////////////////////////////////////////////
6 // PrepRawDataContainer.icc
7 // Implementation file for class PrepRawDataContainer
8 ///////////////////////////////////////////////////////////////////
9 // (c) ATLAS Detector software
10 ///////////////////////////////////////////////////////////////////
11 // Version 1.0 15/07/2003 Veronique Boisvert
12 ///////////////////////////////////////////////////////////////////
13 
14 // namespace Trk{
15 
16 template< class CollectionT>
17 // Constructor with parameters:
18 PrepRawDataContainer< CollectionT>::PrepRawDataContainer(unsigned int max) :
19  IdentifiableContainer<CollectionT>(max)
20 {
21 }
22 
23 template< class CollectionT>
24 // Constructor with parameters:
25 PrepRawDataContainer< CollectionT>::PrepRawDataContainer(unsigned int max, EventContainers::Mode mode) :
26  IdentifiableContainer<CollectionT>(max, mode)
27 {
28 }
29 
30 
31 template< class CollectionT>
32 // Constructor with parameters:
33 PrepRawDataContainer< CollectionT>::PrepRawDataContainer() :
34  IdentifiableContainer<CollectionT>(0)
35 {
36 }
37 
38 template< class CollectionT>
39 // Constructor with parameters:
40 PrepRawDataContainer< CollectionT>::PrepRawDataContainer(EventContainers::IdentifiableCache<CollectionT>* cache) :
41  IdentifiableContainer<CollectionT>(cache)
42 {
43  // cppcheck-suppress missingReturn; false positive
44 }
45 
46 
47 template< class CollectionT>
48 // Destructor:
49 PrepRawDataContainer< CollectionT>::~PrepRawDataContainer()
50 {
51 }
52 
53 template< class CollectionT>
54 const CLID& PrepRawDataContainer< CollectionT>::classID()
55 {
56  return ClassID_traits< PrepRawDataContainer <CollectionT> > ::ID();
57 }
58 
59 template< class CollectionT>
60 const CLID& PrepRawDataContainer< CollectionT>::clID() const
61 {
62  return classID();
63 }
64 // }
65