ATLAS Offline Software
Loading...
Searching...
No Matches
NswErrorCalibData.h File Reference
Include dependency graph for NswErrorCalibData.h:

Go to the source code of this file.

Classes

class  NswErrorCalibData
struct  NswErrorCalibData::Input
 Helper struct to be parsed to the object to derive the specific error of the cluster. More...
class  NswErrorCalibData::ErrorConstants
 Helper struct to store different error calibrations for a certain channel range & also for seperate ClusterBuilders (ROT & Prd making stage) More...
struct  NswErrorCalibData::ErrorIdentifier

Functions

bool operator< (const NswErrorCalibData::ErrorConstants &a, const NswErrorCalibData::ErrorIdentifier &b)
bool operator< (const NswErrorCalibData::ErrorIdentifier &a, const NswErrorCalibData::ErrorConstants &b)
 CLASS_DEF (NswErrorCalibData, 118696870, 1)
 CONDCONT_DEF (NswErrorCalibData, 134103948)

Function Documentation

◆ CLASS_DEF()

CLASS_DEF ( NswErrorCalibData ,
118696870 ,
1  )

◆ CONDCONT_DEF()

CONDCONT_DEF ( NswErrorCalibData ,
134103948  )

◆ operator<() [1/2]

Definition at line 53 of file NswErrorCalibData.cxx.

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

◆ operator<() [2/2]

Definition at line 57 of file NswErrorCalibData.cxx.

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