ATLAS Offline Software
Loading...
Searching...
No Matches
JetElement_p1.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4
5 //***************************************************************************
6 // JetElement_p1.h - description
7 // -------------------
8 // begin : 29/11/2007
9 // email : Alan.Watson@cern.ch
10 // ***************************************************************************/
11
12
13#ifndef JETELEMENT_P1_H
14#define JETELEMENT_P1_H
15
16#include <vector>
17
18// Forward declaration of the convertor
19//class JetElementCnv_p1;
20//namespace LVL1 {
21
22 //Doxygen class description below:
27
28 friend class JetElementCnv_p1;
29
30public:
31
33 virtual ~JetElement_p1(){}
34
36
37//protected:
38
39 double m_phi;
40 double m_eta;
41 unsigned int m_key;
42 int m_peak;
43 std::vector<int> m_emEnergy;
44 std::vector<int> m_hadEnergy;
45 std::vector<int> m_em_error;
46 std::vector<int> m_had_error;
47 std::vector<int> m_link_error;
48
49};
50
51
53 : m_phi(0),
54 m_eta(0),
55 m_key(0),
56 m_peak(0),
57 m_emEnergy(0),
58 m_hadEnergy(0),
59 m_em_error(0),
60 m_had_error(0),
62 {
63 }
64
65
66
67//} // end of namespace
68
69#endif
std::vector< int > m_link_error
double m_phi
Internal data.
std::vector< int > m_hadEnergy
unsigned int m_key
std::vector< int > m_had_error
friend class JetElementCnv_p1
std::vector< int > m_emEnergy
std::vector< int > m_em_error
virtual ~JetElement_p1()