3 from PhysicsTools.Heppy.physicsobjects.PhysicsObjects
import Muon, Tau, Electron
5 from PhysicsTools.Heppy.physicsobjects.HTauTauElectron
import HTauTauElectron
6 from CMGTools.RootTools.utils.DeltaR
import deltaR2
9 '''Generic di-object class, to handle di-objects from the EDM file
13 '''diobject is the di-object read from the edm file'''
19 super(DiObject, self).
__init__(diobject)
22 '''pt_leg1 + pt_leg2, e.g. used for finding the best DiTau.'''
23 return self.leg1().
pt() + self.leg2().
pt()
26 header =
'{cls}: mvis={mvis}, mT={mt}, sumpT={sumpt}'.
format(
27 cls = self.__class__.__name__,
30 sumpt = self.
sumPt() )
31 return '\n'.
join( [header,
32 '\t'+
str(self.leg1()),
33 '\t'+
str(self.leg2())] )
40 super(DiMuon, self).
__init__(diobject)
51 return 'DiMuon: mass={mass:5.2f}, sumpt={sumpt:5.2f}, pt={pt:5.2f}'.
format(
61 super(DiElectron, self).
__init__(diobject)
72 header =
'DiElectron: mvis=%3.2f, sumpT=%3.2f' \
75 return '\n'.
join( [header] )
80 super(DiTau, self).
__init__(diobject)
87 ZorPhotonorHiggs = [22, 23, 25, 35, 36, 37]
88 for gen
in genParticles:
90 if abs(gen.pdgId())==15
and gen.mother().
pdgId()
in ZorPhotonorHiggs:
100 for genTau
in genTaus:
101 dR2leg1 =
deltaR2(self.leg1().
eta(), self.leg1().phi(),
102 genTau.eta(), genTau.phi() )
103 dR2leg2 =
deltaR2(self.leg2().
eta(), self.leg2().phi(),
104 genTau.eta(), genTau.phi() )
105 if dR2leg1 < dR2leg1Min:
106 dR2leg1Min, self.
leg1Gen = (dR2leg1, genTau)
107 if dR2leg2 < dR2leg2Min:
108 dR2leg2Min, self.
leg2Gen = (dR2leg2, genTau)
118 '''Holds a CMG TauMuon, and the 2 legs as a python Tau and Muon'''
120 super(TauMuon, self).
__init__(diobject)
134 super(TauElectron, self).
__init__(diobject)
136 self.
ele = HTauTauElectron( diobject.leg2() )
147 super(MuonElectron, self).
__init__(diobject)
149 self.
ele = HTauTauElectron( diobject.leg2() )
160 super(TauTau, self).
__init__(diobject)