ATLAS Offline Software
Loading...
Searching...
No Matches
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
16template< class CollectionT>
17// Constructor with parameters:
18PrepRawDataContainer< CollectionT>::PrepRawDataContainer(unsigned int max) :
19 IdentifiableContainer<CollectionT>(max)
20{
21}
22
23template< class CollectionT>
24// Constructor with parameters:
25PrepRawDataContainer< CollectionT>::PrepRawDataContainer(unsigned int max, EventContainers::Mode mode) :
26 IdentifiableContainer<CollectionT>(max, mode)
27{
28}
29
30
31template< class CollectionT>
32// Constructor with parameters:
33PrepRawDataContainer< CollectionT>::PrepRawDataContainer() :
34 IdentifiableContainer<CollectionT>(0)
35{
36}
37
38template< class CollectionT>
39// Constructor with parameters:
40PrepRawDataContainer< CollectionT>::PrepRawDataContainer(EventContainers::IdentifiableCache<CollectionT>* cache) :
41 IdentifiableContainer<CollectionT>(cache)
42{
43//cppcheck-suppress missingReturn
44}
45
46
47template< class CollectionT>
48// Destructor:
49PrepRawDataContainer< CollectionT>::~PrepRawDataContainer()
50{
51}
52
53template< class CollectionT>
54const CLID& PrepRawDataContainer< CollectionT>::classID()
55{
56 return ClassID_traits< PrepRawDataContainer <CollectionT> > ::ID();
57}
58
59template< class CollectionT>
60const CLID& PrepRawDataContainer< CollectionT>::clID() const
61{
62 return classID();
63}
64// }
65