ATLAS Offline Software
HLTResult_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 : HLTResult_p1
9  *
10  * @brief persistent representation of all three trigger level information - for now
11  * this is exactly what is in HLTResultData.
12  *
13  * @author Andrew Hamilton <Andrew.Hamilton@cern.ch> - U. of Geneva, Switzerland
14  * @author Francesca Bucci <f.bucci@cern.ch> - U. of Geneva, Switzerland
15  *
16  * File and Version Information:
17  * $Id: HLTResult_p1.h,v 1.2 2009-04-01 22:14:57 salvator Exp $
18  **********************************************************************************/
19 
20 #ifndef TrigSteeringEventTPCnv_HLTResult_p1_H
21 #define TrigSteeringEventTPCnv_HLTResult_p1_H
22 
23 #include <vector>
24 
26 
27 
28 // needed to fix a Gaudi problem in SLC3 (should be removed eventually):
29 #include <stdint.h>
30 
31 namespace HLT {
32 
33  class HLTResult_p1
34  {
35  friend class HLTResultCnv;
36 
37  public:
38 
39  // default constructor
40  HLTResult_p1() { }
41 
42  // default destructor
43  virtual ~HLTResult_p1() { }
44 
45  std::vector<uint32_t> m_headerResult;
46  std::vector<uint32_t> m_chainsResult;
47  std::vector<uint32_t> m_navigationResult;
48 
49  };
50 
51 } // end of HLT namespace
52 
53 
54 #endif
HLT::HLTResult_p1::~HLTResult_p1
virtual ~HLTResult_p1()
Definition: HLTResult_p1.h:69
HLTResult.h
HLT
It used to be useful piece of code for replacing actual SG with other store of similar functionality ...
Definition: HLTResultReader.h:26
HLT::HLTResult_p1::m_headerResult
std::vector< uint32_t > m_headerResult
Definition: HLTResult_p1.h:71
HLTResultCnv
Definition: HLTResultCnv.h:40
HLT::HLTResult_p1::m_navigationResult
std::vector< uint32_t > m_navigationResult
Definition: HLTResult_p1.h:73
HLT::HLTResult_p1::HLTResult_p1
HLTResult_p1()
Definition: HLTResult_p1.h:66
HLT::HLTResult_p1::m_chainsResult
std::vector< uint32_t > m_chainsResult
Definition: HLTResult_p1.h:72