ATLAS Offline Software
JetCollection_p1.h
Go to the documentation of this file.
1 
3 /*
4  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // JetCollection_p1.h
8 // Header file for class JetCollection_p1
9 // Author: S.Binet<binet@cern.ch>
10 // Date: March 2007
12 #ifndef RECTPCNV_JETCOLLECTION_P1_H
13 #define RECTPCNV_JETCOLLECTION_P1_H
14 
15 // STL includes
16 #include <vector>
17 #include <string>
18 
19 // JetEventTPCnv includes
20 #include "JetEventTPCnv/Jet_p1.h"
21 
22 // forward declare
24 
25 class JetCollection_p1 : public std::vector<Jet_p1>
26 {
28  // Friend classes
30 
31  // Make the AthenaPoolCnv class our friend
32  friend class JetCollectionCnv_p1;
33 
35  // Private data:
37 private:
38  std::string m_roiAuthor{};
39  short m_ordered{};
40 };
41 
42 #endif //> RECTPCNV_JETCOLLECTION_P1_H
JetCollectionCnv_p1
Definition: JetCollectionCnv_p1.h:36
Jet_p1.h
JetCollection_p1::m_roiAuthor
std::string m_roiAuthor
Definition: JetCollection_p1.h:38
JetCollection_p1::m_ordered
short m_ordered
Definition: JetCollection_p1.h:39
JetCollection_p1
Definition: JetCollection_p1.h:26