ATLAS Offline Software
Loading...
Searching...
No Matches
MuonCoinDataCollection.icc
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5template< class CoinDataT >
6// Constructor with parameters:
7MuonCoinDataCollection< CoinDataT >::MuonCoinDataCollection(const IdentifierHash idHash) :
8 m_idHash{idHash}{}
9
10
11template< class CoinDataT >
12Identifier MuonCoinDataCollection< CoinDataT >::identify() const
13{
14 return m_id;
15}
16
17template< class CoinDataT >
18IdentifierHash MuonCoinDataCollection< CoinDataT >::identifyHash() const
19{
20 return m_idHash;
21}
22template< class CoinDataT >
23void MuonCoinDataCollection< CoinDataT >::setIdentifier(Identifier id)
24{
25 m_id = id;
26}
27
28template< class CoinDataT >
29std::string MuonCoinDataCollection< CoinDataT >::type() const
30{
31 return "MuonCoinDataCollection";
32}
33
34