ATLAS Offline Software
Loading...
Searching...
No Matches
LUCID_DetElemHash.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
7
8
9//__________________________________________________________________________
11 :
12 m_helper(nullptr),
13 m_context(nullptr),
14 m_max(16)
15{}
16//__________________________________________________________________________
18{
19 m_helper = other.m_helper;
20// IdContext& cntx = *other.m_context;
21 // m_context = new IdContext(cntx.prefix_id(), cntx.begin_index(), cntx.end_index());
22 m_max = other.m_max;
23 m_context = nullptr;
24}
25//__________________________________________________________________________
27{
28// delete m_context;
29}
30
31//__________________________________________________________________________
33{
34 return m_max;
35}
36
const IdHelper * m_helper