ATLAS Offline Software
Loading...
Searching...
No Matches
LArHit_p1.h
Go to the documentation of this file.
1// This file's extension implies that it's C, but it's really -*- C++ -*-.
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef LARHIT_P1_H
8#define LARHIT_P1_H
12
13class LArHit_p1 {
14 public:
16 : m_channelID(0),
17 m_energy(0),
18 m_time(0)
19 {};
20 friend class LArHitCnv_p1;
21 friend class LArHitFloatCnv_p1;
22
23 private:
25 unsigned int m_channelID;
26
28 float m_energy;
29
30 // time (in ns)
31 float m_time;
32};
33
34#endif
friend class LArHitFloatCnv_p1
Definition LArHit_p1.h:21
float m_time
Definition LArHit_p1.h:31
unsigned int m_channelID
identifier of the cell in which this hit occured.
Definition LArHit_p1.h:25
friend class LArHitCnv_p1
Definition LArHit_p1.h:20
float m_energy
energy (in MeV) deposited in this hit
Definition LArHit_p1.h:28