1 from __future__
import print_function
13 return math.sqrt(
deltaR2(*args) )
17 '''Computes delta phi, handling periodic limit conditions.''' 26 '''Univoque association of an element from matchCollection to an element of objects. 27 Reco and Gen objects get the "matched" attribute, true if they are part of a matched tuple. 28 By default, the matching is true only if delta R is smaller than 0.3. 34 if len(matchCollection)==0:
35 return dict(
zip(objects, [
None]*len(objects)) )
38 allPairs = sorted([(deltaR2 (object.eta(), object.phi(), match.eta(), match.phi()), (object, match))
for object
in objects
for match
in matchCollection
if list(
filter(object,match)) ])
43 for object
in objects:
44 object.matched =
False 45 for match
in matchCollection:
49 deltaR2Max = deltaRMax * deltaRMax
50 for dR2, (object, match)
in allPairs:
53 if dR2 < deltaR2Max
and object.matched ==
False and match.matched ==
False:
59 for object
in objects:
60 if object.matched ==
False:
70 '''Masks objects using a deltaR cut, another algorithm (same results).''' 73 deltaR2Min = deltaRMin*deltaRMin
74 cleanObjects = copy.copy( objects )
77 for idx, object
in enumerate(cleanObjects):
78 dR2 =
deltaR2( object.eta(), object.phi(),
79 mask.eta(), mask.phi() )
81 tooClose.append( idx )
97 '''Masks objects using a deltaR cut.''' 98 if len(objects)==0
or len(masks)==0:
100 deltaR2Min = deltaRMin*deltaRMin
103 for object
in objects:
106 dR2 =
deltaR2( object.eta(), object.phi(),
107 mask.eta(), mask.phi() )
111 cleanObjects.append( object )
113 dirtyObjects.append( object )
114 return cleanObjects, dirtyObjects
119 '''Return the best match to object in matchCollection, which is the closest object in delta R''' 120 deltaR2Min =
float(
'+inf')
122 for match
in matchCollection:
123 dR2 =
deltaR2( object.eta(), object.phi(),
124 match.eta(), match.phi() )
128 return bm, deltaR2Min
135 if len(matchCollection)==0:
136 return dict(
zip(objects, [
None]*len(objects)) )
137 for object
in objects:
138 bm, dr2 =
bestMatch( object, matchCollection )
147 '''Univoque association of an element from matchCollection to an element of objects. 148 Reco and Gen objects get the "matched" attribute, true if they are part of a matched tuple. 149 By default, the matching is true only if delta R is smaller than 0.3. 155 if len(matchCollection)==0:
156 return dict(
zip(objects, [
None]*len(objects)) )
158 allPairs = sorted([(deltaR2 (object.eta(), object.phi(), match.eta(), match.phi()), (object, match))
for object
in objects
for match
in matchCollection])
162 for object
in objects:
163 object.matched =
False 164 for match
in matchCollection:
165 match.matched =
False 167 deltaR2Max = deltaRMax * deltaRMax
168 for dR2, (object, match)
in allPairs:
171 if dR2 < deltaR2Max
and object.matched ==
False and match.matched ==
False:
172 object.matched =
True 174 pairs[object] = match
176 for object
in objects:
177 if object.matched ==
False:
186 if __name__ ==
'__main__':
190 fargs =
map( float, args )
def cleanObjectCollection2(objects, masks, deltaRMin)
def matchObjectCollection3
ALPAKA_FN_HOST_ACC ALPAKA_FN_INLINE constexpr float zip(ConstView const &tracks, int32_t i)
def cleanObjectCollection(objects, masks, deltaRMin)
def deltaR2(e1, p1, e2, p2)
def matchObjectCollection2(objects, matchCollection, deltaRMax=0.3)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
def matchObjectCollection(objects, matchCollection, deltaR2Max)
def bestMatch(object, matchCollection)