LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Public Member Functions | Public Attributes | List of all members
lsst::jointcal::CcdImageKey Struct Reference

For hashing a ccdImage: the pair of (visit, ccd) IDs should be unique to each ccdImage. More...

#include <CcdImage.h>

Public Member Functions

bool operator!= (CcdImageKey const &right) const
 
bool operator== (CcdImageKey const &right) const
 

Public Attributes

VisitIdType visit
 
CcdIdType ccd
 

Detailed Description

For hashing a ccdImage: the pair of (visit, ccd) IDs should be unique to each ccdImage.

Definition at line 51 of file CcdImage.h.

Member Function Documentation

◆ operator!=()

bool lsst::jointcal::CcdImageKey::operator!= ( CcdImageKey const &  right) const
inline

Definition at line 54 of file CcdImage.h.

54 { return !(*this == right); }

◆ operator==()

bool lsst::jointcal::CcdImageKey::operator== ( CcdImageKey const &  right) const
inline

Definition at line 55 of file CcdImage.h.

55 { return (visit == right.visit) && (ccd == right.ccd); }

Member Data Documentation

◆ ccd

CcdIdType lsst::jointcal::CcdImageKey::ccd

Definition at line 53 of file CcdImage.h.

◆ visit

VisitIdType lsst::jointcal::CcdImageKey::visit

Definition at line 52 of file CcdImage.h.


The documentation for this struct was generated from the following file:
lsst::jointcal::CcdImageKey::ccd
CcdIdType ccd
Definition: CcdImage.h:53
std::right
T right(T... args)
lsst::jointcal::CcdImageKey::visit
VisitIdType visit
Definition: CcdImage.h:52