Public Member Functions | Static Public Attributes | Static Private Attributes | List of all members
wirecell.util.wires.db.WibBoardLink Class Reference
Inheritance diagram for wirecell.util.wires.db.WibBoardLink:
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

 wib_id = Column(Integer, ForeignKey('wibs.id'), primary_key = True)
 
 board_id = Column(Integer, ForeignKey('boards.id'), primary_key = True)
 
 wib = relationship('Wib', back_populates='board_links')
 
 board = relationship('Board', back_populates='wib_links')
 
 connector = Column(Integer)
 

Static Private Attributes

string __tablename__ = 'wib_board_links'
 

Detailed Description

A join table for WIB-board association.

Definition at line 550 of file db.py.

Member Function Documentation

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

Definition at line 567 of file db.py.

567  def __repr__(self):
568  return "<WibBoardLink slot:%s [%s %s]> " % \
569  (self.connector, self.wib, self.board)
570 
571 

Member Data Documentation

string wirecell.util.wires.db.WibBoardLink.__tablename__ = 'wib_board_links'
staticprivate

Definition at line 554 of file db.py.

wirecell.util.wires.db.WibBoardLink.board = relationship('Board', back_populates='wib_links')
static

Definition at line 560 of file db.py.

wirecell.util.wires.db.WibBoardLink.board_id = Column(Integer, ForeignKey('boards.id'), primary_key = True)
static

Definition at line 557 of file db.py.

wirecell.util.wires.db.WibBoardLink.connector = Column(Integer)
static

Definition at line 565 of file db.py.

wirecell.util.wires.db.WibBoardLink.wib = relationship('Wib', back_populates='board_links')
static

Definition at line 559 of file db.py.

wirecell.util.wires.db.WibBoardLink.wib_id = Column(Integer, ForeignKey('wibs.id'), primary_key = True)
static

Definition at line 556 of file db.py.


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