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

 board_id = Column(Integer, ForeignKey('boards.id'), primary_key = True)
 
 chip_id = Column(Integer, ForeignKey('chips.id'), primary_key = True)
 
 board = relationship('Board', back_populates='chip_links')
 
 chip = relationship('Chip', back_populates='board_links')
 
 spot = Column(Integer)
 

Static Private Attributes

string __tablename__ = 'board_chip_links'
 

Detailed Description

A join table for board-chip association.

Definition at line 595 of file db.py.

Member Function Documentation

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

Definition at line 609 of file db.py.

609  def __repr__(self):
610  return "<BoardChipLink spot:%s [%s %s]> " % \
611  (self.spot, self.board, self.chip)
612 
613 

Member Data Documentation

string wirecell.util.wires.db.BoardChipLink.__tablename__ = 'board_chip_links'
staticprivate

Definition at line 599 of file db.py.

wirecell.util.wires.db.BoardChipLink.board = relationship('Board', back_populates='chip_links')
static

Definition at line 604 of file db.py.

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

Definition at line 601 of file db.py.

wirecell.util.wires.db.BoardChipLink.chip = relationship('Chip', back_populates='board_links')
static

Definition at line 605 of file db.py.

wirecell.util.wires.db.BoardChipLink.chip_id = Column(Integer, ForeignKey('chips.id'), primary_key = True)
static

Definition at line 602 of file db.py.

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

Definition at line 607 of file db.py.


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