|
def | __init__ (self, etacode, phicode, eta, phi, ieta, iphi, etamin, etamax, phimin, phimax) |
|
def | fromTopoCellElement (cls, tc) |
|
def | asXML (self, depth) |
|
Definition at line 64 of file ReadRPCRun2DataFile.py.
◆ __init__()
def ReadRPCRun2DataFile.TopoCell.__init__ |
( |
|
self, |
|
|
|
etacode, |
|
|
|
phicode, |
|
|
|
eta, |
|
|
|
phi, |
|
|
|
ieta, |
|
|
|
iphi, |
|
|
|
etamin, |
|
|
|
etamax, |
|
|
|
phimin, |
|
|
|
phimax |
|
) |
| |
Definition at line 65 of file ReadRPCRun2DataFile.py.
65 def __init__(self, etacode, phicode, eta, phi, ieta, iphi, etamin, etamax , phimin, phimax):
66 self.etacode = etacode
67 self.phicode = phicode
◆ asXML()
def ReadRPCRun2DataFile.TopoCell.asXML |
( |
|
self, |
|
|
|
depth |
|
) |
| |
Definition at line 84 of file ReadRPCRun2DataFile.py.
84 def asXML(self, depth):
85 return ' '*depth +
'<TopoCell etacode="0x%s" phicode="0x%s" eta="%f" phi="%f" ieta="%i" iphi="%i" etamin="%f" etamax="%f" phimin="%f" phimax="%f"/>\n' % (self.etacode, self.phicode,
88 self.etamin, self.etamax, self.phimin, self.phimax)
◆ fromTopoCellElement()
def ReadRPCRun2DataFile.TopoCell.fromTopoCellElement |
( |
|
cls, |
|
|
|
tc |
|
) |
| |
Definition at line 78 of file ReadRPCRun2DataFile.py.
78 def fromTopoCellElement(cls,tc):
79 newtc =
cls( etacode=
int(tc[
'etacode'],16), phicode=
int(tc[
'phicode'],16),
81 ieta=
float(tc[
'ieta']), iphi=
float(tc[
'iphi']),
82 etamin=
float(tc[
'etamin']), etamax=
float(tc[
'etamax']), phimin=
float(tc[
'phimin']), phimax=
float(tc[
'phimax']) )
◆ eta
ReadRPCRun2DataFile.TopoCell.eta |
◆ etacode
ReadRPCRun2DataFile.TopoCell.etacode |
◆ etamax
ReadRPCRun2DataFile.TopoCell.etamax |
◆ etamin
ReadRPCRun2DataFile.TopoCell.etamin |
◆ ieta
ReadRPCRun2DataFile.TopoCell.ieta |
◆ iphi
ReadRPCRun2DataFile.TopoCell.iphi |
◆ phi
ReadRPCRun2DataFile.TopoCell.phi |
◆ phicode
ReadRPCRun2DataFile.TopoCell.phicode |
◆ phimax
ReadRPCRun2DataFile.TopoCell.phimax |
◆ phimin
ReadRPCRun2DataFile.TopoCell.phimin |
The documentation for this class was generated from the following file: