ATLAS Offline Software
Loading...
Searching...
No Matches
LArHitContainer_p2.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 LARHITCONTAINER_P2_H
6#define LARHITCONTAINER_P2_H
12#include <vector>
13#include <string>
14
16{
17public:
18
21
22 // Accessors
23 const std::string& name() const;
24 //private:
25 std::vector<unsigned int> m_channelHash;
26 std::vector<unsigned int> m_energy; // 18 bits compressed
27 std::vector<unsigned short> m_time; // store as unsigned short
28 std::string m_name;
29};
30
31
32// inlines
33
35
36inline const std::string& LArHitContainer_p2::name() const
37{return m_name;}
38
39#endif
std::vector< unsigned int > m_channelHash
std::vector< unsigned int > m_energy
const std::string & name() const
std::vector< unsigned short > m_time
LArHitContainer_p2()
Default constructor.