ATLAS Offline Software
Loading...
Searching...
No Matches
NswErrorCalibData.cxx File Reference
#include "MuonCondData/NswErrorCalibData.h"
#include <sstream>
#include "GeoModelKernel/throwExcept.h"
Include dependency graph for NswErrorCalibData.cxx:

Go to the source code of this file.

Typedefs

using errorParametrizer = NswErrorCalibData::errorParametrizer
using Input = NswErrorCalibData::Input

Functions

bool operator< (const NswErrorCalibData::ErrorConstants &a, const NswErrorCalibData::ErrorIdentifier &b)
bool operator< (const NswErrorCalibData::ErrorIdentifier &a, const NswErrorCalibData::ErrorConstants &b)

Typedef Documentation

◆ errorParametrizer

◆ Input

Definition at line 9 of file NswErrorCalibData.cxx.

Function Documentation

◆ operator<() [1/2]

Definition at line 55 of file NswErrorCalibData.cxx.

55 {
56 if (a.author() != b.clusAlgAuthor) return a.author() < b.clusAlgAuthor;
57 return a.maxStrip() < b.strip;
58}
static Double_t a

◆ operator<() [2/2]

Definition at line 59 of file NswErrorCalibData.cxx.

59 {
60 if (a.clusAlgAuthor != b.author()) return a.clusAlgAuthor < b.author();
61 return a.strip < b.minStrip();
62}