ATLAS Offline Software
Loading...
Searching...
No Matches
RpcData.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGL2MUONSA_RPCDATA_H
6#define TRIGL2MUONSA_RPCDATA_H
7
8namespace TrigL2MuonSA {
9
10 // --------------------------------------------------------------------------------
11 // --------------------------------------------------------------------------------
12
14 {
15 public:
17 x(0),
18 y(0),
19 z(0),
20 time(0),
23 gasGap(0),
24 doubletR(0),
25 doubletPhi(0),
26 doubletZ(0),
27 layer(0),
28 eta(0),
29 phi(0),
30 l(0),
31 measuresPhi(false),
32 stationName("")
33 {};
34
35 public:
36 double x;
37 double y;
38 double z;
39 double time;
42 int gasGap;
46 int layer;
47 double eta;
48 double phi;
49 double l;
51 std::string stationName;
52 };
53
54 // --------------------------------------------------------------------------------
55 // --------------------------------------------------------------------------------
56
57 typedef std::vector<RpcHitData> RpcHits;
58
59 // --------------------------------------------------------------------------------
60 // --------------------------------------------------------------------------------
61
62}
63
64#endif // TRIGL2MUONSA_RPCDATA_H
std::string stationName
Definition RpcData.h:51
std::vector< RpcHitData > RpcHits
Definition RpcData.h:57