CMS 3D CMS Logo

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

Public Member Functions

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

Private Attributes

 _seedindex
 

Detailed Description

Class representing a match to a Seed.

The point of this class is to provide an interface compatible with
all other "MatchInfo" classes

Definition at line 643 of file ntupleDataFormat.py.

Constructor & Destructor Documentation

◆ __init__()

def ntupleDataFormat.SeedMatchInfo.__init__ (   self,
  tree,
  index,
  seedindex,
  prefix 
)
Constructor.

Arguments:
tree     -- TTree object
index    -- Index of the object (TrackingParticle) matched to seed
seedindex -- Index of the seed match (second index in _trkIdx branch)
prefix   -- String for prefix of the object (TrackingParticle) matched to seed

Definition at line 650 of file ntupleDataFormat.py.

650  def __init__(self, tree, index, seedindex, prefix):
651  """Constructor.
652 
653  Arguments:
654  tree -- TTree object
655  index -- Index of the object (TrackingParticle) matched to seed
656  seedindex -- Index of the seed match (second index in _trkIdx branch)
657  prefix -- String for prefix of the object (TrackingParticle) matched to seed
658  """
659  super(SeedMatchInfo, self).__init__(tree, index, prefix)
660  self._seedindex = seedindex
661 
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)

Member Function Documentation

◆ seed()

def ntupleDataFormat.SeedMatchInfo.seed (   self)

Member Data Documentation

◆ _seedindex

ntupleDataFormat.SeedMatchInfo._seedindex
private

Definition at line 660 of file ntupleDataFormat.py.

Referenced by ntupleDataFormat.SeedMatchInfo.seed().