ATLAS Offline Software
Loading...
Searching...
No Matches
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
5template< class CollectionT>
6MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer() :
7 IdentifiableContainer<CollectionT>(0)
8{
9}
10
11template< class CollectionT>
12// Constructor with parameters:
13MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer(unsigned int max) :
14 IdentifiableContainer<CollectionT>(max)
15{}
16
17template< class CollectionT>
18// Constructor with IdentifiableCache:
19MuonPrepDataContainer<CollectionT>::MuonPrepDataContainer(EventContainers::IdentifiableCache<CollectionT> * cache):
20 IdentifiableContainer<CollectionT>(cache)
21{}