Public Member Functions | Static Public Attributes | Static Private Attributes | List of all members
wirecell.util.wires.db.PlaneWireLink Class Reference
Inheritance diagram for wirecell.util.wires.db.PlaneWireLink:
Base

Public Member Functions

def __repr__ (self)
 
- Public Member Functions inherited from Base
virtual std::string who () const
 
virtual ~Base () noexcept=default
 

Static Public Attributes

 plane_id = Column(Integer, ForeignKey('planes.id'), primary_key = True)
 
 wire_id = Column(Integer, ForeignKey('wires.id'), primary_key = True)
 
 plane = relationship('Plane', back_populates='wire_links')
 
 wire = relationship('Wire', back_populates='plane_links')
 
 spot = Column(Integer)
 

Static Private Attributes

string __tablename__ = 'plane_wire_links'
 

Detailed Description

A join table for plane-wire association

Definition at line 731 of file db.py.

Member Function Documentation

def wirecell.util.wires.db.PlaneWireLink.__repr__ (   self)

Definition at line 746 of file db.py.

746  def __repr__(self):
747  return "<PlaneWireLink index:%s [%s %s]> " % \
748  (self.index, self.plane, self.wire)
749 
750 
751 

Member Data Documentation

string wirecell.util.wires.db.PlaneWireLink.__tablename__ = 'plane_wire_links'
staticprivate

Definition at line 735 of file db.py.

wirecell.util.wires.db.PlaneWireLink.plane = relationship('Plane', back_populates='wire_links')
static

Definition at line 740 of file db.py.

wirecell.util.wires.db.PlaneWireLink.plane_id = Column(Integer, ForeignKey('planes.id'), primary_key = True)
static

Definition at line 737 of file db.py.

wirecell.util.wires.db.PlaneWireLink.spot = Column(Integer)
static

Definition at line 744 of file db.py.

wirecell.util.wires.db.PlaneWireLink.wire = relationship('Wire', back_populates='plane_links')
static

Definition at line 741 of file db.py.

wirecell.util.wires.db.PlaneWireLink.wire_id = Column(Integer, ForeignKey('wires.id'), primary_key = True)
static

Definition at line 738 of file db.py.


The documentation for this class was generated from the following file: