ATLAS Offline Software
MuonPrepDataContainer.icc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 /// constructor for POOL with no parameters
5 template< class CollectionT>
6 MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer() :
7  IdentifiableContainer<CollectionT>(0)
8 {
9 }
10 
11 template< class CollectionT>
12 // Constructor with parameters:
13 MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer(unsigned int max) :
14  IdentifiableContainer<CollectionT>(max)
15 {}
16 
17 template< class CollectionT>
18 // Constructor with IdentifiableCache:
19 MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer(EventContainers::IdentifiableCache<CollectionT> * cache):
20  IdentifiableContainer<CollectionT>(cache)
21  // cppcheck-suppress missingReturn; false positive
22 {}