ATLAS Offline Software
Loading...
Searching...
No Matches
RpcFitResult.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_RPCFITRESULT_H
6#define TRIGL2MUONSA_RPCFITRESULT_H
7
8namespace TrigL2MuonSA {
9
10 // --------------------------------------------------------------------------------
11 // --------------------------------------------------------------------------------
12
14 {
15 public:
17
18 public:
19 void Clear()
20 {
21 isSuccess = false;
22 phiDir = 0;
23 isPhiDir = false;
24 phi = 0;
25 dPhidZ = 0;
26
27 phi_inner = 0;
28 slope_inner = 0;
29 offset_inner = 0;
30
31 phi_middle = 0;
32 slope_middle = 0;
33 offset_middle = 0;
34
35 phi_outer = 0;
36 slope_outer = 0;
37 offset_outer = 0;
38 };
39
40 public:
42 double phiDir;
44 double phi;
45 double dPhidZ;
46
47 double phi_inner;
50
51 double phi_middle;
54
55 double phi_outer;
58 };
59}
60
61#endif