ATLAS Offline Software
TrigTrtHitCounts.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 //---------------------------------------------------------------
8 
10  m_barrel(),
11  m_endcapA() {
12 }
13 
14 //---------------------------------------------------------------
15 
17  const TrigHisto1D& barrel,
18  const TrigHisto1D& endcapA)
19  : m_endcapC(endcapC),
20  m_barrel(barrel),
21  m_endcapA(endcapA)
22 {
23 }
24 
25 //---------------------------------------------------------------
26 
28  TrigHisto1D&& barrel,
29  TrigHisto1D&& endcapA)
30  : m_endcapC(std::move(endcapC)),
31  m_barrel(std::move(barrel)),
32  m_endcapA(std::move(endcapA))
33 {
34 }
35 
36 //---------------------------------------------------------------
37 
39  return m_endcapC;
40 }
41 
43  return m_barrel;
44 }
45 
47  return m_endcapA;
48 }
TrigTrtHitCounts::m_endcapC
TrigHisto1D m_endcapC
Definition: TrigTrtHitCounts.h:47
TrigTrtHitCounts::m_barrel
TrigHisto1D m_barrel
Definition: TrigTrtHitCounts.h:48
TrigTrtHitCounts::endcapC
const TrigHisto1D & endcapC(void) const
Return a histogram of time over threshold for endcap C pixel clusters.
Definition: TrigTrtHitCounts.cxx:38
TrigTrtHitCounts.h
TrigHisto1D
A very basic one dimensional histogram to provide storage of HLT distributions, allowing constraints ...
Definition: TrigHisto1D.h:23
TrigTrtHitCounts::TrigTrtHitCounts
TrigTrtHitCounts(void)
Default constructor used by T/P converters.
Definition: TrigTrtHitCounts.cxx:9
TrigTrtHitCounts::endcapA
const TrigHisto1D & endcapA(void) const
Return a histogram of time over threshold for endcap A pixel clusters.
Definition: TrigTrtHitCounts.cxx:46
TrigTrtHitCounts::m_endcapA
TrigHisto1D m_endcapA
Definition: TrigTrtHitCounts.h:49
TrigTrtHitCounts::barrel
const TrigHisto1D & barrel(void) const
Return a histogram of time over threshold for barrel pixel clusters.
Definition: TrigTrtHitCounts.cxx:42