CMS 3D CMS Logo

List of all members | Public Member Functions
ntupleDataFormat.Phase2OTHit Class Reference
Inheritance diagram for ntupleDataFormat.Phase2OTHit:
ntupleDataFormat._HitObject ntupleDataFormat._SimHitMatchAdaptor ntupleDataFormat._Object ntupleDataFormat._DetIdStrAdaptor

Public Member Functions

def __init__ (self, tree, index)
 
def isValidHit (self)
 
- Public Member Functions inherited from ntupleDataFormat._HitObject
def __init__ (self, tree, index, prefix)
 
def nseeds (self)
 
def ntracks (self)
 
def r (self)
 
def r3D (self)
 
def seeds (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)
 
- Public Member Functions inherited from ntupleDataFormat._DetIdStrAdaptor
def __init__ (self)
 
def detIdStr (self)
 
def layerStr (self)
 
- Public Member Functions inherited from ntupleDataFormat._SimHitMatchAdaptor
def __init__ (self)
 
def matchedSimHitInfos (self)
 
def nMatchedSimHits (self)
 

Detailed Description

Class representing a phase2 OT hit.

Definition at line 858 of file ntupleDataFormat.py.

Constructor & Destructor Documentation

◆ __init__()

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

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

Definition at line 860 of file ntupleDataFormat.py.

860  def __init__(self, tree, index):
861  """Constructor.
862 
863  Arguments:
864  tree -- TTree object
865  index -- Index of the hit
866  """
867  super(Phase2OTHit, self).__init__(tree, index, "ph2")
868 
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

◆ isValidHit()

def ntupleDataFormat.Phase2OTHit.isValidHit (   self)

Definition at line 869 of file ntupleDataFormat.py.

869  def isValidHit(self):
870  return True
871