2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
4/// constructor for POOL with no parameters
5template< class CollectionT>
6MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer() :
7 IdentifiableContainer<CollectionT>(0)
11template< class CollectionT>
12// Constructor with parameters:
13MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer(unsigned int max) :
14 IdentifiableContainer<CollectionT>(max)
17template< class CollectionT>
18// Constructor with IdentifiableCache:
19MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer(EventContainers::IdentifiableCache<CollectionT> * cache):
20 IdentifiableContainer<CollectionT>(cache)