ATLAS Offline Software
Loading...
Searching...
No Matches
StgcData.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_STGCDATA_H
6#define TRIGL2MUONSA_STGCDATA_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 channelType(-1)
29 {};
30
31 public:
32 double eta;
33 double phi;
34 double r;
35 double z;
39 double ResidualR;
42 unsigned int layerNumber;
44 };
45
46 // --------------------------------------------------------------------------------
47 // --------------------------------------------------------------------------------
48
49 typedef std::vector<StgcHitData> StgcHits;
50
51 // --------------------------------------------------------------------------------
52 // --------------------------------------------------------------------------------
53
54}
55
56#endif // TRIGL2MUONSA_STGCDATA_H
unsigned int layerNumber
Definition StgcData.h:42
std::vector< StgcHitData > StgcHits
Definition StgcData.h:49