ATLAS Offline Software
Loading...
Searching...
No Matches
TGCCable.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef MUONTGC_CABLING_TGCCABLE_HH
6#define MUONTGC_CABLING_TGCCABLE_HH
7
11
12namespace MuonTGC_Cabling {
13
14class TGCCable {
15 public:
29
30 // Constructor & Destructor
32 virtual ~TGCCable() = default;
33
34 CableType getCableType() const { return m_type; }
35
36 private:
38};
39
40} // namespace MuonTGC_Cabling
41
42#endif
virtual ~TGCCable()=default
CableType getCableType() const
Definition TGCCable.h:34
TGCCable(CableType type=NoCableType)
Definition TGCCable.h:31