ATLAS Offline Software
TileHit_p1.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef TILESIMEVENT_TILEHIT_P1_H
6 #define TILESIMEVENT_TILEHIT_P1_H
7 #include <vector>
8 
9 class TileHit_p1 {
10  public:
12  friend class TileHitCnv_p1;
13 
14  private:
15  unsigned int m_channelID; // identifier of the cell in which this hit occured.
16  std::vector<float> m_energy; // energy deposited in scint, as seen by pmt
17  std::vector<float> m_time; // time of the energy deposition relative to BC
18 };
19 
20 #endif
TileHit_p1::TileHit_p1
TileHit_p1()
Definition: TileHit_p1.h:11
TileHitCnv_p1
Definition: TileHitCnv_p1.h:22
TileHit_p1::m_time
std::vector< float > m_time
Definition: TileHit_p1.h:17
TileHit_p1
Definition: TileHit_p1.h:9
TileHit_p1::m_energy
std::vector< float > m_energy
Definition: TileHit_p1.h:16
TileHit_p1::m_channelID
unsigned int m_channelID
Definition: TileHit_p1.h:15