ATLAS Offline Software
Loading...
Searching...
No Matches
TGCBIDOut.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TGCBIDOut_hh
6#define TGCBIDOut_hh
7
9
10namespace LVL1TGCTrigger {
11
12class TGCBIDOut : public TGCASDOut {
13
14public:
15 TGCBIDOut();
16 TGCBIDOut(const TGCASDOut* ASDOut);
17
18 virtual ~TGCBIDOut() = default;
19
20 void setBid(int bidIn){ m_bid=bidIn;};
21 int getBid() const { return m_bid;};
22
23private:
24 int m_bid;
25};
26
27
28} //end of namespace bracket
29
30#endif
void setBid(int bidIn)
Definition TGCBIDOut.h:20
virtual ~TGCBIDOut()=default