ATLAS Offline Software
Loading...
Searching...
No Matches
NP Struct Reference
Collaboration diagram for NP:

Public Member Functions

bool operator< (const NP &rhs) const
bool operator== (const NP &rhs) const

Public Attributes

int index {}
bool uncorr {}

Detailed Description

Definition at line 33 of file dumpNPs.cxx.

Member Function Documentation

◆ operator<()

bool NP::operator< ( const NP & rhs) const
inline

Definition at line 37 of file dumpNPs.cxx.

37 {
38 return (uncorr!=rhs.uncorr)? (uncorr<rhs.uncorr): (index<rhs.index);
39 }
int index
Definition dumpNPs.cxx:35
bool uncorr
Definition dumpNPs.cxx:36

◆ operator==()

bool NP::operator== ( const NP & rhs) const
inline

Definition at line 40 of file dumpNPs.cxx.

40 {
41 return (index == rhs.index) && (uncorr == rhs.uncorr);
42 }

Member Data Documentation

◆ index

int NP::index {}

Definition at line 35 of file dumpNPs.cxx.

35{};

◆ uncorr

bool NP::uncorr {}

Definition at line 36 of file dumpNPs.cxx.

36{};

The documentation for this struct was generated from the following file: