ATLAS Offline Software
PairOfVxVertexOnJetAxis.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  PairOfVxVertexOnJetAxis.h - Description
7  -------------------
8  begin : Februar 2007
9  authors : Giacinto Piacquadio (University of Freiburg)
10  Christian Weiser (University of Freiburg)
11  e-mails: giacinto.piacquadio@physik.uni-freiburg.de)
12  christian.weiser@cern.ch
13  changes: new!
14 
15  (c) Atlas Collaboration 2007
16 
17  Class representing a pair of VxVertexOnJetAxis.
18 
19  The ordering is always so that the first of the pair has a smaller
20 
21 
22  explicit class seems to be needed because of default constructor for std::map.
23 ********************************************************************/
24 
25 #ifndef VXJETVERTEX_PairOfVertexOnJetAxis_H
26 #define VXJETVERTEX_PairOfVertexOnJetAxis_H
27 
28 #include <utility>
29 
30 namespace Trk {
31 
32  class VxVertexOnJetAxis;
33 
34  class PairOfVxVertexOnJetAxis: public std::pair<VxVertexOnJetAxis*,VxVertexOnJetAxis*>
35  {
36 
37  public:
39  PairOfVxVertexOnJetAxis(VxVertexOnJetAxis*,VxVertexOnJetAxis*);
41 
42  };
43 
44 
45 }
46 
47 #endif
Trk::PairOfVxVertexOnJetAxis::PairOfVxVertexOnJetAxis
PairOfVxVertexOnJetAxis()
Definition: PairOfVxVertexOnJetAxis.cxx:49
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition: FakeTrackBuilder.h:9
Trk::PairOfVxVertexOnJetAxis::~PairOfVxVertexOnJetAxis
~PairOfVxVertexOnJetAxis()
Definition: PairOfVxVertexOnJetAxis.h:58