ATLAS Offline Software
Loading...
Searching...
No Matches
TgcData.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGL2MUONSA_TGCDATA_H
6#define TRIGL2MUONSA_TGCDATA_H
7
8namespace TrigL2MuonSA {
9
10// --------------------------------------------------------------------------------
11// --------------------------------------------------------------------------------
12
14{
15 public:
17 eta(0),
18 phi(0),
19 r(0),
20 z(0),
21 width(0),
22 sta(0),
23 isStrip(false),
24 bcTag(0),
25 inRoad(false)
26 {};
27
28 public:
29 double eta;
30 double phi;
31 double r;
32 double z;
33 double width;
34 int sta;
35 bool isStrip;
36 int bcTag;
37 bool inRoad;
38};
39
40// --------------------------------------------------------------------------------
41// --------------------------------------------------------------------------------
42
43typedef std::vector<TgcHitData> TgcHits;
44
45// --------------------------------------------------------------------------------
46// --------------------------------------------------------------------------------
47
48}
49
50#endif // TRIGL2MUONSA_TGCDATA_H
std::vector< TgcHitData > TgcHits
Definition TgcData.h:43