ATLAS Offline Software
Loading...
Searching...
No Matches
TrigMonSeq_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_SEQ_P1_H
6#define TRIGMON_SEQ_P1_H
7
8/*
9 @author Rustem Ospanov
10 @date July 2009
11
12 @brief Persistent copy of TrigMonSeq.
13*/
14
15#include <stdint.h>
16#include <vector>
18
20{
21 public:
22
24 m_encoded(0),
25 m_alg(),
26 m_var_key(),
27 m_var_val() {}
29
30 friend class TrigMonSeqCnv_p1;
31
32 private:
33
34 uint32_t m_encoded;
35 std::vector<TrigMonAlg_p1> m_alg;
36 std::vector<uint16_t> m_var_key;
37 std::vector<float> m_var_val;
38};
39
40#endif
std::vector< TrigMonAlg_p1 > m_alg
std::vector< uint16_t > m_var_key
uint32_t m_encoded
std::vector< float > m_var_val
friend class TrigMonSeqCnv_p1