ATLAS Offline Software
CTP_RDO_p1.h
Go to the documentation of this file.
1 // Dear emacs, this is -*- c++ -*-
2 #ifndef TRIGT1EVENTTPCNV_CTP_RDO_P1_H
3 /*
4  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
5 */
6 #define TRIGT1EVENTTPCNV_CTP_RDO_P1_H
7 
8 // System include(s):
9 #include <vector>
10 #include <inttypes.h>
11 
12 // Forward declaration of the converter:
13 class CTP_RDOCnv_p1;
14 
26 class CTP_RDO_p1 {
27 
28  friend class CTP_RDOCnv_p1;
29 
30 public:
31  CTP_RDO_p1();
32 
33 protected:
34  std::vector< uint32_t > m_dataWords;
35 
36 }; // class CTP_RDO_p1
37 
39  : m_dataWords()
40 {
41 }
42 
43 #endif // TRIGT1EVENTTPCNV_CTP_RDO_P1_H
CTP_RDO_p1::m_dataWords
std::vector< uint32_t > m_dataWords
Definition: CTP_RDO_p1.h:34
CTP_RDO_p1::CTP_RDO_p1
CTP_RDO_p1()
Definition: CTP_RDO_p1.h:38
CTP_RDOCnv_p1
T/P converter for CTP_RDO_p1.
Definition: CTP_RDOCnv_p1.h:27
CTP_RDO_p1
Persistent representation of CTP_RDO.
Definition: CTP_RDO_p1.h:26