ATLAS Offline Software
Loading...
Searching...
No Matches
GeoMPVEntry.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
6#include <iostream>
7
8bool GeoMPVEntry::operator ==(const GeoMPVEntry &right) const
9{
11 return true;
12 else
13 return false;
14}
15
16bool GeoMPVEntry::operator <(const GeoMPVEntry &right) const
17{
19 return true;
20 else
21 return false;
22}
23
25{
26 if (this == &right) return *this;
27
30 return *this;
31}
32
33GeoMPVEntry::GeoMPVEntry(double aPhotonMomentum, double aProperty)
34{
35 m_thePhotonMomentum = aPhotonMomentum;
36 m_theProperty = aProperty;
37}
38
44
46
48{
49 std::cout << "("
51 << ", "
53 << ")\n";
54}
double m_theProperty
Definition GeoMPVEntry.h:26
void DumpEntry()
bool operator<(const GeoMPVEntry &right) const
bool operator==(const GeoMPVEntry &right) const
GeoMPVEntry(double aPhotonMomentum, double aPropertyValue)
GeoMPVEntry & operator=(const GeoMPVEntry &right)
double m_thePhotonMomentum
Definition GeoMPVEntry.h:25