Public Member Functions | Static Public Attributes | Static Private Attributes | List of all members
wirecell.util.wires.db.Wire Class Reference
Inheritance diagram for wirecell.util.wires.db.Wire:
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)
 
 conductors
 
 conductor_links
 
 planes
 
 plane_links
 
 ray_id = Column(Integer, ForeignKey('rays.id'))
 
 ray = relationship('Ray')
 

Static Private Attributes

string __tablename__ = 'wires'
 

Detailed Description

A wire segment.

Definition at line 439 of file db.py.

Member Function Documentation

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

Definition at line 460 of file db.py.

460  def __repr__(self):
461  return "<Wire %d>" % self.id
462 
463 
def __repr__(self)
Definition: db.py:460

Member Data Documentation

string wirecell.util.wires.db.Wire.__tablename__ = 'wires'
staticprivate

Definition at line 443 of file db.py.

wirecell.util.wires.db.Wire.conductor_links
static
Initial value:
1 = relationship("ConductorWireLink",
2  back_populates = "wire")

Definition at line 448 of file db.py.

wirecell.util.wires.db.Wire.conductors
static
Initial value:
1 = relationship("Conductor",
2  secondary = "conductor_wire_links")

Definition at line 446 of file db.py.

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

Definition at line 444 of file db.py.

wirecell.util.wires.db.Wire.plane_links
static
Initial value:
1 = relationship("PlaneWireLink",
2  back_populates = "wire")

Definition at line 453 of file db.py.

wirecell.util.wires.db.Wire.planes
static
Initial value:
1 = relationship("Plane",
2  secondary = "plane_wire_links")

Definition at line 451 of file db.py.

wirecell.util.wires.db.Wire.ray = relationship('Ray')
static

Definition at line 458 of file db.py.

wirecell.util.wires.db.Wire.ray_id = Column(Integer, ForeignKey('rays.id'))
static

Definition at line 457 of file db.py.


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