ATLAS Offline Software
Loading...
Searching...
No Matches
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
9class 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
friend class TileHitCnv_p1
Definition TileHit_p1.h:12
std::vector< float > m_time
Definition TileHit_p1.h:17
std::vector< float > m_energy
Definition TileHit_p1.h:16
unsigned int m_channelID
Definition TileHit_p1.h:15