CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes
IsoTrack.IsoTrack Class Reference
Inheritance diagram for IsoTrack.IsoTrack:

Public Member Functions

def __init__
 
def __str__
 
def absIso
 
def relIso
 

Public Attributes

 isoTrack
 

Detailed Description

Definition at line 5 of file IsoTrack.py.

Constructor & Destructor Documentation

def IsoTrack.IsoTrack.__init__ (   self,
  isoTrack 
)

Definition at line 7 of file IsoTrack.py.

7 
8  def __init__(self, isoTrack):
9  self.isoTrack = isoTrack
10  super(IsoTrack, self).__init__(isoTrack)

Member Function Documentation

def IsoTrack.IsoTrack.__str__ (   self)

Definition at line 19 of file IsoTrack.py.

19 
20  def __str__(self):
21  lep = super(IsoTrack, self).__str__()
22  return lep
23  #spec = '\t\tTau: decay = {decMode:<15}, eOverP = {eOverP:4.2f}, isoMVALoose = {isoMVALoose}'.format(
24  # decMode = tauDecayModes.intToName( self.decayMode() ),
25  # eOverP = self.calcEOverP(),
26  # isoMVALoose = self.tauID('byLooseIsoMVA')
27  # )
28  #return '\n'.join([lep, spec])
29 
30 
def IsoTrack.IsoTrack.absIso (   self,
  dummy1,
  dummy2 
)
Just making the tau behave as a lepton.

Definition at line 11 of file IsoTrack.py.

Referenced by Lepton.Lepton.relIso().

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

Definition at line 15 of file IsoTrack.py.

15 
16  def relIso(self, dummy1, dummy2):
17  '''Just making the tau behave as a lepton.'''
18  return -1

Member Data Documentation

IsoTrack.IsoTrack.isoTrack

Definition at line 8 of file IsoTrack.py.