ATLAS Offline Software
Loading...
Searching...
No Matches
CaloCalibrationHitContainer_p4.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef CALOSIMEVENTTPCNV_CALOCALIBRATIONHITCONTAINER_P4_H
6#define CALOSIMEVENTTPCNV_CALOCALIBRATIONHITCONTAINER_P4_H
12#include <vector>
13#include <string>
14
16{
17public:
18
21
22 // Accessors
23 const std::string& name() const;
24
25 std::vector<unsigned int> m_channelHash;
26 std::vector<unsigned int> m_energy; // 18 bits compressed - all four of them in the same array
27 std::string m_name;
28 std::vector<unsigned int> m_particleUID;
29
30};
31
32// inlines
33
35
36inline const std::string& CaloCalibrationHitContainer_p4::name() const {return m_name;}
37
38#endif