ATLAS Offline Software
Loading...
Searching...
No Matches
GeoMPVEntry.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#ifndef GeoMPVEntry_h
6#define GeoMPVEntry_h 1
7
9{
10 public:
11 bool operator <(const GeoMPVEntry &right) const;
12 bool operator ==(const GeoMPVEntry &right) const;
13 GeoMPVEntry& operator =(const GeoMPVEntry &right);
14
15 GeoMPVEntry(double aPhotonMomentum, double aPropertyValue);
16 GeoMPVEntry(const GeoMPVEntry &right);
18
19 double GetPhotonMomentum();
20 double GetProperty();
21
22 void DumpEntry();
23
24 private:
27};
28
30{
32}
33
35{
36 return m_theProperty;
37}
38
39#endif
double GetProperty()
Definition GeoMPVEntry.h:34
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
double GetPhotonMomentum()
Definition GeoMPVEntry.h:29