Functions | |
def | wcborder (vals) |
def | lsborder (vals) |
def | uboone_shorted (store, filename) |
Variables | |
Point = namedtuple("Point","x y z") | |
Border = namedtuple("Border","plane wire ch tail head") | |
Region = namedtuple("Region","beg end") | |
WCLS = namedtuple("WCLS", "wc ls") | |
Functions to process descriptions of wire regions
def wirecell.util.wires.regions.lsborder | ( | vals | ) |
convert array of # Channel,Plane,Wire,Start X,Start Y,Start Z,End X,End Y,End Z, to Border object
Definition at line 25 of file regions.py.
def wirecell.util.wires.regions.uboone_shorted | ( | store, | |
filename | |||
) |
Load in the CSV file holding description of shorted wires in microboone. Confirm data is consistent with given wires.schema.Store object. Example file is the CSV saved from MicroBooNE_ShortedWireList.xlsx. Return data structure describing the shorted wires.
Definition at line 38 of file regions.py.
def wirecell.util.wires.regions.wcborder | ( | vals | ) |
convert array of Plane,Channel,Start X,Start Y,Start Z,End X,End Y,End Z, to Border object
Definition at line 14 of file regions.py.
wirecell.util.wires.regions.Border = namedtuple("Border","plane wire ch tail head") |
Definition at line 10 of file regions.py.
wirecell.util.wires.regions.Point = namedtuple("Point","x y z") |
Definition at line 9 of file regions.py.
wirecell.util.wires.regions.Region = namedtuple("Region","beg end") |
Definition at line 11 of file regions.py.
wirecell.util.wires.regions.WCLS = namedtuple("WCLS", "wc ls") |
Definition at line 12 of file regions.py.