The Gaudi Framework  master (594c33fa)
GaudiMP.pTools.PackedCaloHypo Class Reference

Public Member Functions

def __init__ (self, o)
 
def __repr__ (self)
 

Public Attributes

 centX
 
 centY
 
 cerr
 
 cov
 
 firstCluster
 
 firstDigit
 
 firstHypo
 
 hypothesis
 
 key
 
 lastCluster
 
 lastDigit
 
 lastHypo
 
 lh
 
 pos
 
 z
 

Detailed Description

Definition at line 547 of file pTools.py.

Constructor & Destructor Documentation

◆ __init__()

def GaudiMP.pTools.PackedCaloHypo.__init__ (   self,
  o 
)

Definition at line 548 of file pTools.py.

548  def __init__(self, o):
549  cl = "LHCb::PackedCaloHypo"
550  assert o.__class__.__name__ == cl
551  self.centX = o.centX
552  self.centY = o.centY
553  self.cerr = (o.cerr00, o.cerr10, o.cerr11)
554  self.cov = (o.cov00, o.cov10, o.cov11, o.cov20, o.cov21, o.cov22)
555  self.firstCluster = o.firstCluster
556  self.firstDigit = o.firstDigit
557  self.firstHypo = o.firstHypo
558  self.hypothesis = o.hypothesis
559  self.key = o.key
560  self.lastCluster = o.lastCluster
561  self.lastDigit = o.lastDigit
562  self.lastHypo = o.lastHypo
563  self.lh = o.lh
564  self.pos = (o.posE, o.posX, o.posY)
565  self.z = o.z
566 

Member Function Documentation

◆ __repr__()

def GaudiMP.pTools.PackedCaloHypo.__repr__ (   self)

Definition at line 567 of file pTools.py.

567  def __repr__(self):
568  s = "PackedCaloHypo : \n"
569  s += "\tcentX : %s\n" % (str(self.centX))
570  s += "\tcentY : %s\n" % (str(self.centY))
571  s += "\tcerr : %s\n" % (str(self.cerr))
572  s += "\tcov : %s\n" % (str(self.cov))
573  s += "\tfirstCluster : %s\n" % (str(self.firstCluster))
574  s += "\tfirstDigit : %s\n" % (str(self.firstDigit))
575  s += "\tfirstHypo : %s\n" % (str(self.firstHypo))
576  s += "\thypothesis : %s\n" % (str(self.hypothesis))
577  s += "\tkey : %s\n" % (str(self.key))
578  s += "\tlastCluster : %s\n" % (str(self.lastCluster))
579  s += "\tlastDigit : %s\n" % (str(self.lastDigit))
580  s += "\tlastHypo : %s\n" % (str(self.lastHypo))
581  s += "\tlh : %s\n" % (str(self.lh))
582  s += "\tpos : %s\n" % (str(self.pos))
583  s += "\tz : %s\n" % (str(self.z))
584  s += "---------------------------------------\n"
585  return s
586 
587 
588 # =============================================================================
589 
590 

Member Data Documentation

◆ centX

GaudiMP.pTools.PackedCaloHypo.centX

Definition at line 551 of file pTools.py.

◆ centY

GaudiMP.pTools.PackedCaloHypo.centY

Definition at line 552 of file pTools.py.

◆ cerr

GaudiMP.pTools.PackedCaloHypo.cerr

Definition at line 553 of file pTools.py.

◆ cov

GaudiMP.pTools.PackedCaloHypo.cov

Definition at line 554 of file pTools.py.

◆ firstCluster

GaudiMP.pTools.PackedCaloHypo.firstCluster

Definition at line 555 of file pTools.py.

◆ firstDigit

GaudiMP.pTools.PackedCaloHypo.firstDigit

Definition at line 556 of file pTools.py.

◆ firstHypo

GaudiMP.pTools.PackedCaloHypo.firstHypo

Definition at line 557 of file pTools.py.

◆ hypothesis

GaudiMP.pTools.PackedCaloHypo.hypothesis

Definition at line 558 of file pTools.py.

◆ key

GaudiMP.pTools.PackedCaloHypo.key

Definition at line 559 of file pTools.py.

◆ lastCluster

GaudiMP.pTools.PackedCaloHypo.lastCluster

Definition at line 560 of file pTools.py.

◆ lastDigit

GaudiMP.pTools.PackedCaloHypo.lastDigit

Definition at line 561 of file pTools.py.

◆ lastHypo

GaudiMP.pTools.PackedCaloHypo.lastHypo

Definition at line 562 of file pTools.py.

◆ lh

GaudiMP.pTools.PackedCaloHypo.lh

Definition at line 563 of file pTools.py.

◆ pos

GaudiMP.pTools.PackedCaloHypo.pos

Definition at line 564 of file pTools.py.

◆ z

GaudiMP.pTools.PackedCaloHypo.z

Definition at line 565 of file pTools.py.


The documentation for this class was generated from the following file:
GaudiAlg.HistoUtils.__repr__
__repr__
Definition: HistoUtils.py:535