ATLAS Offline Software
Loading...
Searching...
No Matches
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
19LUCID_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{}
bool isHit() const
Definition LUCID_Digit.h:27
unsigned short m_tubeID
Definition LUCID_Digit.h:34
unsigned short m_npeGas
Definition LUCID_Digit.h:36
double m_npe
Definition LUCID_Digit.h:35
unsigned short m_tdc
Definition LUCID_Digit.h:39
unsigned short m_npePmt
Definition LUCID_Digit.h:37
unsigned short m_qdc
Definition LUCID_Digit.h:38