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

SubChunks represents a set of sub-chunks of a particular chunk. More...

#include <Chunker.h>

Public Member Functions

 SubChunks ()
 
void swap (SubChunks &sc)
 

Public Attributes

int32_t chunkId
 
std::vector< int32_t > subChunkIds
 

Detailed Description

SubChunks represents a set of sub-chunks of a particular chunk.

TODO(smm): implement a more memory efficient representation than this.

Definition at line 43 of file Chunker.h.

Constructor & Destructor Documentation

◆ SubChunks()

lsst::sphgeom::SubChunks::SubChunks ( )
inline

Definition at line 47 of file Chunker.h.

47 : chunkId(-1) {}

Member Function Documentation

◆ swap()

void lsst::sphgeom::SubChunks::swap ( SubChunks sc)
inline

Definition at line 49 of file Chunker.h.

49  {
50  std::swap(chunkId, sc.chunkId);
51  subChunkIds.swap(sc.subChunkIds);
52  }

Member Data Documentation

◆ chunkId

int32_t lsst::sphgeom::SubChunks::chunkId

Definition at line 44 of file Chunker.h.

◆ subChunkIds

std::vector<int32_t> lsst::sphgeom::SubChunks::subChunkIds

Definition at line 45 of file Chunker.h.


The documentation for this struct was generated from the following file:
lsst::sphgeom::SubChunks::chunkId
int32_t chunkId
Definition: Chunker.h:44
std::swap
T swap(T... args)
lsst::sphgeom::SubChunks::subChunkIds
std::vector< int32_t > subChunkIds
Definition: Chunker.h:45