示例#1
0
 def parent(self):
     """Accessor to the parent particle"""
     return apply_global_index(self.genPartIdxMotherG, self._events().GenPart)
示例#2
0
 def children(self):
     return apply_global_index(self.childrenIdxG, self._events().GenPart)
示例#3
0
 def distinctChildren(self):
     return apply_global_index(self.distinctChildrenIdxG, self._events().GenPart)
示例#4
0
文件: jetmet.py 项目: dntaylor/coffea
 def subjets(self):
     return apply_global_index(self.subJetIdxG, self._events().SubJet)
示例#5
0
 def distinctParent(self):
     return apply_global_index(self.distinctParentIdxG, self._events().GenPart)
示例#6
0
文件: jetmet.py 项目: dntaylor/coffea
 def matched_gen(self):
     return apply_global_index(self.genJetIdxG, self._events().GenJet)
示例#7
0
文件: jetmet.py 项目: dntaylor/coffea
 def matched_muons(self):
     return apply_global_index(self.muonIdxG, self._events().Muon)
示例#8
0
文件: jetmet.py 项目: dntaylor/coffea
 def matched_electrons(self):
     return apply_global_index(self.electronIdxG, self._events().Electron)
示例#9
0
 def matched_photon(self):
     return apply_global_index(self.photonIdxG, self._events().Photon)
示例#10
0
 def matched_jet(self):
     return apply_global_index(self.jetIdxG, self._events().Jet)