ATLAS Offline Software
Loading...
Searching...
No Matches
LArTTCell_P.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 CALOTRIGGERTOOL_LARTTCELL_P_H
6#define CALOTRIGGERTOOL_LARTTCELL_P_H
7
8#include <vector>
10
11// F. Ledroit, Sept 29, 2006
12// class created following LArOnOffId_P example by Hong Ma
13
23{
24public:
25
28 {
29 short tpn;
30 unsigned short tsample ;
31 unsigned short tregion ;
32 unsigned short teta ;
33 unsigned short tphi ;
34 unsigned short layer ;
35
36 // det=0,1,2 for EM/HEC/FCAL
37 // 9,8,7 for EM/HEC/FCAL disconnected.
38
39 unsigned short det;
40 short pn;
41 unsigned short sample;
42 unsigned short region;
43 unsigned short eta;
44 unsigned short phi;
45
46 } ;
48
50
51 virtual ~LArTTCell_P() { }
52
53
54 std::vector<__t> m_v;
55
56 int m_version ;
57};
58
59#endif
virtual ~LArTTCell_P()
Definition LArTTCell_P.h:51
LArTTCell_P_t __t
Definition LArTTCell_P.h:47
std::vector< __t > m_v
Definition LArTTCell_P.h:54
Structure of the map.
Definition LArTTCell_P.h:28