LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Classes | Functions
lsst.gdb.meas.algorithms.printers Namespace Reference

Classes

class  CRPixelPrinter
 

Functions

def register
 
def build_meas_algorithms_dictionary
 
def register
 

Function Documentation

def lsst.gdb.meas.algorithms.printers.build_meas_algorithms_dictionary ( )

Definition at line 29 of file printers.py.

29 
31  printer = gdb.printing.RegexpCollectionPrettyPrinter("meas_algorithms")
32 
33  printer.add_printer('lsst::meas::algorithms::CRPixel',
34  '^lsst::meas::algorithms::CRPixel', CRPixelPrinter)
35  return printer
def lsst.gdb.meas.algorithms.printers.register (   obj)

Definition at line 18 of file printers.py.

18 
19  def register(obj):
20  "Register my pretty-printers with objfile Obj."
21 
22  if obj is None:
23  obj = gdb
24 
25  for p in printers:
26  gdb.printing.register_pretty_printer(obj, p)
def lsst.gdb.meas.algorithms.printers.register (   args,
  kwargs 
)

Definition at line 39 of file printers.py.

39 
40  def register(*args, **kwargs):
41  print >> sys.stderr, "Your version of gdb is too old to load the meas.algorithms python pretty printers: %s" % (e)
42  pass