ATLAS Offline Software
Muon_ROI_p1.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef ANALYSISTRIGGEREVENTTPCNV_MUON_ROI_P1_H
6 #define ANALYSISTRIGGEREVENTTPCNV_MUON_ROI_P1_H
7 
8 // Needed includes:
9 #include <string>
10 #include <Rtypes.h>
11 
12 // Forward declaration of converter:
13 class LVL1_ROICnv_p1;
14 
25 class Muon_ROI_p1 {
26 
27  friend class LVL1_ROICnv_p1;
28 
29 public:
30  Muon_ROI_p1();
31 
32 protected:
33  UInt_t m_roiWord;
34  Float_t m_eta;
35  Float_t m_phi;
36  Float_t m_thrValue;
37  std::string m_thrName;
38 
39 }; // class Muon_ROI_p1
40 
41 // Inline declaration of constructor:
43  : m_roiWord( 0 ), m_eta( 0.0 ), m_phi( 0.0 ), m_thrValue( 0.0 ), m_thrName( "" ) {
44 
45 }
46 
47 #endif // ANALYSISTRIGGEREVENTTPCNV_MUON_ROI_P1_H
Muon_ROI_p1
Persistent representation of Muon_ROI.
Definition: Muon_ROI_p1.h:25
LVL1_ROICnv_p1
T/P converter for LVL1_ROI and LVL1_ROI_p1.
Definition: LVL1_ROICnv_p1.h:25
Muon_ROI_p1::Muon_ROI_p1
Muon_ROI_p1()
Definition: Muon_ROI_p1.h:42
Muon_ROI_p1::m_thrValue
Float_t m_thrValue
Definition: Muon_ROI_p1.h:36
Muon_ROI_p1::m_roiWord
UInt_t m_roiWord
Definition: Muon_ROI_p1.h:33
Muon_ROI_p1::m_phi
Float_t m_phi
Definition: Muon_ROI_p1.h:35
Muon_ROI_p1::m_thrName
std::string m_thrName
Definition: Muon_ROI_p1.h:37
Muon_ROI_p1::m_eta
Float_t m_eta
Definition: Muon_ROI_p1.h:34