ATLAS Offline Software
TileL2_p2.h
Go to the documentation of this file.
1 
3 /*
4  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // TileL2_p2.h
8 // Header file for class TileL2_p2
9 // Author: Aranzazu Ruiz <aranzazu.ruiz.martinez@cern.ch>
10 // Date: July 2008
12 #ifndef TILETPCNV_TILEL2_P2_H
13 #define TILETPCNV_TILEL2_P2_H
14 
15 #include <vector>
16 
17 // forward declarations
18 class TileL2Cnv_p2;
19 
20 class TileL2_p2 {
21 
22  // Make the AthenaPoolCnv class our friend
23  friend class TileL2Cnv_p2;
24 
25 public:
26 
29  TileL2_p2() : m_ID(0), m_ival(), m_fval() {}
30 
31 private:
32 
33  int m_ID;
34  std::vector<unsigned int> m_ival;
35  std::vector<float> m_fval;
36 
37 };
38 
39 #endif //> TILETPCNV_TILEL2_P2_H
TileL2_p2
Definition: TileL2_p2.h:20
TileL2_p2::m_fval
std::vector< float > m_fval
Definition: TileL2_p2.h:35
TileL2Cnv_p2
Definition: TileL2Cnv_p2.h:26
TileL2_p2::m_ID
int m_ID
Definition: TileL2_p2.h:33
TileL2_p2::m_ival
std::vector< unsigned int > m_ival
Definition: TileL2_p2.h:34
TileL2_p2::TileL2_p2
TileL2_p2()
Default constructor:
Definition: TileL2_p2.h:29