1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
#!/usr/bin/env python
"""Illustration of the use of selectors defined in Python that work on
pythonic user information associated with each particle. The
functionality is largely that of 05-user-info.py, just coded slightly
differently.
For this script to work, make sure that the installation location for
the fastjet python module (cf. fastjet-config --pythonpath) is
included in your PYTHONPATH environment variable.
"""
from __future__ import print_function
import fastjet as fj
#import gzip
def main():
# get the banner out of the way early on
fj.ClusterSequence.print_banner()
print()
# set up our jet definition and a jet selector
jet_def = fj.JetDefinition(fj.antikt_algorithm, 0.4)
selector = fj.SelectorPtMin(15.0) & fj.SelectorAbsRapMax(4.5)
print("jet definition is:",jet_def)
print("jet selector is:", selector,"\n")
filename = '../data/Pythia-dijet-ptmin100-lhc-pileup-1ev.dat'
f = open(filename,'r')
#filename = '/Users/gsalam/work/fastjet/data/Pythia-PtMin50-LHC-10kev.dat.gz'
#f = gzip.GzipFile(filename,'rb')
# get the event
iev = 0
while True:
event = read_event(f)
iev += 1
if (len(event) == 0): break
# cluster it
jets = selector(jet_def(event))
# Create a FastJet selector based on a Python function (which
# takes a PseudoJet and returns True if the PseudoJet passes the
# selection condition). The resulting selector can be used in the
# same way as any normal FastJet selector.
#
# See print_jets below for other examples of python-defined
# Selectors (built either from a class or from a function)
sel_pileup = fj.SelectorPython(is_pileup)
n_pileup_particles = sel_pileup.count(event)
# print some info
print("Event {0} has {1} particles (of which {2} from pileup)".format(
iev, len(event), n_pileup_particles))
print_jets(jets)
#----------------------------------------------------------------------
# return true when the particle is associated to a pileup vertex
# This function can be used to create a FastJet Selector using
# my_selector = fj.SelectorPython(is_pileup)
def is_pileup(particle):
"Function for use with fj.SelectorPython"
return (particle.python_info().subevent_index > 0)
#----------------------------------------------------------------------
# class which, when called, returns true for particles with the required PID
# This class can be used to create a FastJet Selector using
# my_selector = fj.SelectorPython(HasPID(22))
class HasPID(object):
"""Helps select particles with a specific PID"""
def __init__(self, _pdg_id):
self.pdg_id=_pdg_id
def __str__(self):
return "PDGID="+str(self.pdg_id)
def __call__(self, particle):
return (particle.python_info().pdg_id == self.pdg_id)
#----------------------------------------------------------------------
def print_jets(jets):
sel_photons = fj.SelectorPython(HasPID(22))
sel_pileup = fj.SelectorPython(is_pileup)
# with classes, description uses the class __str__ fmethod
print("Note: photon selection: "+str(sel_photons))
print("Note: pileup selection: "+str(sel_pileup)) # gives nasty output (keep?)
print("{0:>5s} {1:>10s} {2:>10s} {3:>10s} {4:>12s} {5:>12s} {6:>12s} {7:>12s}".format(
"jet #", "pt", "rap", "phi", "primary pt", "N particles",
"N photons", "N prim.phot"))
for ijet in range(len(jets)):
jet = jets[ijet]
# figure out how many particles and how many photons the jet contains
# and how much pt comes from the primary vertex
constituents = jet.constituents()
n_photons = sel_photons.count(constituents)
# invert the pileup selector to find the primary pileup
primary_pt = (~sel_pileup).scalar_pt_sum(constituents)
# and get the number of primary photons by combining two selectors
n_primary_photons = ((~sel_pileup)*sel_photons).count(constituents)
print("{0:5d} {1:10.3f} {2:10.4f} {3:10.4f} {4:10.3f} {5:12d} {6:12d} {7:12d}".format(
ijet, jet.pt(), jet.rap(), jet.phi(), primary_pt, len(constituents),
n_photons, n_primary_photons))
#----------------------------------------------------------------------
# user-defined info associated to each PseudoJet in the event
#
# This is the same as the one which was introduced in 05-user-info.py
class ParticleInfo(object):
"""illustrative class for use in assigning pythonic user information
to a PseudoJet.
"""
def __init__(self, subevent_index, particle_index, pdg_id=0):
self.subevent_index = subevent_index
self.particle_index = particle_index
self.pdg_id = pdg_id
def set_pdg_id(self, pdg_id):
self.pdg_id = pdg_id
def __str__(self):
return "subevent_index={0}, particle_index={1}, pdg_id={2}".format(
self.subevent_index, self.particle_index, self.pdg_id)
#----------------------------------------------------------------------
event_index = 0
def read_event(file_or_filename):
"""
Routine that can take either an existing opened file object, or a
filename (which it will open itself) and then reads an event from that
file. An event is deemed to end when the file comes to an end or when
the reader encounters the string "#END".
The event is converted to a python list of PseudoJets
"""
# open the file if necessary
if (isinstance(file_or_filename,str)) : f = open(file_or_filename, 'r')
else : f = file_or_filename
# create an empty list
event = []
particle_index = 0
subevent_index = -1
while True:
line = f.readline()
# exit if the file has come to an end
if (not line): break
# or if we reach the string "#END"
if (len(line) >=4 and line[0:4] == '#END'): break
# #SUBSTART means that we start a new subevent
if (len(line)>=9 and line[0:9] == '#SUBSTART'):
subevent_index += 1
continue
# ignore comment lines or empty lines
elif (line[0] == '#' or len(line) <= 1): continue
# assume we have a good line and split it into px, py, pz, E
p = line.split()
# create the PseudoJet
pj = fj.PseudoJet(float(p[0]),float(p[1]),float(p[2]),float(p[3]))
# then create its user info
info = ParticleInfo(subevent_index, particle_index)
# optionally with a pdg_id (if it was in the file)
if (len(p) > 4): info.set_pdg_id(int(p[4]))
# finally assign the user info and append the particle the event
pj.set_python_info(info)
event.append(pj);
# don't forget to increment it
particle_index += 1
global event_index
event_index += 1
return event
if __name__ == '__main__':
main()
|