CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
IsoTrack.IsoTrack Class Reference
Inheritance diagram for IsoTrack.IsoTrack:

Public Member Functions

def __init__ (self, isoTrack)
 
def __str__ (self)
 
def relIso (self, dummy1, dummy2)
 

Public Attributes

 isoTrack
 

Detailed Description

Definition at line 5 of file IsoTrack.py.

Constructor & Destructor Documentation

◆ __init__()

def IsoTrack.IsoTrack.__init__ (   self,
  isoTrack 
)

Definition at line 7 of file IsoTrack.py.

7  def __init__(self, isoTrack):
8  self.isoTrack = isoTrack
9  super(IsoTrack, self).__init__(isoTrack)
10 
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

◆ __str__()

def IsoTrack.IsoTrack.__str__ (   self)

Definition at line 15 of file IsoTrack.py.

15  def __str__(self):
16  lep = super(IsoTrack, self).__str__()
17  return lep
18  #spec = '\t\tTau: decay = {decMode:<15}, eOverP = {eOverP:4.2f}, isoMVALoose = {isoMVALoose}'.format(
19  # decMode = tauDecayModes.intToName( self.decayMode() ),
20  # eOverP = self.calcEOverP(),
21  # isoMVALoose = self.tauID('byLooseIsoMVA')
22  # )
23  #return '\n'.join([lep, spec])
24 
25 
26 

◆ relIso()

def IsoTrack.IsoTrack.relIso (   self,
  dummy1,
  dummy2 
)
Just making the tau behave as a lepton.

Definition at line 11 of file IsoTrack.py.

Referenced by Lepton.Lepton.__str__().

11  def relIso(self, dummy1, dummy2):
12  '''Just making the tau behave as a lepton.'''
13  return -1
14 

Member Data Documentation

◆ isoTrack

IsoTrack.IsoTrack.isoTrack

Definition at line 8 of file IsoTrack.py.