EICd
EIC data model
RawCalorimeterHitData.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EICD_RawCalorimeterHitDATA_H
4#define EICD_RawCalorimeterHitDATA_H
5
6#include <cstdint>
7
8namespace eicd {
9
10
11/** @class RawCalorimeterHitData
12 * Raw (digitized) calorimeter hit
13 * @author: W. Armstrong, S. Joosten
14 */
16public:
17 std::uint64_t cellID{}; ///< The detector specific (geometrical) cell id.
18 std::uint64_t amplitude{}; ///< The magnitude of the hit in ADC counts.
19 std::uint64_t timeStamp{}; ///< Timing in TDC
20
21};
22
23} // namespace eicd
24
25
26#endif
Definition: RawCalorimeterHitData.h:15
std::uint64_t timeStamp
Timing in TDC.
Definition: RawCalorimeterHitData.h:19
std::uint64_t cellID
The detector specific (geometrical) cell id.
Definition: RawCalorimeterHitData.h:17
std::uint64_t amplitude
The magnitude of the hit in ADC counts.
Definition: RawCalorimeterHitData.h:18
Definition: CalorimeterHit.cc:13