ATLAS Offline Software
Loading...
Searching...
No Matches
MissingEtCalo_p3.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_P3_H
6#define RECTPCNV_MISSINGETCALO_P3_H
7
8/********************************************************************
9NAME: MissingETCalo_p3
10PURPOSE: Persistent rapresentation of MissingEtCalo class
11********************************************************************/
12#include <vector>
13
14// forward declarations
16
17
19{
20 friend class MissingEtCaloCnv_p3;
21
22 public:
23
26
28 ~MissingEtCalo_p3() = default;
29
30
31 protected:
32
33 std::vector<float> m_allTheData;
34
35};
36
37#endif
std::vector< float > m_allTheData
MissingEtCalo_p3()
default constructor
~MissingEtCalo_p3()=default
destructor
friend class MissingEtCaloCnv_p3