def test_multi_object_monads(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)

    mc_part = df.TruthParticles('TruthParticles')
    eles = df.Electrons('Electrons')

    from dataframe_expressions import user_func
    @user_func
    def DeltaR(p1_eta: float) -> float:
        assert False

    def near(mcs, e):
        'Return all particles in mcs that are DR less than 0.5'
        return mcs[lambda m: DeltaR(e.eta()) < 0.5]

    # This gives us a list of events, and in each event, good electrons,
    # and then for each good electron, all good MC electrons that are near by
    eles['near_mcs'] = lambda reco_e: near(mc_part, reco_e)
    eles['hasMC'] = lambda e: e.near_mcs.Count() > 0

    make_local(eles[eles.hasMC].pt)

    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: (e1.Electrons('Electrons'), e1)")
        .Select("lambda e2: e2[0].Where(lambda e3: "
                "e2[1]"
                ".TruthParticles('TruthParticles')"
                ".Where(lambda e6: DeltaR(e3.eta()) < 0.5).Count() > 0)")
        .Select("lambda e4: e4.Select(lambda e5: e5.pt())")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
def test_multi_object_call_with_same_thing_twice(servicex_ds):
    # df.Electrons appears inside a call that has unwrapped the sequence.
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)

    mc_part = df.TruthParticles('TruthParticles')
    eles = df.Electrons('Electrons')

    # This gives us a list of events, and in each event, good electrons, and then for each
    # good electron, all good MC electrons that are near by
    eles['near_mcs'] = lambda reco_e: mc_part
    eles['hasMC'] = lambda e: e.near_mcs.Count() > 0

    make_local(eles[~eles.hasMC].pt)

    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: (e1.Electrons('Electrons'), e1)")
        .Select("lambda e2: e2[0].Where(lambda e3: "
                "not e2[1]"
                ".TruthParticles('TruthParticles')"
                ".Count() > 0)")
        .Select("lambda e4: e4.Select(lambda e5: e5.pt())")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#3
0
def test_count_of_events(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.Count()
    with pytest.raises(Exception) as e:
        make_local(seq)

    assert 'Count' in str(e.value)
示例#4
0
def test_make_local_twice_filter(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets[df.jets.pt > 30].pt
    make_local(seq)
    json_1 = clean_linq(extract_selection(servicex_ds))

    make_local(seq)
    json_2 = clean_linq(extract_selection(servicex_ds))

    assert json_1 == json_2
示例#5
0
def test_first_at_object_level(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.First().pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e5: e5.jets()").Select(
            "lambda e7: e7.First()").Select("lambda e8: e8.pt()").AsROOTTTree(
                "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#6
0
def test_user_function_with_implied(servicex_ds):

    @user_func
    def tns(e1: float) -> float:
        assert False, 'this is a fake function and should never be called'

    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    with pytest.raises(Exception):
        seq = tns(df.jets.pt)
        make_local(seq)
示例#7
0
def test_count_of_objects(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.Count()
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e2: e2.Count()").AsROOTTTree("file.root", "treeme",
                                                 ['col1']))
    assert clean_linq(selection) == txt
示例#8
0
def test_numpy_abs(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    import numpy as np
    seq = np.abs(df.met)
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.met()").Select(
            "lambda e2: abs(e2)").AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#9
0
def test_jet_pt_filter_pts_gt(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.pt[df.jets.pt > 30.0]
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e5: e5.Select(lambda e2: e2.pt())").Select(
                "lambda e6: e6.Where(lambda e3: e3 > 30.0)").AsROOTTTree(
                    "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#10
0
def test_pt_sub(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.pt - 1000.0
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e4: e4.Select(lambda e2: e2.pt())").Select(
                "lambda e5: e5.Select(lambda e3: e3 - 1000.0)").AsROOTTTree(
                    "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#11
0
def test_collect_xaod_call_with_number(servicex_ds):
    'Do this with the actual call we need in ATLAS'
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.Jets(22.0).pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.Jets(22.0)").Select(
            "lambda e3: e3.Select(lambda e2: e2.pt())").AsROOTTTree(
                "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#12
0
def test_binop_in_filter(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets[(df.jets.pt / 1000.0) > 30].pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e7: e7.Where(lambda e5: e5.pt()/1000.0 > 30)").Select(
                "lambda e8: e8.Select(lambda e6: e6.pt())").AsROOTTTree(
                    "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#13
0
def test_combine_leaf_lambda(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.map(lambda j: j.pt)
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: e1.jets()")
        .Select("lambda e3: e3.Select(lambda e2: e2.pt())")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#14
0
def test_user_function_with_map_lambda_no_type(servicex_ds):
    @user_func
    def tns(e1):
        assert False, 'this is a fake function and should never be called'

    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.pt.map(lambda j: tns(j))
    with pytest.raises(Exception) as e:
        make_local(seq)

    assert 'hint' in str(e.value)
示例#15
0
def test_filter_and_abs(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets[(df.jets.pt > 30.0) & (abs(df.jets.eta) < 2.5)].pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e10: e10.Where(lambda e8: (e8.pt() > 30.0) and (abs(e8.eta()) < 2.5))"
        ).Select("lambda e11: e11.Select(lambda e9: e9.pt())").AsROOTTTree(
            "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#16
0
def test_count_at_eventLevel(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df[df.jets.Count() == 2].jets.pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Where("lambda e4: e4.jets().Count() == 2").Select(
            "lambda e5: e5.jets()").Select(
                "lambda e7: e7.Select(lambda e6: e6.pt())").AsROOTTTree(
                    "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#17
0
def test_filter_not(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets[~(df.jets.pt > 30.0)].pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e9: e9.Where(lambda e7: not (e7.pt() > 30.0))").Select(
                "lambda e10: e10.Select(lambda e8: e8.pt())").AsROOTTTree(
                    "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#18
0
def test_filter_jet_by_attributes(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets[df.jets.hasProdVtx & df.jets.hasDecayVtx].pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e7: e7.Where(lambda e2: e2.hasProdVtx() and e2.hasDecayVtx())"
        ).Select("lambda e8: e8.Select(lambda e6: e6.pt())").AsROOTTTree(
            "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#19
0
def test_jet_pt_filter_pts_ne(servicex_ds):
    'Do this with the actual call we need in ATLAS'
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.pt[df.jets.pt != 30.0]
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e5: e5.Select(lambda e2: e2.pt())").Select(
                "lambda e6: e6.Where(lambda e4: e4 != 30.0)").AsROOTTTree(
                    "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#20
0
def test_simple_capture_and_replace(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.map(lambda j: df).met
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: (e1.jets(), e1)")
        .Select("lambda e5: e5[0].Select(lambda e3: e5[1])")
        .Select("lambda e6: e6.Select(lambda e4: e4.met())")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#21
0
def test_filter_and_divide_with_call(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets().pt[df.jets().pt > 30.0] / 1000.0
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").
        Select("lambda e6: e6.Select(lambda e2: e2.pt())").Select(
            "lambda e7: e7.Where(lambda e3: e3 > 30.0)").Select(
                "lambda e8: e8.Select(lambda e5: e5 / 1000.0)").AsROOTTTree(
                    "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#22
0
def test_make_local_twice_check_test(servicex_ds):
    # Make sure this method of testing continues to work
    # references and dicts in python are funny!
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.pt
    make_local(seq)
    json_1 = clean_linq(extract_selection(servicex_ds))

    make_local(seq / 1000.0)
    json_2 = clean_linq(extract_selection(servicex_ds))

    assert json_1 != json_2
示例#23
0
def test_filter_chain(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq1 = df.jets[df.jets.pt > 30.0]
    seq = seq1[seq1.eta < 2.4].pt
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f.Select("lambda e1: e1.jets()").Select(
            "lambda e6: e6.Where(lambda e3: e3.pt() > 30.0)").Select(
                "lambda e7: e7.Where(lambda e4: e4.eta() < 2.4)").Select(
                    "lambda e5: e5.Select(lambda e2: e2.pt())").AsROOTTTree(
                        "file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#24
0
def test_user_function_with_map_2fcall(servicex_ds):
    @user_func
    def tns(e1: float, e2: float) -> float:
        assert False, 'this is a fake function and should never be called'

    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.map(lambda j: tns(j.pt, j.eta))
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(f
                         .Select("lambda e1: e1.jets()")
                         .Select("lambda e7: e7.Select(lambda e2: tns(e2.pt(), e2.eta()))")
                         .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#25
0
def test_two_maps(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.map(lambda j: df.Electrons.map(lambda e: e.eta + j.eta))
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: (e1.jets(), e1)")
        .Select("lambda e14: e14[0].Select(lambda e3: "
                "e14[1]"
                ".Electrons()"
                ".Select(lambda e13: e13.eta() + e3.eta()))")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#26
0
def test_map_with_const(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    mcs = df.mcs

    pt_total = mcs.map(lambda mc: 1.0)
    make_local(pt_total)

    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: e1.mcs()")
        .Select("lambda e2: e2.Select(lambda e3: 1.0)")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#27
0
def test_capture_inside_with_call(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.map(lambda j: df.Electrons().Count())
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: (e1.jets(), e1)")
        .Select("lambda e14: e14[0].Select(lambda e3: "
                "e14[1]"
                ".Electrons()"
                ".Count())")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#28
0
def test_object_compare(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.map(lambda j: df.Electrons.DeltaR(j))
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: (e1.jets(), e1)")
        .Select('lambda e8: e8[0].Select(lambda e3: '
                'e8[1]'
                '.Electrons()'
                '.Select(lambda e7: e7.DeltaR(e3)))')
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#29
0
def test_object_compare_pass_eta(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    seq = df.jets.map(lambda j: df.Electrons.DeltaR(j.eta))
    make_local(seq)
    selection = extract_selection(servicex_ds)
    txt = translate_linq(
        f
        .Select("lambda e1: (e1.jets(), e1)")
        .Select("lambda e10: e10[0].Select(lambda e3: "
                "e10[1]"
                ".Electrons()"
                ".Select(lambda e9: e9.DeltaR(e3.eta())))")
        .AsROOTTTree("file.root", "treeme", ['col1']))
    assert clean_linq(selection) == txt
示例#30
0
def test_map_in_repeat_root_filter(servicex_ds):
    f = ServiceXDatasetSource(servicex_ds)
    df = xaod_table(f)
    # MC particles's pt when they are close to a jet.
    mcs = df.mcs
    # This is so ugly: we are doing the mcs.map because we are doing array programming,
    # but that is so far from per-event, which is basically what we want here. This shows
    # up clearly inside the code, unfortunately - as we have to have special workarounds
    # to deal with this.
    # This this below should fail - because the "mc" is a single particle - so you can't
    # do a count on it!
    seq = mcs[mcs.map(lambda mc: mcs.Count() == 2)].pt
    with pytest.raises(RenderException) as e:
        make_local(seq)

    assert str(e.value).find('requires as input') != -1