ATLAS Offline Software
Loading...
Searching...
No Matches
MmData.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_MMDATA_H
6#define TRIGL2MUONSA_MMDATA_H
7
8namespace TrigL2MuonSA {
9
10 // --------------------------------------------------------------------------------
11 // --------------------------------------------------------------------------------
12
14 {
15 public:
17 eta(0),
18 phi(0),
19 r(0),
20 z(0),
21 stationEta(0),
22 stationPhi(0),
23 stationName(0),
24 ResidualR(999.),
25 ResidualPhi(999.),
26 isOutlier(0),
27 layerNumber(999)
28 {};
29
30 public:
31 double eta;
32 double phi;
33 double r;
34 double z;
38 double ResidualR;
41 unsigned int layerNumber;
42 };
43
44 // --------------------------------------------------------------------------------
45 // --------------------------------------------------------------------------------
46
47 typedef std::vector<MmHitData> MmHits;
48
49 // --------------------------------------------------------------------------------
50 // --------------------------------------------------------------------------------
51
52}
53
54#endif // TRIGL2MUONSA_MMDATA_H
unsigned int layerNumber
Definition MmData.h:41
std::vector< MmHitData > MmHits
Definition MmData.h:47