CMS 3D CMS Logo

List of all members | Public Member Functions
ntupleDataFormat.PixelHits Class Reference
Inheritance diagram for ntupleDataFormat.PixelHits:
ntupleDataFormat._Collection

Public Member Functions

def __init__ (self, tree)
 
- Public Member Functions inherited from ntupleDataFormat._Collection
def __getitem__ (self, index)
 
def __init__ (self, tree, sizeBranch, objclass)
 
def __iter__ (self)
 
def __len__ (self)
 
def size (self)
 

Detailed Description

Class presenting a collection of pixel hits.

Definition at line 744 of file ntupleDataFormat.py.

Constructor & Destructor Documentation

def ntupleDataFormat.PixelHits.__init__ (   self,
  tree 
)
Constructor.

Arguments:
tree -- TTree object

Definition at line 746 of file ntupleDataFormat.py.

746  def __init__(self, tree):
747  """Constructor.
748 
749  Arguments:
750  tree -- TTree object
751  """
752  super(PixelHits, self).__init__(tree, "pix_isBarrel", PixelHit)
753