ATLAS Offline Software
Loading...
Searching...
No Matches
MissingEtCalo_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#ifndef RECTPCNV_MISSINGETCALO_P1_H
6#define RECTPCNV_MISSINGETCALO_P1_H
7
8/********************************************************************
9
10NAME: MissingET_p1
11PACKAGE: offline/Reconstruction/RecTPCnv
12
13AUTHORS: S. Resconi
14CREATED: Jul 2007
15
16PURPOSE: Persistent rapresentation of MissingEtCalo class
17********************************************************************/
19#include <vector>
20
21// forward declarations
23
24
26{
27 friend class MissingEtCaloCnv_p1;
28
29 public:
30
33
35 ~MissingEtCalo_p1() = default;
36
37
38 protected:
39
41
43 std::vector<double> m_exCalo;
44 std::vector<double> m_eyCalo;
45 std::vector<double> m_etSumCalo;
46 std::vector<unsigned int> m_nCellsCalo;
47
48};
49
50#endif
MissingEtCalo_p1()
default constructor
~MissingEtCalo_p1()=default
destructor
friend class MissingEtCaloCnv_p1
std::vector< unsigned int > m_nCellsCalo
std::vector< double > m_etSumCalo
std::vector< double > m_eyCalo
std::vector< double > m_exCalo
basic components of MissingEtCalo_p1