ATLAS Offline Software
TileMuFeature_p1.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 /**********************************************************************************
6  * @Project: Trigger
7  * @Package: TrigMuonEventTPCnv
8  * @class : TileMuFeature_p1
9  *
10  * @brief persistent partner for TileMuFeature
11  *
12  * @author Heuijin Lim <hjlim@hep.anl.gov>
13  * @Created: Apr. 16. 2008
14  **********************************************************************************/
15 
16 #ifndef TRIGMUONEVENTTPCNV_TILEMUFEATURE_P1_H
17 #define TRIGMUONEVENTTPCNV_TILEMUFEATURE_P1_H
18 
19 #include <stdint.h>
20 #include <string>
21 
22 
24 {
25 
26  friend class TileMuFeatureCnv;
27 
28  public:
29 
30  TileMuFeature_p1() = default;
31  virtual ~TileMuFeature_p1() = default;
32 
33  float m_eta{};
34  float m_phi{};
35  std::vector<float> m_energy_deposited;
36  float m_quality_factor{};
37 };
38 
39 #endif
40 
TileMuFeature_p1::m_energy_deposited
std::vector< float > m_energy_deposited
Definition: TileMuFeature_p1.h:44
TileMuFeature_p1
Definition: TileMuFeature_p1.h:24
TileMuFeatureCnv
transient persistent converter for TileMuFeatureCnv
Definition: TileMuFeatureCnv.h:33
TileMuFeature_p1::TileMuFeature_p1
TileMuFeature_p1()=default
TileMuFeature_p1::~TileMuFeature_p1
virtual ~TileMuFeature_p1()=default
TileMuFeature_p1::m_eta
float m_eta
Definition: TileMuFeature_p1.h:42
TileMuFeature_p1::m_quality_factor
float m_quality_factor
Definition: TileMuFeature_p1.h:45
TileMuFeature_p1::m_phi
float m_phi
Definition: TileMuFeature_p1.h:43