LSSTApplications  10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
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