ATLAS Offline Software
MuonCoinDataContainer.icc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 ///////////////////////////////////////////////////////////////////
6 // MuonCoinDataContainer.icc
7 // Implementation file for class MuonCoinDataContainer
8 ///////////////////////////////////////////////////////////////////
9 // (c) ATLAS Detector software
10 ///////////////////////////////////////////////////////////////////
11 
12 
13 template< class CollectionT>
14 // Constructor with parameters:
15 MuonCoinDataContainer< CollectionT>::MuonCoinDataContainer(unsigned int max) :
16  IdentifiableContainer<CollectionT>(max)
17 {}
18 
19 template< class CollectionT>
20 // Constructor with parameters:
21 MuonCoinDataContainer< CollectionT>::MuonCoinDataContainer(EventContainers::IdentifiableCache<CollectionT> * cache) :
22  IdentifiableContainer<CollectionT>(cache)
23 {}
24 
25 template< class CollectionT>
26 // Destructor
27 MuonCoinDataContainer< CollectionT>::~MuonCoinDataContainer()
28 {
29 }
30