LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Functions | Variables
lsst.pipe.drivers.checksum Namespace Reference

Functions

def checksum (obj, header=None, sumType="MD5")
 Calculate a checksum of an object. More...
 

Variables

tuple exposureTypes = (afwImage.ExposureF, afwImage.ExposureD,)
 
tuple maskedImageTypes = (afwImage.MaskedImageF, afwImage.MaskedImageD,)
 
tuple decoratedImageTypes = (afwImage.DecoratedImageF, afwImage.DecoratedImageD,)
 
tuple imageTypes = (afwImage.ImageF, afwImage.ImageD, afwImage.ImageI,)
 
int PROTOCOL = 2
 
dictionary sumFunctions
 

Function Documentation

◆ checksum()

def lsst.pipe.drivers.checksum.checksum (   obj,
  header = None,
  sumType = "MD5" 
)

Calculate a checksum of an object.

We have special handling for images (e.g., breaking a MaskedImage into
its various components), but the object may be any picklable type.

@param obj  Object for which to calculate the checksum
@param header  FITS header (PropertyList) to update with checksum values, or None
@param sumType  Type of checksum to calculate
@return dict with header keyword,value pairs

Definition at line 24 of file checksum.py.

24 def checksum(obj, header=None, sumType="MD5"):
25  """!Calculate a checksum of an object
26 
27  We have special handling for images (e.g., breaking a MaskedImage into
28  its various components), but the object may be any picklable type.
29 
30  @param obj Object for which to calculate the checksum
31  @param header FITS header (PropertyList) to update with checksum values, or None
32  @param sumType Type of checksum to calculate
33  @return dict with header keyword,value pairs
34  """
35  assert sumType in sumFunctions, "Unknown sumType: %s" % (sumType,)
36  func = sumFunctions[sumType]
37 
38  results = {}
39 
40  if isinstance(obj, exposureTypes):
41  obj = obj.getMaskedImage()
42  if isinstance(obj, decoratedImageTypes):
43  obj = obj.getImage()
44 
45  if isinstance(obj, maskedImageTypes):
46  results[sumType + "_IMAGE"] = func(obj.getImage())
47  results[sumType + "_MASK"] = func(obj.getMask())
48  results[sumType + "_VARIANCE"] = func(obj.getVariance())
49  elif isinstance(obj, imageTypes):
50  results[sumType + "_IMAGE"] = func(obj)
51  else:
52  results[sumType] = func(obj)
53 
54  if header is not None:
55  for k, v in results.items():
56  header.add(k, v)
57 
58  return results
def checksum(obj, header=None, sumType="MD5")
Calculate a checksum of an object.
Definition: checksum.py:24

Variable Documentation

◆ decoratedImageTypes

tuple lsst.pipe.drivers.checksum.decoratedImageTypes = (afwImage.DecoratedImageF, afwImage.DecoratedImageD,)

Definition at line 12 of file checksum.py.

◆ exposureTypes

tuple lsst.pipe.drivers.checksum.exposureTypes = (afwImage.ExposureF, afwImage.ExposureD,)

Definition at line 10 of file checksum.py.

◆ imageTypes

tuple lsst.pipe.drivers.checksum.imageTypes = (afwImage.ImageF, afwImage.ImageD, afwImage.ImageI,)

Definition at line 13 of file checksum.py.

◆ maskedImageTypes

tuple lsst.pipe.drivers.checksum.maskedImageTypes = (afwImage.MaskedImageF, afwImage.MaskedImageD,)

Definition at line 11 of file checksum.py.

◆ PROTOCOL

int lsst.pipe.drivers.checksum.PROTOCOL = 2

Definition at line 15 of file checksum.py.

◆ sumFunctions

dictionary lsst.pipe.drivers.checksum.sumFunctions
Initial value:
1 = {
2  "CRC32": lambda obj: zlib.crc32(pickle.dumps(obj, PROTOCOL)),
3  "MD5": lambda obj: hashlib.md5(pickle.dumps(obj, PROTOCOL)).hexdigest(),
4 }

Definition at line 18 of file checksum.py.