ATLAS Offline Software
Loading...
Searching...
No Matches
AFPMon Namespace Reference

Classes

struct  AFPCluster
class  AFPFastReco
struct  AFPTrack

Functions

bool operator== (const AFPCluster &lhs, const AFPCluster &rhs)

Function Documentation

◆ operator==()

bool AFPMon::operator== ( const AFPCluster & lhs,
const AFPCluster & rhs )
inline

Definition at line 27 of file AFPFastReco.h.

28{
29 if (lhs.x != rhs.x) return false;
30 if (lhs.y != rhs.y) return false;
31 if (lhs.z != rhs.z) return false;
32 if (lhs.station != rhs.station) return false;
33 if (lhs.layer != rhs.layer) return false;
34 if (lhs.sumToT != rhs.sumToT) return false;
35
36 return true;
37}