ATLAS Offline Software
Loading...
Searching...
No Matches
TrigConfChain_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 TRIGCONF_CHAIN_P1_H
6#define TRIGCONF_CHAIN_P1_H
7
8/*
9 @author Rustem Ospanov
10 @date July 2009
11
12 @brief Persistent partner for TrigConfChain.
13*/
14
15#include <stdint.h>
16#include <string>
17#include <vector>
18
20
22{
23 public:
24
41
42 friend class TrigConfChainCnv_p1;
43
44 private:
45
46 std::string m_chain_name;
47 std::string m_lower_name;
48 uint32_t m_chain_id;
49 uint32_t m_lower_id;
52 uint8_t m_level;
55
56 std::vector<uint32_t> m_lower_ids;
57 std::vector<float> m_stream_prescale;
58 std::vector<TrigConfSig_p1> m_signature;
59 std::vector<std::string> m_stream_name;
60 std::vector<std::string> m_group;
61};
62
63#endif
std::string m_chain_name
std::vector< TrigConfSig_p1 > m_signature
std::vector< std::string > m_stream_name
std::string m_lower_name
std::vector< std::string > m_group
std::vector< float > m_stream_prescale
std::vector< uint32_t > m_lower_ids
friend class TrigConfChainCnv_p1