ATLAS Offline Software
Loading...
Searching...
No Matches
LArTTCell.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_H
6#define CALOTRIGGERTOOL_LARTTCELL_H
7
8#include <vector>
9
10// F. Ledroit, Sept 29, 2006
11// class created following LArOnOffId example by Hong Ma
12
13// TRIGPN TRIGSAMPL TRIGREG TRIGETA TRIGPHI LAYER DETID PN SAMPL REGION ETA PHI
18{
19 short tpn;
20 unsigned short tsample ;
21 unsigned short tregion ;
22 unsigned short teta ;
23 unsigned short tphi ;
24 unsigned short layer ;
25
26 unsigned short det;
27 short pn;
28 unsigned short sample;
29 unsigned short region;
30 unsigned short eta;
31 unsigned short phi;
32
33} ;
34
35typedef std::vector<LArTTCell_t> LArTTCell;
36
37#endif
std::vector< LArTTCell_t > LArTTCell
Definition LArTTCell.h:35
Structure definition of the LArTTCellMap.
Definition LArTTCell.h:18
unsigned short region
Definition LArTTCell.h:29
unsigned short sample
Definition LArTTCell.h:28
unsigned short tphi
Definition LArTTCell.h:23
unsigned short phi
Definition LArTTCell.h:31
unsigned short eta
Definition LArTTCell.h:30
short tpn
Definition LArTTCell.h:19
unsigned short det
Definition LArTTCell.h:26
unsigned short tsample
Definition LArTTCell.h:20
unsigned short layer
Definition LArTTCell.h:24
unsigned short tregion
Definition LArTTCell.h:21
unsigned short teta
Definition LArTTCell.h:22