File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ The following lines will return a `pandas.DataFrame` containing all the jet pT's
59
59
from servicex import ServiceX
60
60
query = "(call ResultTTree (call Select (call SelectMany (call EventDataset (list 'localds:bogus')) (lambda (list e) (call (attr e 'Jets') 'AntiKt4EMTopoJets'))) (lambda (list j) (/ (call (attr j 'pt')) 1000.0))) (list 'JetPt') 'analysis' 'junk.root')"
61
61
dataset = "mc15_13TeV:mc15_13TeV.361106.PowhegPythia8EvtGen_AZNLOCTEQ6L1_Zee.merge.DAOD_STDM3.e3601_s2576_s2132_r6630_r6264_p2363_tid05630052_00"
62
- ds = ServiceXDataset(dataset, 'xaod' )
62
+ ds = ServiceXDataset(dataset)
63
63
r = ds.get_data_pandas_df(query)
64
64
print(r)
65
65
` ` `
@@ -162,8 +162,9 @@ Everything is based around the `ServiceXDataset` object. Below is the documentat
162
162
dataset Name of a dataset from which queries will be selected.
163
163
backend_type The type of backend. Used only if we need to find an
164
164
end-point. If we do not have a ` servicex_adaptor` then this
165
- cannot be null. Possible types are `uproot`, `xaod`,
166
- and anything that finds a match in the `.servicex` file.
165
+ will default to xaod, unless you have any endpoint listed
166
+ in your servicex file. It will default to best match there,
167
+ in that case.
167
168
image Name of transformer image to use to transform the data
168
169
max_workers Maximum number of transformers to run simultaneously on
169
170
ServiceX.
Original file line number Diff line number Diff line change @@ -56,8 +56,9 @@ def __init__(self,
56
56
dataset Name of a dataset from which queries will be selected.
57
57
backend_type The type of backend. Used only if we need to find an
58
58
end-point. If we do not have a `servicex_adaptor` then this
59
- cannot be null. Possible types are `uproot`, `xaod`,
60
- and anything that finds a match in the `.servicex` file.
59
+ will default to xaod, unless you have any endpoint listed
60
+ in your servicex file. It will default to best match there,
61
+ in that case.
61
62
image Name of transformer image to use to transform the data
62
63
max_workers Maximum number of transformers to run simultaneously on
63
64
ServiceX.
You can’t perform that action at this time.
0 commit comments