ATLAS Offline Software
Lvl1Result_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 /**********************************************************************************
6  * @Project: Trigger
7  * @Package: TrigSteeringEventTPCnv
8  * @class : Lvl1Result_p1
9  *
10  * @brief persistent representation of Lvl1ResultData.
11  *
12  * @author Andrew Hamilton <Andrew.Hamilton@cern.ch> - U. of Geneva, Switzerland
13  * @author Francesca Bucci <f.bucci@cern.ch> - U. of Geneva, Switzerland
14  *
15  * File and Version Information:
16  * $Id: Lvl1Result_p1.h,v 1.2 2009-04-01 22:14:57 salvator Exp $
17  **********************************************************************************/
18 
19 #ifndef TrigSteeringEventTPCnv_Lvl1Result_p1_H
20 #define TrigSteeringEventTPCnv_Lvl1Result_p1_H
21 
22 #include <vector>
23 
25 
26 
27 // needed to fix a Gaudi problem in SLC3 (should be removed eventually):
28 #include <stdint.h>
29 
30 namespace LVL1CTP {
31 
32  class Lvl1Result_p1
33  {
34  friend class Lvl1ResultCnv;
35 
36  public:
37 
38  // default constructor
39  Lvl1Result_p1() { }
40 
41  // default destructor
42  virtual ~Lvl1Result_p1() { }
43 
44  //private:
45 
46  bool m_configured = false;
47  std::vector<uint32_t> m_l1_items;
48  std::vector<uint32_t> m_l1_itemsPrescaled;
49 
50  };
51 
52 } // end of LVL1CTP namespace
53 
54 
55 #endif
LVL1CTP::Lvl1Result_p1::Lvl1Result_p1
Lvl1Result_p1()
Definition: Lvl1Result_p1.h:63
LVL1CTP::Lvl1Result_p1::~Lvl1Result_p1
virtual ~Lvl1Result_p1()
Definition: Lvl1Result_p1.h:66
LVL1CTP::Lvl1Result_p1::m_configured
bool m_configured
Definition: Lvl1Result_p1.h:70
Lvl1Result.h
LVL1CTP::Lvl1Result_p1::m_l1_items
std::vector< uint32_t > m_l1_items
Definition: Lvl1Result_p1.h:71
Lvl1ResultCnv
Definition: Lvl1ResultCnv.h:37
LVL1CTP
Definition: Lvl1ResultAccessTool.h:20
LVL1CTP::Lvl1Result_p1::m_l1_itemsPrescaled
std::vector< uint32_t > m_l1_itemsPrescaled
Definition: Lvl1Result_p1.h:72