ATLAS Offline Software
TrigMonRoi_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 TRIGMON_ROI_P1_H
6 #define TRIGMON_ROI_P1_H
7 
8 /*
9  @author Rustem Ospanov
10  @date July 2009
11 
12  @brief Persistent copy of TrigMonRoi.
13 */
14 
15 #include <stdint.h>
16 #include <vector>
17 
19 {
20  public:
21 
24 
25  friend class TrigMonRoiCnv_p1;
26 
27  private:
28 
29  std::vector<uint32_t> m_word;
30  std::vector<uint16_t> m_var_key;
31  std::vector<float> m_var_val;
32 };
33 
34 #endif
TrigMonRoi_p1::m_word
std::vector< uint32_t > m_word
Definition: TrigMonRoi_p1.h:29
TrigMonRoi_p1::~TrigMonRoi_p1
~TrigMonRoi_p1()
Definition: TrigMonRoi_p1.h:23
TrigMonRoiCnv_p1
Definition: TrigMonRoiCnv_p1.h:16
TrigMonRoi_p1::m_var_val
std::vector< float > m_var_val
Definition: TrigMonRoi_p1.h:31
TrigMonRoi_p1::m_var_key
std::vector< uint16_t > m_var_key
Definition: TrigMonRoi_p1.h:30
TrigMonRoi_p1
Definition: TrigMonRoi_p1.h:19
TrigMonRoi_p1::TrigMonRoi_p1
TrigMonRoi_p1()
Definition: TrigMonRoi_p1.h:22