CMS 3D CMS Logo

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

Public Member Functions

def __init__ (self, tree, index)
 
def nTracks (self)
 
def tracks (self)
 
- Public Member Functions inherited from ntupleDataFormat._Object
def __getattr__ (self, attr)
 
def __init__ (self, tree, index, prefix)
 
def index (self)
 
def isValid (self)
 

Detailed Description

Class presenting a primary vertex.

Definition at line 1097 of file ntupleDataFormat.py.

Constructor & Destructor Documentation

def ntupleDataFormat.Vertex.__init__ (   self,
  tree,
  index 
)
Constructor.

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

Definition at line 1099 of file ntupleDataFormat.py.

1099  def __init__(self, tree, index):
1100  """Constructor.
1101 
1102  Arguments:
1103  tree -- TTree object
1104  index -- Index of the vertex
1105  """
1106  super(Vertex, self).__init__(tree, index, "vtx")
1107 
def __init__(self, tree, index)

Member Function Documentation

def ntupleDataFormat.Vertex.nTracks (   self)
Returns the number of tracks used in the vertex fit.

Definition at line 1108 of file ntupleDataFormat.py.

References ntupleDataFormat._Object._checkIsValid(), SeedingNode< DATA >._index, Vispa.Share.FindAlgorithm.FindAlgorithm._index, RPCMuonExtraStruct._index, ntupleDataFormat._Object._index, python.cmstools.EventTree._index, python.cmstools.EventBranch._index, html.HtmlReport._index, and findQualityFiles.size.

1108  def nTracks(self):
1109  """Returns the number of tracks used in the vertex fit."""
1110  self._checkIsValid()
1111  return self._tree.vtx_trkIdx[self._index].size()
1112 
size
Write out results.
def ntupleDataFormat.Vertex.tracks (   self)
Returns a generator for the tracks used in the vertex fit.

The generator returns Track object.

Definition at line 1113 of file ntupleDataFormat.py.

References ntupleDataFormat._Object._checkIsValid(), SeedingNode< DATA >._index, Vispa.Share.FindAlgorithm.FindAlgorithm._index, RPCMuonExtraStruct._index, ntupleDataFormat._Object._index, python.cmstools.EventTree._index, python.cmstools.EventBranch._index, html.HtmlReport._index, ntupleDataFormat._Collection._tree, ntupleDataFormat._Object._tree, and python.cmstools.EventTree._tree.

1113  def tracks(self):
1114  """Returns a generator for the tracks used in the vertex fit.
1115 
1116  The generator returns Track object.
1117  """
1118  self._checkIsValid()
1119  for itrk in self._tree.vtx_trkIdx[self._index]:
1120  yield Track(self._tree, itrk)
1121