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

 id = Column(Integer, primary_key=True)
 
 tail_id = Column(Integer, ForeignKey('points.id'))
 
 tail = relationship("Point", foreign_keys = [tail_id])
 
 head_id = Column(Integer, ForeignKey('points.id'))
 
 head = relationship("Point", foreign_keys = [head_id])
 
 wires
 

Static Private Attributes

string __tablename__ = "rays"
 

Detailed Description

Two endpoints and a microphone.

Definition at line 464 of file db.py.

Member Function Documentation

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

Definition at line 483 of file db.py.

483  def __repr__(self):
484  return "<Ray %d>" % self.id
485 
486 
def __repr__(self)
Definition: db.py:483

Member Data Documentation

string wirecell.util.wires.db.Ray.__tablename__ = "rays"
staticprivate

Definition at line 468 of file db.py.

wirecell.util.wires.db.Ray.head = relationship("Point", foreign_keys = [head_id])
static

Definition at line 478 of file db.py.

wirecell.util.wires.db.Ray.head_id = Column(Integer, ForeignKey('points.id'))
static

Definition at line 477 of file db.py.

wirecell.util.wires.db.Ray.id = Column(Integer, primary_key=True)
static

Definition at line 470 of file db.py.

wirecell.util.wires.db.Ray.tail = relationship("Point", foreign_keys = [tail_id])
static

Definition at line 474 of file db.py.

wirecell.util.wires.db.Ray.tail_id = Column(Integer, ForeignKey('points.id'))
static

Definition at line 473 of file db.py.

wirecell.util.wires.db.Ray.wires
static
Initial value:
1 = relationship("Wire",
2  primaryjoin='Ray.id == Wire.ray_id')

Definition at line 481 of file db.py.


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