CMS 3D CMS Logo

List of all members | Public Member Functions
ntuple.StripHit Class Reference
Inheritance diagram for ntuple.StripHit:
ntuple._HitObject ntuple._LayerStrAdaptor ntuple._SimHitAdaptor ntuple._Object

Public Member Functions

def __init__ (self, tree, index)
 
def isValidHit (self)
 
- Public Member Functions inherited from ntuple._HitObject
def __init__ (self, tree, index, prefix)
 
def nseeds (self)
 
def ntracks (self)
 
def seeds (self)
 
def tracks (self)
 
- Public Member Functions inherited from ntuple._Object
def __getattr__ (self, attr)
 
def __init__ (self, tree, index, prefix)
 
def index (self)
 
def isValid (self)
 
- Public Member Functions inherited from ntuple._LayerStrAdaptor
def __init__ (self)
 
def layerStr (self)
 
- Public Member Functions inherited from ntuple._SimHitAdaptor
def __init__ (self)
 
def nSimHits (self)
 
def simHits (self)
 

Detailed Description

Class representing a strip hit.

Definition at line 526 of file ntuple.py.

Constructor & Destructor Documentation

def ntuple.StripHit.__init__ (   self,
  tree,
  index 
)
Constructor.

Arguments:
tree  -- TTree object
index -- Index of the hit

Definition at line 528 of file ntuple.py.

528  def __init__(self, tree, index):
529  """Constructor.
530 
531  Arguments:
532  tree -- TTree object
533  index -- Index of the hit
534  """
535  super(StripHit, self).__init__(tree, index, "str")
536 
def __init__(self, tree, index)
Definition: ntuple.py:528

Member Function Documentation

def ntuple.StripHit.isValidHit (   self)

Definition at line 537 of file ntuple.py.

537  def isValidHit(self):
538  return True
539 
def isValidHit(self)
Definition: ntuple.py:537