ATLAS Offline Software
LUCID_Digit.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 #include <iostream>
7 
9 
10  m_tubeID = 0;
11  m_npe = 0;
12  m_npeGas = 0;
13  m_npePmt = 0;
14  m_qdc = 0;
15  m_tdc = 0;
16  m_isHit = 0;
17 }
18 
19 LUCID_Digit::LUCID_Digit(const unsigned short tubeID,
20  const double npe,
21  const unsigned short npeGas,
22  const unsigned short npePmt,
23  const unsigned short qdc,
24  const unsigned short tdc,
25  const bool isHit):
26  m_tubeID(tubeID),
27  m_npe (npe),
28  m_npeGas(npeGas),
29  m_npePmt(npePmt),
30  m_qdc (qdc),
31  m_tdc (tdc),
32  m_isHit (isHit)
33 {}
LUCID_Digit::LUCID_Digit
LUCID_Digit()
Definition: LUCID_Digit.cxx:8
LUCID_Digit::m_npeGas
unsigned short m_npeGas
Definition: LUCID_Digit.h:36
LUCID_Digit::m_npe
double m_npe
Definition: LUCID_Digit.h:35
LUCID_Digit.h
LUCID_Digit::m_tubeID
unsigned short m_tubeID
Definition: LUCID_Digit.h:34
LUCID_Digit::m_tdc
unsigned short m_tdc
Definition: LUCID_Digit.h:39
LUCID_Digit::m_npePmt
unsigned short m_npePmt
Definition: LUCID_Digit.h:37
LUCID_Digit::m_qdc
unsigned short m_qdc
Definition: LUCID_Digit.h:38
LUCID_Digit::m_isHit
bool m_isHit
Definition: LUCID_Digit.h:40