ATLAS Offline Software
Loading...
Searching...
No Matches
NswZebraData.h File Reference
#include <set>
#include <cstdint>
Include dependency graph for NswZebraData.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  NswZebraData

Typedefs

using NswZebraSet = std::set<NswZebraData, std::less<>>

Functions

bool operator< (const NswZebraData &a, const NswZebraData &b)
bool operator< (const NswZebraData &a, const int b)
bool operator< (const int a, const NswZebraData &b)

Typedef Documentation

◆ NswZebraSet

using NswZebraSet = std::set<NswZebraData, std::less<>>

Definition at line 38 of file NswZebraData.h.

Function Documentation

◆ operator<() [1/3]

bool operator< ( const int a,
const NswZebraData & b )
inline

Definition at line 34 of file NswZebraData.h.

34 {
35 return a < b.firstChannel;
36}
static Double_t a

◆ operator<() [2/3]

bool operator< ( const NswZebraData & a,
const int b )
inline

Definition at line 31 of file NswZebraData.h.

31 {
32 return a.lastChannel < b;
33}

◆ operator<() [3/3]

bool operator< ( const NswZebraData & a,
const NswZebraData & b )
inline

Definition at line 27 of file NswZebraData.h.

28 {
29 return a.lastChannel < b.firstChannel;
30}