ATLAS Offline Software
Loading...
Searching...
No Matches
TGCTMDBOut.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7#include <iostream>
8
9namespace LVL1TGC {
10
15
16TGCTMDBOut::TGCTMDBOut(const int side, const int module, const TileModuleHit hit56, const TileModuleHit hit6)
17 : m_sideID(side), m_moduleID(module), m_hit_56(hit56), m_hit_6(hit6)
18{
19}
20
22{
23 std::cout << "Side=" << m_sideID
24 << " :: ModuleID=" << m_moduleID
25 << " :: Hit_56=" << m_hit_56
26 << " :: Hit_6=" << m_hit_6
27 << std::endl;
28}
29
30
31} // end of namespace
void print() const
TileModuleHit m_hit_56
Definition TGCTMDBOut.h:46
TileModuleHit m_hit_6
Definition TGCTMDBOut.h:47